/* ==================== VARIÁVEIS CSS ==================== */
:root {
    --primary-color: #0e167a;
    --secondary-color: #ffc107;
    --primary-dark: #0a1059;
    --primary-light: #1a2590;
    --secondary-dark: #e6ac00;
    --secondary-light: #ffd54f;
    
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-gray: #6c757d;
    --text-muted: #95a5a6;
    
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #e74c3c;
    --success-color: #27ae60;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET E BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #D4EDFC 0%, #5FBDF8 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ==================== CONTAINER PRINCIPAL ==================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
}

/* ==================== WRAPPER DO FORMULÁRIO ==================== */
.form-wrapper {
    background: transparent;
    border-radius: var(--border-radius);
    box-shadow: none;
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== HEADER ==================== */
.header {
    background: transparent;
    color: var(--text-dark);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 12px;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.logo-image {
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ==================== FORMULÁRIO ==================== */
.raffle-form {
    padding: 2rem 0;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: var(--error-color);
    font-weight: 600;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.input-wrapper input {
    width: 100%;
    padding: 0.95rem 1rem 0.95rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white) !important;
    color: var(--text-dark);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 22, 122, 0.1);
    background: var(--bg-white) !important;
}

.input-wrapper input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
    color: var(--primary-color);
}

.input-wrapper input.error {
    border-color: var(--error-color);
    background: var(--bg-white) !important;
}

.input-wrapper input.error:focus {
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
    background: var(--bg-white) !important;
}

.input-wrapper input.success {
    border-color: var(--success-color);
    background: var(--bg-white) !important;
}

/* Garantir que os inputs permaneçam brancos em todos os estados */
.input-wrapper input:hover,
.input-wrapper input:active,
.input-wrapper input:visited,
.input-wrapper input:focus-visible {
    background: var(--bg-white) !important;
}

.error-message {
    display: block;
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    min-height: 1.2rem;
    font-weight: 400;
}

/* ==================== BOTÃO DE SUBMIT ==================== */
.form-actions {
    margin-top: 2rem;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--primary-dark);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 40%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 100%;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ==================== BARRA DO USUÁRIO LOGADO (FORMULÁRIO) ==================== */
.header-user-bar {
    display: none; /* exibido via JS */
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.header-user-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: #fff;
    background: #0e167a;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    border: 1px solid #0e167a;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    background: rgba(231, 76, 60, 0.8);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-logout:hover {
    background: rgba(231, 76, 60, 1);
    transform: translateY(-1px);
}

.btn-logout svg {
    width: 15px;
    height: 15px;
}

/* ==================== CAMPO TRAVADO (SOMENTE-LEITURA) ==================== */
.input-wrapper input.input-locked {
    background: var(--bg-light) !important;
    color: var(--text-gray) !important;
    cursor: not-allowed;
    border-color: var(--border-color) !important;
    box-shadow: none !important;
}

.input-wrapper input.input-locked:focus {
    outline: none;
    border-color: var(--border-color) !important;
    box-shadow: none !important;
}

/* ==================== DROPDOWN DE INSTITUIÇÃO ==================== */
.institution-dropdown {
    position: relative;
    cursor: not-allowed;
}

.institution-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.95rem 1rem 0.95rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    position: relative;
}

.institution-trigger:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 22, 122, 0.1);
}

.institution-trigger.open {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 22, 122, 0.1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.institution-trigger.error {
    border-color: var(--error-color);
}

.institution-trigger.error:focus {
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.institution-trigger.success {
    border-color: var(--success-color);
}

.institution-trigger.institution-trigger--locked {
    background: var(--bg-light) !important;
    color: var(--text-gray) !important;
    cursor: not-allowed !important;
    border-color: var(--border-color) !important;
    box-shadow: none !important;
    pointer-events: none;
}

.institution-trigger.institution-trigger--locked:focus {
    border-color: var(--border-color) !important;
    box-shadow: none !important;
}

.institution-trigger.institution-trigger--locked .institution-chevron {
    opacity: 0.45;
    color: var(--text-muted);
}

.institution-trigger .input-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
}

.institution-trigger.open .input-icon,
.institution-trigger:focus .input-icon {
    color: var(--primary-color);
}

.institution-trigger-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-muted);
}

.institution-trigger-text.selected {
    color: var(--text-dark);
}

.institution-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.institution-trigger.open .institution-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.institution-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-top: none;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(14, 22, 122, 0.12);
    list-style: none;
    z-index: 100;
    overflow: hidden;
    animation: dropdownOpen 0.18s ease;
}

@keyframes dropdownOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.institution-options.open {
    display: block;
}

