/* =========================================
   CSS CUSTOM PROPERTIES (DESIGN SYSTEM)
   ========================================= */
:root {
    color-scheme: dark;
    /* Colors */
    --clr-bg-dark: #174047;
    --clr-bg-darker: #1e2d33;
    --clr-primary: #0c545e;
    /* Theme Colors */
    --clr-accent: #D7B46A;
    /* Gold */
    --clr-accent-hover: #e8c67c;
    --clr-text-main: #F2F6F7;
    --clr-text-muted: #CFE3E6;
    --clr-danger: #E63946;
    --clr-success: #2A9D8F;
    --clr-btn-text: #0F1F24;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Variables */
    --glass-bg: rgba(207, 227, 230, 0.15);
    --glass-border: rgba(207, 227, 230, 0.35);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s ease;
}

/* =========================================
   BASE STYLES & RESETS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--clr-bg-darker);
    color: var(--clr-text-main);
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-color: #0b1f24;
    background-image:
        radial-gradient(circle at 40% 50%, #2f6b78 0%, #13333b 45%, #051417 100%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 120px 120px, 120px 120px;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image:
        /* Glows / stars */
        radial-gradient(circle 8px at 25% 35%, rgba(255, 255, 255, 0.8) 0%, rgba(100, 216, 232, 0.4) 30%, transparent 100%),
        radial-gradient(circle 6px at 60% 15%, rgba(255, 255, 255, 0.8) 0%, rgba(100, 216, 232, 0.4) 30%, transparent 100%),
        radial-gradient(circle 9px at 80% 65%, rgba(255, 255, 255, 0.9) 0%, rgba(100, 216, 232, 0.5) 30%, transparent 100%),
        radial-gradient(circle 7px at 15% 80%, rgba(255, 255, 255, 0.7) 0%, rgba(100, 216, 232, 0.3) 30%, transparent 100%),
        /* Geometric Circles */
        radial-gradient(circle 400px at 15% 40%, transparent 398px, rgba(255, 255, 255, 0.06) 399px, transparent 400px),
        radial-gradient(circle 500px at 85% 60%, transparent 498px, rgba(255, 255, 255, 0.06) 499px, transparent 500px),
        radial-gradient(circle 350px at 70% 5%, transparent 348px, rgba(255, 255, 255, 0.06) 349px, transparent 350px),
        radial-gradient(circle 250px at 5% 90%, transparent 248px, rgba(255, 255, 255, 0.06) 249px, transparent 250px);
    background-repeat: no-repeat;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: rgba(23, 64, 71, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--clr-accent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

/* =========================================
   COMPONENTS
   ========================================= */
.btn-primary {
    display: inline-block;
    background: var(--clr-accent);
    color: var(--clr-btn-text);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(215, 180, 106, 0.4);
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 180, 106, 0.6);
    background: var(--clr-accent-hover);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--clr-text-main);
    border: 2px solid var(--clr-text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 38px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(207, 227, 230, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.3rem;
    padding: 22px 50px;
    width: 100%;
    max-width: 500px;
    margin: 1.5rem auto;
}

.btn-small {
    padding: 12px 24px;
    font-size: 0.95rem;
}

.pulse-btn {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(215, 180, 106, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(215, 180, 106, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(215, 180, 106, 0);
    }
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215, 180, 106, 0.3);
}

.badge {
    display: inline-block;
    background: rgba(215, 180, 106, 0.1);
    color: var(--clr-accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(215, 180, 106, 0.3);
}

.mobile-badge {
    display: none;
}

.desktop-badge {
    display: inline-block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(to bottom right, #2A2A3E, #16213E);
    border: 2px dashed rgba(207, 227, 230, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    text-align: center;
    border-radius: 12px;
}

.placeholder-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent), #8A7232);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #10101C;
    font-size: 1.2rem;
}

.icon-danger {
    color: var(--clr-danger);
}

.icon-success {
    color: var(--clr-success);
}

/* =========================================
   SECTIONS
   ========================================= */

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("assets/foto_central_wewe.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 0 60px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
    display: block;
}

.hero-right-logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    display: block;
}

.hero-right-logo-mobile {
    display: none;
}

.hero-content-3col {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: stretch;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-left h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFFFFF, #D0D0D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left .btn-primary {
    padding: 12px 24px;
    /* menor que os 18px 40px originais */
    font-size: 1.1rem;
    /* menor que o 1.1rem original */
    max-width: 95%;
}


.hero-left .subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
}

