:root {
    /* Colors */
    --clr-primary: #84003b;
    /* Rubi v4 */
    --clr-primary-dark: #4a0021;
    --clr-accent: #5febe6;
    /* Ciano Glow */
    --clr-bg: #FAFAFA;
    --clr-white: #ffffff;
    --clr-text-light: #ffffff;
    --clr-text-dark: #1a1a1a;
    --clr-text-muted: #4a4a4a;

    /* Fonts v4: Philosopher (Elegant & Fluid) + Outfit */
    --font-heading: 'Philosopher', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --transition-sparkle: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Patterns */
    --pattern-perfume: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-5 0-9 4-9 9v2c-2 0-4 2-4 4v16c0 6 5 11 11 11s11-5 11-11V20c0-2-2-4-4-4v-2c0-5-4-9-9-9zm0 2c3.9 0 7 3.1 7 7v2H23v-2c0-3.9 3.1-7 7-7zm-9 11h18c1.1 0 2 .9 2 2v16c0 5-4 9-9 9s-9-4-9-9V20c0-1.1.9-2 2-2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

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

.narrow-container {
    max-width: 850px;
}

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

.text-accent {
    color: var(--clr-accent);
}

/* Global Section Coloring */
.bg-white {
    background-color: var(--clr-white) !important;
    background-image: none !important;
    color: var(--clr-text-dark) !important;
}

.bg-subtle {
    background-color: var(--clr-primary) !important;
    background-image:
        radial-gradient(at 100% 0%, rgba(95, 235, 230, 0.05) 0%, transparent 40%),
        radial-gradient(at 0% 100%, var(--clr-primary-dark) 0%, transparent 50%),
        var(--pattern-perfume) !important;
    color: var(--clr-text-light) !important;
}

/* Specific Section Overrides */
.bg-subtle .section-title,
.bg-subtle .section-text,
.bg-subtle .section-subtitle,
.bg-subtle .quote,
.bg-subtle h3 {
    color: var(--clr-text-light) !important;
}

/* Fix text colors inside cards with white background */
.bg-subtle .bento-card h3,
.bg-subtle .learning-card .card-overlay h3 {
    color: var(--clr-primary) !important;
}

.bg-subtle .bento-card p,
.bg-subtle .learning-card .card-overlay p {
    color: var(--clr-text-muted) !important;
}

.bg-white .section-title {
    color: var(--clr-primary) !important;
}

/* Hero: Refined Split v4 */
.hero {
    min-height: 100vh;
    background-color: var(--clr-primary);
    background-image:
        radial-gradient(circle at top, rgba(132, 0, 59, 0.2) 0%, var(--clr-primary-dark) 80%),
        url('/.netlify/images?url=https://images.unsplash.com/photo-1594035910387-fea47794261f?auto=format%26fit=crop%26q=80%26w=1920&w=1920&q=80'),
        var(--pattern-perfume);
    background-size: cover, cover, auto;
    background-position: center bottom, center, center;
    background-blend-mode: normal, soft-light, overlay;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}



.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Progress Bar */
.lotes-progress-block {
    margin: 1rem 0;
    width: 100%;
    max-width: 450px;
}

.lotes-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.lotes-labels .lote {
    font-size: 1rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.lotes-labels .lote.active {
    border: 2px solid var(--clr-accent);
    padding: 0.25rem 0.8rem;
    border-radius: 6px;
    color: var(--clr-text-light);
    display: inline-block;
}

.lotes-labels .lote.current {
    color: var(--clr-white);
}

.progress-bar-container {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar-fill {
    height: 100%;
    background: var(--clr-accent);
    box-shadow: 0 0 15px var(--clr-accent);
    border-radius: 6px;
    animation: fillProgress 1.5s ease-out forwards;
}

@keyframes fillProgress {
    from {
        width: 0;
    }

    to {
        width: 75%;
    }
}

.progress-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-content {
    text-align: left;
}

.hero-eyebrow {
    color: var(--clr-accent);
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: block;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-date-highlight {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--clr-accent);
    border-radius: 8px;
    font-weight: 700;
    color: var(--clr-accent);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-image-charme {
    position: relative;
    padding: 2rem;
}

/* Image Frame: Mentora Hero */
.mentora-hero-frame {
    width: 450px;
    height: 600px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    overflow: hidden;
    position: relative;
    z-index: 3;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.hero-portrait {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    object-fit: cover;
    border-radius: inherit;
}

.aura-glow-v4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(95, 235, 230, 0.2) 0%, transparent 70%);
    z-index: 1;
    filter: blur(20px);
}

/* Button */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    transition: var(--transition-sparkle);
    border-radius: 0;
    border: 1px solid var(--clr-accent);
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--clr-accent);
    box-shadow: 0 0 20px rgba(95, 235, 230, 0.3);
}

.pulse-loop {
    animation: pulseLoop 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pulseLoop {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Section Divider */
.section-divider {
    height: 6rem;
    background: linear-gradient(to bottom, var(--clr-primary) 0%, var(--clr-bg) 100%);
    opacity: 0.1;
}

/* Challenge Section */
.challenge-section {
    padding: 4rem 0;
    /* Removido barra cinza da challenge */
    background-color: var(--clr-bg);
}

.section-title {
    color: var(--clr-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.img-aura-v4 {
    position: relative;
    display: inline-block;
    padding: 1.5rem;
}

.rounded-img {
    max-width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-aura-v4::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 1px solid var(--clr-primary);
    opacity: 0.2;
    border-radius: 30px;
    z-index: 1;
}

.section-text {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
}

.quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--clr-primary);
    opacity: 0.8;
}

/* Method Section: Horizontal Cards Grid */
.method-section {
    padding: 100px 0;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-top: -2.5rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.horizontal-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-card {
    background: var(--clr-white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(132, 0, 59, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.5s ease;
    width: 310px;
    flex-shrink: 0;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(132, 0, 59, 0.1);
}

.card-image-placeholder {
    width: 100%;
    height: 280px;
    background: rgba(132, 0, 59, 0.03);
    border-bottom: 1px solid rgba(132, 0, 59, 0.05);
    object-fit: cover;
}

.bento-card .card-content {
    padding: 2rem 1.5rem;
    text-align: center;
    /* Centralizado como pedido */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alinhado ao topo */
    flex-grow: 1;
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--clr-primary);
    line-height: 1.2;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .horizontal-cards-grid .bento-card {
        width: calc(50% - 1.5rem);
    }
}

@media (max-width: 576px) {
    .horizontal-cards-grid .bento-card {
        width: 100%;
    }
}

/* For Who Section */
.for-who-section {
    padding: 6rem 0;
    /* Espacamento adicionado na parte de cima e embaixo */
}

.para-quem-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.pq-card {
    background: var(--clr-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 0 1 280px;
    min-width: 250px;
}

.pq-card i {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.pq-card p {
    color: var(--clr-text-muted);
    font-size: 1rem;
}

@media (max-width: 992px) {
    .para-quem-cards {
        flex-direction: row;
    }

    .pq-card {
        flex: 1 1 calc(50% - 1.5rem);
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .para-quem-cards {
        flex-direction: column;
    }

    .pq-card {
        flex: 1 1 100%;
    }
}

/* Learning Section: Infinite Marquee */
.learning-section {
    padding: 100px 0;
}

.container-full {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
}

.fixed-learning-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.learning-card {
    background: var(--clr-white);
    border-radius: 30px;
    width: 100%;
    max-width: 450px;
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.learning-card .card-image-placeholder {
    height: 60%;
    background: rgba(132, 0, 59, 0.03);
    border-bottom: 1px solid rgba(132, 0, 59, 0.05);
}

.learning-card .card-overlay {
    height: 40%;
    background: var(--clr-white);
    color: var(--clr-text-dark);
    padding: 1.5rem;
    white-space: normal;
    text-align: center;
    /* Texto centralizado */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.learning-card .card-overlay h3 {
    color: var(--clr-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.learning-card .card-overlay p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    opacity: 1;
}

/* Benefits Checklist Section */
.benefits-section {
    padding: 100px 0;
}

.benefits-checklist {
    list-style: none;
    margin: 2rem auto 0;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefits-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    background: var(--clr-bg);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefits-checklist li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefits-checklist i {
    color: var(--clr-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    background: var(--clr-primary);
    border-radius: 50%;
    padding: 0.3rem;
    margin-top: 0;
}

.benefits-checklist span {
    color: var(--clr-text-muted);
    line-height: 1.4;
    padding-top: 0;
}

@media (max-width: 768px) {
    .benefits-checklist li {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .benefits-checklist i {
        font-size: 1rem;
    }
}

.placeholder-image {
    width: 100%;
    height: 500px;
    border-radius: 40px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.mentora-section {
    padding: 120px 0;
    overflow: hidden;
}

.container-large {
    max-width: 1400px;
}

.mentora-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.mentora-image {
    position: relative;
}

.mentora-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.mentora-content {
    position: relative;
    z-index: 2;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.glass-card .eyebrow {
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
}

.glass-card .title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

.glass-card .bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.quote-box {
    border-left: 4px solid var(--clr-accent);
    padding-left: 2rem;
}

.quote-box p {
    font-size: 1.3rem;
    font-style: italic;
    font-family: var(--font-heading);
}

/* CTA Final */
.cta-final {
    padding: 15rem 0;
    background-color: var(--clr-primary);
    background-image:
        radial-gradient(circle at top right, var(--clr-primary-dark) 0%, transparent 60%),
        radial-gradient(circle at bottom left, var(--clr-primary-dark) 0%, transparent 60%);
    color: var(--clr-white);
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 0.9;
}

.btn-accent {
    background-color: var(--clr-accent);
    color: var(--clr-primary-dark);
    border-color: var(--clr-accent);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    color: var(--clr-white);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    color: var(--clr-white);
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.footer-links span {
    cursor: pointer;
    transition: color 0.3s;
}

.footer-links span:hover {
    color: var(--clr-accent);
}

/* RESPONSIVE FINALS */
@media (max-width: 1024px) {
    .mentora-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .mentora-image img {
        height: 500px;
    }

    .glass-card {
        padding: 2.5rem;
        text-align: center;
    }
}

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        /* Menor para caber tudo na tela */
    }

    .hero-content {
        order: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centralizar conteudos do hero mobile */
    }

    .hero-visual {
        order: 2;
        justify-content: center;
    }

    .mentora-hero-frame {
        width: 260px;
        height: 360px;
        margin: 0 auto;
    }

    .lotes-labels {
        gap: 0.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lotes-labels .lote {
        font-size: 0.75rem;
    }

    .lotes-labels .lote.active {
        padding: 0.2rem 0.4rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        margin: 0 auto 1.5rem;
        font-size: 1rem;
    }

    .lotes-progress-block {
        margin: 1.5rem auto;
        /* Centraliza no mobile e espaca */
    }
}