.institution-option {
    padding: 0.85rem 1.1rem 0.85rem 3rem;
    font-size: 0.97rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-light);
    position: relative;
}

.institution-option:last-child {
    border-bottom: none;
}

.institution-option:hover {
    background: rgba(14, 22, 122, 0.06);
    color: var(--primary-color);
}

.institution-option.selected {
    background: rgba(14, 22, 122, 0.08);
    color: var(--primary-color);
    font-weight: 500;
}

.institution-option.selected::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* ==================== LISTA DE NÚMEROS DA SORTE (PÁGINA PRINCIPAL) ==================== */
.user-raffle-section {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-color);
}

.user-raffle-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.user-raffle-empty {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.user-raffle-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.user-raffle-item {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border-radius: var(--border-radius);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.user-raffle-number {
    min-width: 70px;
    max-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(14, 22, 122, 0.06);
    border-radius: 8px;
}

.user-raffle-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.user-raffle-status-line {
    margin-bottom: 0.1rem;
}

.user-raffle-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.user-raffle-badge.validated {
    background: var(--success-color);
    color: #fff;
}

.user-raffle-badge.pending {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.user-raffle-badge.denied {
    background: #e74c3c;
    color: #fff;
}

.user-raffle-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.user-raffle-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.user-raffle-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ==================== SEPARADOR SEÇÃO SENHA ==================== */
.password-section-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0 0.75rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.password-section-divider::before,
.password-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.password-section-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    padding: 0.6rem 0.85rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
}

/* ==================== BOTÃO TOGGLE SENHA ==================== */
.toggle-password {
    position: absolute;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition);
    padding: 0;
    flex-shrink: 0;
}

.toggle-password:hover {
    color: var(--primary-color);
    background: rgba(14, 22, 122, 0.05);
}

.toggle-password svg {
    width: 20px;
    height: 20px;
}

/* Ajuste padding do input com toggle */
.input-wrapper:has(.toggle-password) input {
    padding-right: 3rem;
}

/* ==================== LINK DE LOGIN ==================== */
.login-link-section {
    margin-top: 1.25rem;
    text-align: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.login-link-section p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.login-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.login-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ==================== TERMOS ==================== */
.terms-text {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
    padding: 0 1rem;
}

/* ==================== MENSAGEM DE SUCESSO ==================== */
.success-message {
    display: none;
    padding: 3rem 2rem;
    text-align: center;
    animation: fadeInScale 0.5s ease-out;
}

.success-message.show {
    display: block;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-icon svg {
    width: 45px;
    height: 45px;
    color: white;
}

.success-message h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.success-message p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-new-entry {
    padding: 0.85rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-new-entry:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==================== FOOTER ==================== */
.footer {
    margin-top: 2rem;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer p {
    margin: 0;
    color: var (--text-gray);
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        min-height: auto;
        justify-content: flex-start;
    }
    
    .header {
        padding: 2rem 1.5rem;
    }
    
    .header h2 {
        font-size: 1.25rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .raffle-form {
        padding: 1.5rem 0;
    }
    
    .logo-image {
        max-width: 100px;
    }
    
    .footer {
        margin-top: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .header {
        padding: 1.75rem 1rem;
    }
    
    .header h2 {
        font-size: 1.1rem;
    }
    
    .logo-image {
        max-width: 150px;
    }
    
    .raffle-form {
        padding: 1rem 0;
    }
    
    .input-wrapper input {
        padding: 0.85rem 1rem 0.85rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer {
        margin-top: 0.5rem;
        padding: 0.75rem;
        font-size: 0.8rem;
    }
}

/* ==================== LOADING STATE ==================== */
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit.loading .btn-text::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid var(--primary-dark);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== MELHORIAS MOBILE ==================== */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }
    
    .form-wrapper {
        margin-bottom: 1rem;
    }
    
    /* Garantir que o conteúdo seja acessível */
    .container {
        padding-bottom: 2rem;
    }
}

/* ==================== BOTÃO WHATSAPP ==================== */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
}

.help-bubble {
    background: white;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    animation: fadeInBubble 0.5s ease-out;
}

.help-bubble::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

@keyframes fadeInBubble {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    color: white;
    animation: pulse-whatsapp 2s infinite;
    flex-shrink: 0;
}

.whatsapp-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-button:active {
    transform: translateY(-1px) scale(1.05);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade do botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .help-bubble {
        display: none;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-container {
        bottom: 10px;
        left: 10px;
        gap: 8px;
    }
    
    .help-bubble {
        display: none;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
}

/* ==================== ACESSIBILIDADE ==================== */
*:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-button {
        animation: none;
    }
}