.hero-center {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}


.hero-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 1rem;
}

.right-block h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--clr-accent);
    margin-bottom: 8px;
    line-height: 1.3;
}

.right-block p {
    font-size: 1rem;
    color: var(--clr-text-main);
    font-weight: 500;
}

/* Program Details List (Desktop Only) */
.hero-program-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.detail-list li i {
    color: var(--clr-accent);
    font-size: 1.25rem;
}

.detail-list li strong {
    color: #fff;
    font-weight: 600;
}

.transform-badge {
    margin-top: 5px;
    background: rgba(241, 196, 15, 0.08);
    border-left: 3px solid var(--clr-accent);
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: #fff;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.transform-badge i {
    color: var(--clr-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: 1px solid transparent;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.btn-social i {
    font-size: 1.25rem;
}

.urgency-text {
    margin-top: 1rem;
    color: var(--clr-accent);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
}

/* Credibility Bar */
.credibility-bar {
    background: rgba(23, 64, 71, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    border-top: 1px solid rgba(207, 227, 230, 0.25);
    border-bottom: 1px solid rgba(207, 227, 230, 0.25);
    position: relative;
    z-index: 2;
}

.credibility-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.cred-item i {
    color: var(--clr-accent);
    font-size: 1.5rem;
}

/* Problem Section */
.problem-list {
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(207, 227, 230, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--clr-danger);
}

.problem-item p {
    font-size: 1.1rem;
}

.transition-text {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--clr-accent);
    margin-top: 2rem;
}

/* Solution Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #FFF;
}

.feature-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* For Whom Section */
.grids-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.for-who-box {
    background: rgba(207, 227, 230, 0.1);
    padding: 3rem;
    border-radius: 12px;
}

.box-yes {
    border-top: 4px solid var(--clr-success);
}

.box-no {
    border-top: 4px solid var(--clr-danger);
    opacity: 0.8;
}

.for-who-box h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.for-who-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.for-who-box li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--clr-text-muted);
}

.for-who-box i {
    font-size: 1.3rem;
    margin-top: 2px;
}

/* About Mentor */
.mentor-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 3rem;
}

.mentor-image .image-placeholder {
    height: 500px;
}

.mentor-name {
    font-size: 2.5rem;
    color: var(--clr-accent);
    margin-bottom: 0.2rem;
}

.mentor-role {
    font-size: 1.2rem;
    color: #FFF;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.mentor-bio {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.mentor-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(207, 227, 230, 0.15);
    padding: 20px;
    border-radius: 8px;
    border-left: 2px solid var(--clr-accent);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #FFF;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Curriculum 2 Columns */
.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 3rem auto;
    width: 100%;
}

@media (min-width: 900px) {
    .curriculum-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: flex-start;
    }
}

.curriculum-column .column-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--clr-accent);
    margin-bottom: 3rem;
    /* Espaço entre o título e os blocos/cards */
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    /* Espaço entre as linhas do texto do título */
}

/* Removido código que deixava a coluna da direita com o título branco */

/* Curriculum Cards Grid */
.curriculum-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

@media (min-width: 600px) {
    .curriculum-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.c-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
    min-height: 160px;
    height: 100%;
    transition: all 0.3s ease;
}

.c-card i {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.c-card span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Left Pillar */
.left-cards .c-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    border-radius: 4px;
    /* Slight rounding based on image */
}

