/* EAD Adventista - Landing Page CSS v3.0 */
:root {
    --primary: #002B4C;
    --secondary: #FF6600;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F7;
    --border: #D2D2D7;
    --success: #34C759;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Logo na Hero Section */
.hero-logo {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 30px 60px;
    position: relative;
    z-index: 1;
}

.hero-logo img {
    height: auto;
    max-height: 90px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Seção Imagem + Countdown */
.promo-countdown-section {
    width: 100%;
    max-width: 1200px;
    margin: -10px auto 0;
    padding: 0 40px;
}

.promo-countdown-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Imagem Promocional */
.hero-promo-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 43, 76, 0.15);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 102, 0, 0.2);
}

.hero-promo-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 43, 76, 0.25);
    border-color: var(--secondary);
}

.hero-promo-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hero Section */
.hero {
    padding: 0 40px 90px;
    background-image: url('https://assets.zyrosite.com/hv88dOusYoXOz2Rg/banner-back-scaled-AVL7PgEDJ5UXaJ81.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.hero-content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 45px;
    max-width: 100%;
}

.hero-content-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content .highlight {
    color: var(--secondary);
    display: inline-block;
}

.hero-tagline {
    font-size: 22px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 500;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--white);
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-features-list li i {
    color: var(--secondary);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-conditions {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-conditions-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Countdown Container */
.countdown-container {
    background: linear-gradient(135deg, #FF6600 0%, #FF8533 100%);
    border: none;
    border-radius: 20px;
    padding: 30px 35px;
    box-shadow: 
        0 10px 40px rgba(255, 102, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    width: 100%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(255, 102, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }
    50% {
        box-shadow: 
            0 15px 50px rgba(255, 102, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    }
}

.countdown-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-label i {
    font-size: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    flex: 0 1 auto;
    text-align: center;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 14px 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, monospace;
}

.countdown-label-item {
    font-size: 11px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-benefit-item {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    position: relative;
}

.hero-benefit-item:not(:last-child)::after {
    content: '•';
    margin: 0 16px 0 12px;
    color: var(--white);
    font-size: 24px;
    opacity: 0.5;
    font-weight: 300;
    vertical-align: middle;
}

.hero-benefit-value {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    letter-spacing: -0.8px;
}

.hero-benefit-label {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    opacity: 0.95;
}

/* Form no Hero */
.hero-form-wrapper {
    align-self: start;
}

.hero-form {
    background: var(--bg-primary);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0, 43, 76, 0.2), 0 0 0 1px rgba(255, 102, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #003B69 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--primary);
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 2;
}

.radio-option label {
    display: block;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.radio-option input[type="radio"]:checked ~ label,
.radio-option:has(input[type="radio"]:checked) label {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--bg-primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 4px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #003B69 100%);
    color: var(--bg-primary);
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 6px;
    box-shadow: 0 4px 20px rgba(0, 43, 76, 0.3);
    position: relative;
    overflow: hidden;
}

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

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, #FF8C00 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.4);
}

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

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    display: none;
    background: var(--success);
    color: var(--bg-primary);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 100px 40px;
    background: var(--bg-secondary);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #003B69 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 21px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 64px;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 43, 76, 0.15);
    border-color: var(--primary);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 43, 76, 0.1) 0%, rgba(0, 43, 76, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 43, 76, 0.1);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #003B69 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 43, 76, 0.2);
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #003B69 100%);
    color: var(--bg-primary);
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(0, 43, 76, 0.3);
}

.benefit-card.featured::before {
    background: linear-gradient(90deg, var(--secondary) 0%, #FF8C00 100%);
    transform: scaleX(1);
}

.benefit-card.featured:hover {
    box-shadow: 0 20px 60px rgba(0, 43, 76, 0.4);
    transform: translateY(-10px) scale(1.03);
}

.benefit-card.featured .benefit-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-primary);
}

.benefit-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: inherit;
    letter-spacing: -0.3px;
}

.benefit-price {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.benefit-card.featured .benefit-price {
    color: var(--bg-primary);
}

.benefit-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.benefit-card.featured .benefit-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Features Section */
.features {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 43, 76, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 43, 76, 0.1) 0%, rgba(0, 43, 76, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 43, 76, 0.1);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #003B69 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 43, 76, 0.2);
}

.feature-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feature-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 100px 40px;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}

.faq-item {
    background: var(--bg-primary);
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: fit-content;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 43, 76, 0.12);
    border-color: var(--primary);
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--secondary);
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question {
    background: var(--primary);
    color: var(--bg-primary);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--bg-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 24px;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--bg-primary);
    padding: 80px 40px 40px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-cta h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.footer-cta p {
    font-size: 21px;
    margin-bottom: 32px;
    opacity: 0.8;
    font-weight: 400;
}

.footer-info {
    border-top: 0.5px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    margin-top: 48px;
}

.footer-info p {
    font-size: 14px;
    opacity: 0.6;
}

.footer .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-primary);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Float com múltiplos contatos */
.whatsapp-float-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.whatsapp-float {
    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: all 0.3s ease;
    color: var(--bg-primary);
    font-size: 28px;
    border: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-menu-header {
    padding: 16px 20px;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.whatsapp-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border);
}

