/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #3f2f85;
    --primary-yellow: #F7B32B;
    --dark-purple: #241f5d;
    --light-purple: #5a4ba8;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    --shadow: 0 4px 20px rgba(63, 47, 133, 0.1);
    --shadow-hover: 0 8px 30px rgba(63, 47, 133, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Top Bar */
.hero-top-bar {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
}

.hero-top-inner {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 1.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: rgba(46, 26, 79, 0.75);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-socials {
    display: flex;
    gap: 1rem;
}

.nav-socials a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-socials a:hover {
    color: var(--primary-yellow);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
}

.lang-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: var(--white);
}

.lang-link.active {
    color: var(--primary-yellow);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 992px) {
    .hero-top-bar {
        right: 1rem;
        top: 0.35rem;
    }
}

@media (max-width: 768px) {
    .hero-top-bar {
        position: static;
        display: flex;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }
    
    .hero-top-inner {
        width: calc(100% - 2rem);
        max-width: 420px;
        justify-content: center;
        gap: 1rem;
        border-radius: 16px;
        background: rgba(46, 26, 79, 0.85);
    }
    
    .nav-socials {
        gap: 0.9rem;
    }
    
    .nav-socials a {
        font-size: 1.1rem;
    }
}

.no-break {
    white-space: nowrap;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.highlight {
    color: var(--primary-yellow);
    background: linear-gradient(90deg, var(--primary-yellow), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

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

/* Hero Section */
.hero {
    background-image: linear-gradient(120deg, rgba(46, 26, 79, 0.92) 0%, rgba(74, 44, 125, 0.88) 55%, rgba(0, 0, 0, 0.35) 100%), url('images/jacob-photo.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

@supports (background-image: image-set(url('images/jacob-photo.webp') type('image/webp'), url('images/jacob-photo.jpg') type('image/jpeg'))) {
    .hero {
        background-image: linear-gradient(120deg, rgba(46, 26, 79, 0.92) 0%, rgba(74, 44, 125, 0.88) 55%, rgba(0, 0, 0, 0.35) 100%), image-set(
            url('images/jacob-photo.webp') type('image/webp'),
            url('images/jacob-photo.jpg') type('image/jpeg')
        );
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    gap: 2.5rem;
    width: 100%;
}

.hero-main {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-visual {
    display: none;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }

    .hero-main {
        text-align: left;
        margin: 0;
    }

    .hero-visual {
        display: block;
    }
}

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

    .hero .container {
        min-height: auto;
        flex-direction: column;
        align-items: center;
    }

    .hero-main {
        text-align: center;
    }
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-free {
    background: var(--primary-yellow);
    color: var(--dark-purple);
}

.badge-limited {
    background: var(--white);
    color: var(--primary-purple);
    animation: blink 2s infinite;
}

.badge-spanish {
    background: var(--primary-yellow);
    color: var(--dark-purple);
    border: 2px solid var(--dark-purple);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cert {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-cert a {
    color: var(--primary-yellow);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-primary {
    background: var(--primary-yellow);
    color: var(--dark-purple);
    box-shadow: 0 15px 40px rgba(247, 179, 43, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(247, 179, 43, 0.45);
}

/* Countdown */
.hero-countdown {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
    margin: 0;
}

.countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.countdown-unit {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Funding Section */
.funding-section {
    background: var(--white);
    padding: 2.5rem 0;
    margin-top: 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.funding-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logos-label {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    padding: 0.4rem 1.2rem;
    display: inline-flex;
    border-radius: 999px;
    background: rgba(106, 76, 154, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.logos-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
}

/* Pain Section */
.pain-section {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--dark-purple) 0%, rgba(74, 44, 125, 0.95) 60%, rgba(106, 76, 154, 0.9) 100%);
    color: var(--white);
}

.pain-section .section-title {
    color: var(--white);
}

.pain-block {
    max-width: 1100px;
    margin: 0 auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: var(--text-dark);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pain-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.course-details-block {
    margin-top: 4rem;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.detail-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    color: var(--text-dark);
}

.detail-card:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.detail-card i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.detail-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
}

.detail-card:hover h3 {
    color: var(--white);
}

.detail-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.detail-card:hover p {
    color: var(--white);
}


@media (max-width: 480px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .details-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }

    .hero-badges {
        justify-content: flex-start;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-countdown {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .countdown {
        justify-content: flex-start;
    }
}

@media (min-width: 1200px) {
    .details-grid {
        grid-template-columns: repeat(6, minmax(140px, 1fr));
    }
}

/* Program Section */
.program-section {
    padding: 5rem 0;
    background: var(--white);
}

.program-outcomes {
    margin-bottom: 3.5rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (min-width: 992px) {
    .outcomes-grid {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

@media (min-width: 1200px) {
    .outcomes-grid {
        grid-template-columns: repeat(5, minmax(180px, 1fr));
    }
}

.outcome-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.outcome-item:hover {
    border-color: var(--primary-yellow);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.outcome-item i {
    font-size: 1.6rem;
    color: var(--primary-yellow);
}

.outcome-item h3 {
    color: var(--primary-purple);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.outcome-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.modules-block {
    margin-top: 3rem;
}

.modules-block .section-title,
.modules-block .section-subtitle {
    text-align: center;
}

.modules-accordion {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.module-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.module-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.module-header:hover {
    background: var(--bg-light);
}

.module-header.active {
    background: var(--primary-purple);
    color: var(--white);
}

.module-header.active .module-number {
    background: var(--primary-yellow);
    color: var(--dark-purple);
}

.module-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.module-header h3 {
    flex: 1;
    font-size: 1.1rem;
}

.module-header i {
    transition: transform 0.3s ease;
}

.module-header.active i {
    transform: rotate(180deg);
}

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.module-content.active {
    max-height: 500px;
    padding: 1.5rem;
}

.module-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.module-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.module-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: 700;
}

.module-duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-yellow);
    color: var(--dark-purple);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    margin: 0 auto;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--white);
}

.faq-question.active {
    background: var(--primary-purple);
    color: var(--white);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 300px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    color: var(--white);
    text-align: center;
}

.final-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.final-cta-note {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

/* Prefooter Logos */
.prefooter-logos {
    background: var(--white);
    padding: 3.5rem 0;
}

.prefooter-logos .container {
    display: flex;
    justify-content: center;
}

.prefooter-logos-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
}

.prefooter-logos-grid img {
    max-height: 95px;
    width: auto;
    object-fit: contain;
    filter: none;
}

@media (min-width: 768px) {
    .prefooter-logos-grid {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.5;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.popup.active {
    display: flex;
}

.popup-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popupSlideIn 0.3s ease;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--danger);
    color: var(--white);
}

.popup-title {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.popup-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.popup-form {
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.popup-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.65rem;
}

.popup-feedback {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-purple);
    min-height: 1.2em;
}

.popup-feedback.error {
    color: var(--danger);
}

.popup-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: none;
}

.popup-divider::before,
.popup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bg-light);
}

/* Responsive */
@media (min-width: 768px) {
    .hero-badges {
        justify-content: flex-start;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .btn {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-countdown {
        align-items: center;
    }

    .countdown {
        justify-content: center;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .about-socials {
        justify-content: center;
    }

    .popup {
        padding: 16px;
    }

    .popup-content {
        padding: 1.5rem;
        border-radius: 16px;
        max-height: calc(100vh - 40px);
    }

    .popup-close {
        top: 0.75rem;
        right: 0.75rem;
    }
}