.left-cards .c-card i {
    color: #fff;
}

.left-cards .c-card:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 4px 15px rgba(215, 180, 106, 0.2);
    transform: translateY(-2px);
}

/* Right Pillar */
.right-cards .c-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    border-radius: 4px;
}

.right-cards .c-card i {
    color: #fff;
}

.right-cards .c-card:hover {
    border-color: var(--clr-accent);
    box-shadow: 0 4px 15px rgba(215, 180, 106, 0.2);
    transform: translateY(-2px);
}

/* Curriculum Accordion Base */
.accordion {
    max-width: 800px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: rgba(207, 227, 230, 0.15);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(207, 227, 230, 0.25);
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px;
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(207, 227, 230, 0.25);
}

.accordion-header .mod-num {
    color: var(--clr-accent);
    margin-right: 10px;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.open .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding: 0 24px 24px;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.bonus-section {
    margin-top: 5rem;
    text-align: center;
}

.bonus-section h3 {
    font-size: 2rem;
    color: var(--clr-accent);
    margin-bottom: 2rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bonus-card {
    padding: 2rem;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-card h4 {
    color: #FFF;
    margin-bottom: 10px;
}



/* Course Format */
.format-highlight {
    background: rgba(215, 180, 106, 0.1);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 2rem auto 4rem;
    max-width: 600px;
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.format-card {
    background: rgba(207, 227, 230, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(207, 227, 230, 0.25);
}

.format-card i {
    font-size: 3rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.format-card h4 {
    color: #FFF;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.format-card p {
    color: var(--clr-text-muted);
}

/* Pricing */
.pricing {
    position: relative;
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(215, 180, 106, 0.05) 0%, var(--clr-bg-darker) 70%);
}

.pricing-card {
    position: relative;
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 4rem 3rem;
    border: 1px solid rgba(215, 180, 106, 0.3);
    background: linear-gradient(180deg, rgba(23, 64, 71, 0.6) 0%, rgba(30, 45, 51, 0.8) 100%);
    display: flex;
    flex-direction: column;
}

.pricing-card .CTA-card {
    margin-top: auto;
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-accent);
    color: var(--clr-btn-text);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-badge-exclusivo {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-bg-dark);
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent);
    padding: 10px 25px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-include-label {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 1rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    font-size: 1.05rem;
}

.pricing-prices {
    margin-bottom: 2.5rem;
}

.price-from {
    display: block;
    color: var(--clr-text-muted);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.price-to {
    display: block;
    color: #FFF;
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.price-installments {
    display: block;
    color: var(--clr-accent);
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #FFF;
}

.pricing-features i {
    color: var(--clr-success);
    font-size: 1.2rem;
}

.pricing-security {
    margin-top: 1.5rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.scarcity-alert {
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    background: rgba(215, 180, 106, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--clr-accent);
}

/* Footer */
.footer {
    background: var(--clr-bg-darker);
    padding: 60px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(207, 227, 230, 0.25);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #FFF;
    letter-spacing: 1px;
}

.footer-links a {
    color: var(--clr-text-muted);
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--clr-accent);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    padding: 10px 20px;
    border-radius: 30px;
    background: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FFF;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(207, 227, 230, 0.25);
}

.social-links a:hover {
    background: #093f47;
    color: #FFF;
    transform: translateY(-3px);
}

.disclaimer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    max-width: 600px;
    margin-top: 20px;
}

/* Mobile CTA */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(23, 64, 71, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-top: 1px solid rgba(215, 180, 106, 0.2);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: none;
}

.mobile-cta-bar.show {
    transform: translateY(0);
}

.mobile-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-cta-content span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: #FFF;
}

.mobile-cta-content .btn-primary {
    margin: auto 0;
}

/* =========================================
   ANIMATIONS (Scroll Reveal)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger>.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.stagger>.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for stagger items applied via JS or inline CSS could also work, we will use JS for simplicity */

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-content-3col {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-right {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-around;
        padding-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-3col {
        grid-template-columns: minmax(0, 100%);
        text-align: center;
        padding-top: 0;
        width: 100%;
    }

    .hero-logo {
        margin: 30px auto 250px 20px;
        max-width: 100px;
    }

    .hero-right-logo {
        display: none;
    }

    .hero-right-logo-mobile {
        display: block;
        position: absolute;
        top: 40px;
        right: 20px;
        max-width: 185px;
        z-index: 20;
    }

    .hero {
        padding-top: 0;
        padding-bottom: 40px;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        background-image: url('assets/foto_central9_16_menor.png');
        background-position: center top;
        background-size: cover;
        background-size: contain;
        overflow: visible;
    }

    .hero-right {
        flex-direction: column;
        gap: 30px;
        margin-top: 0px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }



    .hero-left h1 {
        font-size: 1.7rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-left .subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .cta-wrapper {
        margin-top: 10px;
    }

    .cta-wrapper .btn-primary {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .urgency-text {
        justify-content: center;
        text-align: center;
    }

    .desktop-only {
        display: none !important;
    }

    .image-placeholder {
        min-height: 300px;
    }

    .grids-2 {
        grid-template-columns: 1fr;
    }

    .mentor-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .btn-large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .pricing-card {
        padding: 4rem 2rem 3rem;
    }

    .price-to {
        font-size: 2.5rem;
    }

    .mobile-cta-bar {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}


@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .credibility-items {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .pricing-card {
        padding: 3.5rem 1.5rem 2.5rem;
    }

    .mobile-cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    body {
        padding-bottom: 100px;
        /* larger padding for stacked mobile CTA */
    }
}

/* =========================================
   ONBOARDING FORM / REGISTRATION
   ========================================= */
.onboarding-page {
    background-image:
        radial-gradient(circle at 40% 50%, #2f6b78 0%, #13333b 45%, #051417 100%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.onboarding-header {
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(215, 180, 106, 0.15);
    background: rgba(11, 31, 36, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.onboarding-logo {
    max-width: 160px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
}
.onboarding-logo:hover {
    transform: scale(1.05);
}

.onboarding-container {
    padding-top: 50px;
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
}

.premium-form {
    width: 100%;
    max-width: 750px;
    padding: 3rem 4rem;
    background: rgba(18, 45, 50, 0.5); /* Deep elegant background */
    border: 1px solid rgba(215, 180, 106, 0.25);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(215, 180, 106, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px dashed rgba(215, 180, 106, 0.3);
    padding-bottom: 2rem;
}

.form-header h2 {
    font-size: 2.2rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-header p {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    font-weight: 300;
}

.form-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: var(--clr-accent);
    margin-left: 4px;
    font-size: 1.2rem;
    line-height: 1;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.05rem;
    font-family: var(--font-body);
    color: #ffffff;
    background: rgba(8, 20, 24, 0.7);
    border: 1px solid rgba(215, 180, 106, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: rgba(207, 227, 230, 0.4);
    font-weight: 300;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    background: rgba(14, 38, 43, 0.9);
    border-color: var(--clr-accent);
    box-shadow: 0 0 15px rgba(215, 180, 106, 0.25);
    transform: translateY(-2px);
}

.premium-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D7B46A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2em;
    padding-right: 3rem;
}

.premium-form select option {
    background: #174047;
    color: #f2f6f7;
    padding: 10px;
}

.premium-form select:invalid {
    color: rgba(207, 227, 230, 0.4);
}

.form-submit {
    margin-top: 3.5rem;
    text-align: center;
}

.form-submit .btn-primary {
    width: 100%;
    max-width: none;
    padding: 24px;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .premium-form {
        padding: 2.5rem 1.5rem;
    }
    .form-header h2 {
        font-size: 1.8rem;
    }
    .form-header p {
        font-size: 1rem;
    }
}