.whatsapp-menu-item:last-child {
    border-bottom: none;
}

.whatsapp-menu-item:hover {
    background: var(--bg-secondary);
}

.whatsapp-menu-item i {
    font-size: 24px;
    color: #25D366;
    flex-shrink: 0;
}

.whatsapp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatsapp-contact-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.whatsapp-contact-number {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-form-wrapper {
        position: static;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-features-list li {
        font-size: 16px;
    }

    .hero-benefit-value {
        font-size: 30px;
    }

    .hero-benefit-label {
        font-size: 15px;
    }

    .promo-countdown-section {
        margin: 0 auto;
        padding: 0 30px;
    }

    .promo-countdown-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-promo-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 24px 60px;
    }

    .hero-logo {
        padding: 25px 20px 40px;
    }

    .hero-logo img {
        max-height: 80px;
        max-width: 250px;
    }

    .hero-content {
        gap: 28px;
        max-width: 100%;
        align-items: center;
    }
    
    .hero-content-wrapper {
        padding: 28px 24px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 46px;
        margin-bottom: 14px;
    }
    
    .hero-tagline {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .hero-features-list {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }
    
    .hero-features-list li {
        font-size: 16px;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-benefit-item:not(:last-child)::after {
        display: none;
    }

    .hero-benefit-value {
        font-size: 30px;
    }
    
    .hero-benefit-label {
        font-size: 15px;
    }

    .promo-countdown-section {
        margin: 0 auto;
        padding: 0 24px;
    }

    .promo-countdown-wrapper {
        gap: 25px;
    }

    .hero-promo-image {
        max-width: 350px;
    }

    .countdown-container {
        padding: 24px 24px;
    }
    
    .countdown {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 19px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 19px;
    }

    .benefits,
    .features,
    .faq-section {
        padding: 80px 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-form {
        padding: 35px 28px;
    }
    
    .form-title {
        font-size: 26px;
    }
    
    .form-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-features-list li {
        font-size: 15px;
    }

    .hero-benefit-value {
        font-size: 28px;
    }

    .hero-benefit-label {
        font-size: 14px;
    }

    .promo-countdown-section {
        margin: 0 auto;
        padding: 0 16px;
    }

    .promo-countdown-wrapper {
        gap: 20px;
    }

    .hero-promo-image {
        max-width: 320px;
    }

    .countdown-container {
        padding: 18px 16px;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        min-width: 70px;
        flex: 0 0 calc(50% - 4px);
        padding: 12px 8px;
    }

    .countdown-number {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    /* WhatsApp Responsive */
    .whatsapp-float-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }
    
    .whatsapp-menu {
        min-width: 260px;
        right: 0;
    }
}

