@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --pink: #cd6878;
    --deep: #cb2836;
    --pale: #f8d9dd;
    --ink: #272526;
    --muted: #6d696b;
    --line: #d46b7a;
    --soft: #f6f6f6;
    --shadow: 0 18px 38px rgba(43,30,32,.15)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Poppins,Arial,sans-serif;
    color: var(--ink);
    background: #fafafa;
    line-height: 1.45
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

button, input, select, textarea {
    font: inherit
}

.site-shell {
    min-height: 100vh;
    overflow: hidden
}

.container {
    width: min(1280px,calc(100% - 44px));
    margin: auto
}

.topbar {
    padding: 34px 0 18px;
    position: relative;
    z-index: 20
}

.navwrap {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center
}

.brand {
    background: #fff;
    border-radius: 999px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    min-height: 48px;
    box-shadow: 0 4px 14px rgba(0,0,0,.03)
}

    .brand img {
        width: 150px;
        height: auto
    }

.nav {
    background: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    padding: 0 46px;
    min-height: 48px;
    box-shadow: 0 4px 14px rgba(0,0,0,.03)
}

    .nav a {
        font-size: 14px;
        font-weight: 600;
        transition: .25s
    }

        .nav a:hover, .nav a.active {
            color: var(--pink)
        }

.menu-btn {
    display: none;
    border: 0;
    background: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 22px
}

.hero-placeholder {
    width: min(1280px,calc(100% - 44px));
    height: 560px;
    border: 2px solid var(--line);
    border-radius: 36px;
    margin: 90px auto 90px;
    background: #fff;
    box-shadow: 0 26px 34px rgba(205,104,120,.22)
}

.tree-bg {
    position: relative
}

    .tree-bg:before {
        content: "";
        position: absolute;
        inset: 18% 4% 0;
        background: radial-gradient(circle at 50% 50%,rgba(235,235,235,.75),transparent 58%);
        z-index: -2
    }

    .tree-bg:after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 82%;
        height: 76%;
        opacity: .13;
        background: url('assets/tree-vector.svg') center bottom/contain no-repeat;
        z-index: -1
    }

.section {
    padding: 70px 0
}

.section-title {
    text-align: center;
    margin-bottom: 40px
}

.eyebrow {
    color: var(--pink);
    font-size: 15px
}

.section-title h1, .section-title h2 {
    margin: 5px 0 0;
    font-size: 42px;
    line-height: 1.15
}

.btnrow {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 14px 32px;
    min-width: 190px;
    text-align: center;
    font-weight: 500;
    background: #fff;
    color: var(--deep);
    cursor: pointer;
    transition: transform .25s,box-shadow .25s,background .25s
}

    .btn.primary {
        background: linear-gradient(90deg,#ca2634,#da4552);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 16px 28px rgba(202,38,52,.25);
        font-weight: 700
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(0,0,0,.13)
    }

.cards {
    display: grid;
    gap: 28px
}

.glass-card {
    background: rgba(255,255,255,.82);
    border: 1px solid #ddd;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.footer {
    background: #eee;
    padding: 70px 0 28px;
    margin-top: 80px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3,1fr);
    gap: 60px
}

.footer h4 {
    margin: 0 0 14px;
    font-size: 18px
}

.footer p, .footer a {
    font-size: 13px;
    color: #555
}

.footer nav {
    display: grid;
    gap: 8px
}

.copyright {
    text-align: center;
    margin-top: 55px;
    font-size: 12px;
    color: #555
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease,transform .8s ease
}

    .reveal.visible {
        opacity: 1;
        transform: none
    }

.float {
    animation: float 5s ease-in-out infinite
}

@keyframes float {
    50% {
        transform: translateY(-8px)
    }
}
/* Home */
.home-hero {
    min-height: 850px;
    background: linear-gradient(125deg,#c76171,#f5859a);
    position: relative;
    color: white;
    border-radius: 0 0 0 20px;
    overflow: hidden
}

    .home-hero:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 62%;
        height: 120px;
        background: #fafafa;
        clip-path: polygon(0 0,72% 0,100% 100%,0 100%)
    }

.home-copy {
    padding-top: 130px;
    width: 48%;
    position: relative;
    z-index: 2
}

.pill {
    display: inline-block;
    padding: 7px 35px;
    border-radius: 999px;
    background: rgba(255,255,255,.27);
    font-size: 14px
}

.home-copy h1 {
    font-size: 53px;
    line-height: 1.14;
    margin: 26px 0
}

.home-copy p {
    font-size: 18px;
    max-width: 620px
}

.hero-person {
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 53%;
    height: 96%;
    object-fit: contain;
    object-position: bottom
}

.welcome-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 35px;
    align-items: center;
    width: min(930px,100%);
    margin: auto
}

    .welcome-grid img {
        border-radius: 18px;
        box-shadow: var(--shadow)
    }

.testimonials {
    grid-template-columns: repeat(3,1fr);
    width: min(1080px,100%);
    margin: auto
}

.testimonial {
    padding: 26px;
    background: linear-gradient(145deg,#fff,#fadfe3);
    border: 1px solid #efb6bf;
    border-radius: 16px;
    box-shadow: var(--shadow);
    font-size: 13px
}

.benefit-box {
    width: min(920px,100%);
    margin: auto;
    padding: 38px 60px;
    background: linear-gradient(145deg,#fff,#f9dfe2);
    border: 1px solid #de8996;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

    .benefit-box li {
        margin: 8px 0
    }

.credentials {
    grid-template-columns: repeat(3,1fr)
}

.credential {
    padding: 22px
}

.philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

    .philosophy .glass-card {
        padding: 28px
    }

.cta-band {
    background: #f9d0d5;
    padding: 100px 0;
    text-align: center
}

    .cta-band p {
        max-width: 680px;
        margin: 18px auto
    }
/* Coaching */
.service-list {
    width: min(1280px,100%);
    margin: auto
}

.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 390px;
    overflow: hidden
}

    .service:nth-child(even) .service-image {
        order: 2
    }

.service-image {
    height: 100%;
    min-height: 390px
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.service-copy {
    padding: 50px
}

    .service-copy h3 {
        color: var(--pink);
        font-size: 24px;
        font-weight: 500
    }

    .service-copy li {
        margin: 13px 0;
        font-size: 14px
    }
/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 70px;
    align-items: start;
    width: min(1280px,100%);
    margin: auto
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

    .form .full {
        grid-column: 1/-1
    }

.field {
    width: 100%;
    border: 1px solid #d8d8d8;
    background: rgba(255,255,255,.87);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08)
}

textarea.field {
    min-height: 210px;
    resize: vertical
}

.contact-photo {
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.success {
    color: var(--pink);
    display: none;
    margin-top: 15px
}

    .success.show {
        display: block
    }
/* Learning */
.pdf-grid {
    grid-template-columns: repeat(3,1fr);
    width: min(1280px,100%);
    margin: auto
}

.pdf-card {
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--pink);
    cursor: pointer;
    transition: .25s
}

    .pdf-card:first-child {
        background: linear-gradient(145deg,#fff,#f8ced5);
        border-color: #ef9dab
    }

    .pdf-card:hover {
        transform: translateY(-6px)
    }
/* Level */
.level-intro {
    max-width: 1100px;
    margin: 80px auto 40px;
    text-align: center
}

    .level-intro h1 {
        font-size: 58px;
        margin: 10px 0
    }

    .level-intro p {
        font-size: 19px
    }

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: min(1150px,100%);
    margin: 60px auto
}

.acc {
    overflow: hidden
}

.acc-btn {
    width: 100%;
    border: 0;
    background: rgba(255,255,255,.86);
    padding: 26px;
    text-align: left;
    color: var(--pink);
    font-size: 20px;
    cursor: pointer
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height .35s,padding .35s
}

.acc.open .acc-content {
    max-height: 170px;
    padding: 0 26px 26px
}

.levels-copy {
    max-width: 760px;
    margin: 90px 0
}

    .levels-copy h2 {
        font-size: 46px
    }

    .levels-copy h3 {
        color: var(--pink);
        margin-bottom: 0
    }
/* Sounds */
.sound-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px 90px;
    width: min(1300px,100%);
    margin: auto
}

.sound-group h2 {
    color: var(--pink);
    font-size: 21px;
    font-weight: 500
}

.sound-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.sound-card {
    width: 105px;
    height: 105px;
    background: linear-gradient(145deg,#fff,#eee);
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 14px 22px rgba(0,0,0,.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .22s
}

    .sound-card:first-child {
        background: linear-gradient(145deg,#fff,#f8d3d9);
        border-color: #e697a4
    }

    .sound-card:hover {
        transform: translateY(-5px) scale(1.03)
    }

.symbol {
    font-size: 40px;
    color: var(--pink);
    line-height: 1
}

.example {
    font-size: 12px;
    margin-top: 7px;
    text-decoration: underline
}
/* Videos */
.video-grid {
    grid-template-columns: repeat(3,1fr);
    width: min(1280px,100%);
    margin: auto;
    gap: 56px
}

.video-card {
    height: 590px;
    border: 2px solid var(--line);
    background: #fff;
    display: flex;
    align-items: end;
    padding: 40px;
    box-shadow: var(--shadow)
}

    .video-card .watch {
        width: 100%;
        border: 0;
        background: var(--pink);
        color: #fff;
        padding: 18px;
        cursor: pointer
    }
/* Linktree */
.link-page {
    background: #fbe5e8;
    min-height: 100vh;
    padding: 80px 0
}

.link-hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 38px;
    align-items: center
}

    .link-hero img {
        border-radius: 28px;
        box-shadow: var(--shadow)
    }

    .link-hero h1 {
        font-size: 49px;
        line-height: 1.35
    }

.big-links {
    display: grid;
    gap: 30px;
    margin: 60px auto;
    width: min(1280px,100%)
}

.big-link {
    background: linear-gradient(145deg,#fff,#f1f1f1);
    border: 1px solid #ccc;
    border-radius: 28px;
    padding: 28px;
    text-align: center;
    font-size: 32px;
    box-shadow: var(--shadow);
    transition: .25s
}

    .big-link:first-child {
        background: linear-gradient(145deg,#fff,#fbd9de);
        border-color: var(--line);
        color: var(--pink);
        font-weight: 700
    }

    .big-link:hover {
        transform: translateY(-5px)
    }

.social-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 45px
}

    .social-row a {
        width: 58px;
        height: 58px;
        background: #efb4bd;
        color: white;
        border-radius: 8px;
        display: grid;
        place-items: center;
        font-weight: 700
    }

@media(max-width:900px) {
    .container {
        width: min(100% - 28px,760px)
    }

    .navwrap {
        justify-content: space-between
    }

    .nav {
        position: absolute;
        top: 90px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        border-radius: 20px;
        padding: 24px;
        gap: 18px
    }

        .nav.open {
            display: flex
        }

    .menu-btn {
        display: block
    }

    .brand {
        padding: 8px 16px
    }

        .brand img {
            width: 120px
        }

    .hero-placeholder {
        height: 320px;
        margin: 50px auto
    }

    .home-hero {
        min-height: 850px
    }

    .home-copy {
        width: 100%;
        padding-top: 70px;
        text-align: center
    }

        .home-copy h1 {
            font-size: 38px
        }

    .hero-person {
        opacity: .35;
        right: -20%;
        width: 120%
    }

    .welcome-grid, .philosophy, .contact-grid, .link-hero {
        grid-template-columns: 1fr
    }

    .testimonials, .credentials, .pdf-grid, .video-grid, .sound-groups {
        grid-template-columns: 1fr
    }

    .service {
        grid-template-columns: 1fr
    }

        .service:nth-child(even) .service-image {
            order: 0
        }

    .service-image {
        min-height: 260px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .level-intro h1 {
        font-size: 40px
    }

    .accordion-grid {
        grid-template-columns: 1fr
    }

    .video-card {
        height: 430px
    }

    .link-hero {
        text-align: center
    }

        .link-hero img {
            max-width: 420px;
            margin: auto
        }
}

@media(max-width:560px) {
    .section {
        padding: 48px 0
    }

    .section-title h1, .section-title h2 {
        font-size: 31px
    }

    .home-copy h1 {
        font-size: 34px
    }

    .home-copy p {
        font-size: 15px
    }

    .home-hero {
        min-height: 740px
    }

    .welcome-grid {
        grid-template-columns: 1fr
    }

    .benefit-box {
        padding: 25px
    }

    .credentials {
        grid-template-columns: 1fr
    }

    .service-copy {
        padding: 28px
    }

    .form {
        grid-template-columns: 1fr
    }

        .form .full {
            grid-column: auto
        }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .hero-placeholder {
        height: 230px;
        border-radius: 24px
    }

    .level-intro {
        margin-top: 40px
    }

        .level-intro h1 {
            font-size: 34px
        }

    .levels-copy h2 {
        font-size: 36px
    }

    .sound-groups {
        gap: 50px
    }

    .sound-card {
        width: 86px;
        height: 86px
    }

    .symbol {
        font-size: 32px
    }

    .video-grid {
        gap: 28px
    }

    .video-card {
        height: 360px;
        padding: 24px
    }

    .big-link {
        font-size: 21px;
        padding: 22px
    }

    .link-hero h1 {
        font-size: 32px
    }
}

/* Interaction polish — preserves the PDF layouts */
html {
    scroll-behavior: smooth
}

.brand, .nav a, .btn, .watch, .pdf-card, .glass-card, .video-card, .sound-card, .big-link, .social-row a, .contact-photo, .hero-placeholder {
    transition: transform .28s ease,box-shadow .28s ease,background-color .28s ease,color .28s ease,border-color .28s ease,opacity .28s ease
}

    .brand:hover {
        transform: translateY(-2px) scale(1.02)
    }

    .nav a:hover {
        color: var(--pink);
        transform: translateY(-1px)
    }

    .btn:hover, .watch:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 28px rgba(204,55,71,.22)
    }

    .btn:active, .watch:active {
        transform: translateY(-1px) scale(.99)
    }

    .glass-card:hover, .video-card:hover, .pdf-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 22px 42px rgba(45,45,45,.16)
    }

    .sound-card:hover {
        transform: translateY(-5px) scale(1.035);
        box-shadow: 0 16px 30px rgba(45,45,45,.18)
    }

    .sound-card:active {
        transform: translateY(-1px) scale(.98)
    }

    .big-link:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 20px 38px rgba(88,61,65,.18);
        color: var(--pink)
    }

    .social-row a:hover {
        transform: translateY(-4px) rotate(2deg) scale(1.06)
    }

    .contact-photo:hover {
        transform: translateY(-5px)
    }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.2,.65,.25,1),transform .75s cubic-bezier(.2,.65,.25,1)
}

    .reveal.visible {
        opacity: 1;
        transform: none
    }

.cards .reveal:nth-child(2), .service-list .reveal:nth-child(2) {
    transition-delay: .08s
}

.cards .reveal:nth-child(3), .service-list .reveal:nth-child(3) {
    transition-delay: .16s
}

.cards .reveal:nth-child(4), .service-list .reveal:nth-child(4) {
    transition-delay: .24s
}

.cards .reveal:nth-child(5), .service-list .reveal:nth-child(5) {
    transition-delay: .32s
}

.cards .reveal:nth-child(6), .service-list .reveal:nth-child(6) {
    transition-delay: .4s
}

@media (prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}


/* More lively interactions while preserving every PDF layout */
.glass-card, .service, .pdf-card, .sound-card, .video-card, .credential, .testimonial, .acc, .field, .hero-placeholder {
    transition: transform .32s cubic-bezier(.2,.7,.2,1),box-shadow .32s ease,background .32s ease,border-color .32s ease,color .32s ease;
}
    /* The pink cards shown in the design are hover states */
    .pdf-card:first-child, .sound-card:first-child, .big-link:first-child {
        background: linear-gradient(145deg,#fff,#f1f1f1);
        border-color: #ddd;
        font-weight: inherit;
    }

    .pdf-card:hover, .sound-card:hover, .big-link:hover, .credential:hover, .testimonial:hover, .acc:hover, .service:hover, .video-card:hover {
        background: linear-gradient(145deg,#fff7f8,#ffdfe4);
        border-color: #ec9eaa;
        transform: translateY(-7px) scale(1.012);
        box-shadow: 0 24px 44px rgba(82,48,55,.18);
    }

        .service:hover .service-copy h3, .acc:hover .acc-btn {
            color: #c94e60
        }

.service-image img {
    transition: transform .6s cubic-bezier(.2,.7,.2,1),filter .4s ease
}

.service:hover .service-image img {
    transform: scale(1.035);
    filter: saturate(1.04)
}

.field:hover, .field:focus {
    transform: translateY(-2px);
    border-color: #d87887;
    box-shadow: 0 14px 28px rgba(100,66,72,.12);
    outline: none
}

.hero-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 45px rgba(205,104,120,.27)
}

.video-card {
    border-radius: 20px;
    overflow: hidden
}

    .video-card .watch {
        border-radius: 12px;
        transition: transform .25s ease,box-shadow .25s ease,filter .25s ease
    }

    .video-card:hover .watch {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(176,48,66,.22);
        filter: brightness(1.04)
    }

.btn, .watch {
    position: relative;
    overflow: hidden
}

    .btn:after, .watch:after {
        content: "";
        position: absolute;
        inset: -50% auto -50% -35%;
        width: 28%;
        transform: skewX(-20deg);
        background: linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);
        transition: left .55s ease
    }

    .btn:hover:after, .watch:hover:after {
        left: 115%
    }

.footer a {
    transition: color .22s ease,transform .22s ease
}

    .footer a:hover {
        color: var(--pink);
        transform: translateX(4px)
    }

/* Accurate tree artwork from the Figma export */
.tree-bg {
    isolation: isolate;
    overflow: visible
}

    .tree-bg:before {
        background: none
    }

    .tree-bg:after {
        left: 50%;
        bottom: -2%;
        width: min(92%,1450px);
        height: 88%;
        background: url('assets/tree-vector.svg') center bottom/contain no-repeat;
        opacity: .055;
        filter: none;
        pointer-events: none;
        z-index: -1;
    }
/* Keep hover movement visible instead of clipping at section/card edges */
.section, .container, .cards, .service-list, .pdf-grid, .sound-groups, .video-grid {
    overflow: visible
}

.glass-card, .credential, .testimonial, .pdf-card, .sound-card, .video-card, .service {
    will-change: transform
}
/* Pink is the interaction state shown in Figma */
.credential, .testimonial, .pdf-card, .sound-card, .video-card, .service, .acc {
    background: rgba(255,255,255,.9);
}

    .credential:hover, .testimonial:hover, .pdf-card:hover, .sound-card:hover, .video-card:hover, .service:hover, .acc:hover {
        background: linear-gradient(145deg,#fff8f9 0%,#ffe1e6 100%);
    }

/* Welcome Pod — based on WELCOME.pdf */
.welcome-pod {
    padding: 0 0 105px;
    position: relative;
    isolation: isolate
}

    .welcome-pod.tree-bg:after {
        width: min(1320px,96%);
        height: 92%;
        bottom: -30px;
        opacity: .095;
        background-position: center 42%;
        background-size: contain
    }

.welcome-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    width: min(1280px,100%);
    margin: 0 auto 112px
}

.welcome-panel {
    min-height: 300px;
    padding: 70px 26px 34px;
    background: rgba(255,255,255,.88);
    border: 1.4px solid #d7d7d7;
    border-radius: 22px;
    box-shadow: 0 24px 30px rgba(0,0,0,.15);
    transition: transform .3s ease,box-shadow .3s ease,background .3s ease,border-color .3s ease
}

    .welcome-panel-pink, .welcome-panel:hover {
        background: linear-gradient(135deg,#fff8f8 0%,#ffdadd 100%);
        border-color: #d96c7d
    }

    .welcome-panel:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 40px rgba(199,91,108,.22)
    }

    .welcome-panel h2 {
        margin: 0 0 20px;
        color: #cc6676;
        font-size: 23px;
        font-weight: 500
    }

.plain-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: #666;
    font-size: 15px
}

.audience-list {
    display: grid;
    gap: 17px
}

    .audience-list > div {
        display: grid;
        grid-template-columns: 18px 1fr;
        gap: 10px;
        align-items: start
    }

    .audience-list span {
        color: #d55f71;
        font-size: 30px;
        line-height: .8;
        transition: transform .25s ease
    }

    .audience-list > div:hover span {
        transform: translateX(5px)
    }

    .audience-list p {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.4
    }

    .audience-list strong {
        color: #555
    }

.welcome-faq {
    width: min(1280px,100%);
    margin: auto;
    display: grid;
    gap: 14px
}

.welcome-acc {
    border: 1px solid #ddd;
    border-radius: 20px;
    background: rgba(255,255,255,.91);
    box-shadow: 0 17px 25px rgba(0,0,0,.14);
    transition: transform .28s ease,box-shadow .28s ease,background .28s ease,border-color .28s ease;
    overflow: hidden
}

    .welcome-acc:hover {
        transform: translateY(-4px);
        box-shadow: 0 23px 32px rgba(0,0,0,.17);
        border-color: #dc8a97
    }

    .welcome-acc.open {
        background: linear-gradient(135deg,#fffafa,#ffd9dd);
        border-color: #d66c7b
    }

    .welcome-acc .acc-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 26px;
        background: transparent;
        color: #cc6676;
        font-size: 21px;
        font-weight: 400
    }

        .welcome-acc .acc-btn b {
            font-size: 30px;
            font-weight: 400;
            transition: transform .3s ease
        }

    .welcome-acc.open .acc-btn b {
        transform: rotate(90deg)
    }

    .welcome-acc .acc-content {
        color: #666;
        font-size: 14px;
        line-height: 1.75
    }

    .welcome-acc.open .acc-content {
        max-height: 240px;
        padding: 0 26px 25px
    }

    .welcome-acc .acc-content p {
        margin: 0;
        max-width: 900px
    }

@media(max-width:900px) {
    .welcome-overview {
        grid-template-columns: 1fr;
        margin-bottom: 70px
    }

    .welcome-panel {
        min-height: 0;
        padding: 38px 26px
    }

    .welcome-pod {
        padding-bottom: 70px
    }
}

@media(max-width:560px) {
    .welcome-panel h2 {
        font-size: 20px
    }

    .welcome-acc .acc-btn {
        padding: 19px 18px;
        font-size: 16px;
        text-align: left;
        gap: 12px
    }

    .welcome-acc.open .acc-content {
        padding: 0 18px 20px
    }

    .welcome-overview {
        gap: 16px
    }
}

/* Page hero videos */
.hero-video {
    width: min(1280px,calc(100% - 44px));
    height: 560px;
    border: 2px solid var(--line);
    border-radius: 36px;
    margin: 90px auto;
    background: #fff;
    box-shadow: 0 26px 34px rgba(205,104,120,.22);
    overflow: hidden;
    position: relative;
    transition: transform .28s ease,box-shadow .28s ease,border-color .28s ease
}

    .hero-video:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 45px rgba(205,104,120,.27);
        border-color: #d75f73
    }

    .hero-video video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        background: #fff;
        border-radius: 34px
    }

        .hero-video video:focus-visible {
            outline: 3px solid rgba(205,104,120,.45);
            outline-offset: -5px
        }

@media(max-width:900px) {
    .hero-video {
        height: 320px;
        margin: 50px auto;
        border-radius: 28px
    }

        .hero-video video {
            border-radius: 26px
        }
}

@media(max-width:560px) {
    .hero-video {
        height: 230px;
        border-radius: 24px
    }

        .hero-video video {
            border-radius: 22px
        }
}


.premium-title-card {
    position: relative;
    min-height: 260px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e9e4e6;
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(63, 46, 51, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

    .premium-title-card::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        top: -95px;
        right: -85px;
        border-radius: 50%;
        border: 34px solid rgba(210, 112, 127, 0.06);
        transition: transform 0.45s ease, border-color 0.35s ease;
    }

    .premium-title-card::after {
        content: "";
        position: absolute;
        left: 34px;
        right: 34px;
        bottom: 24px;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient( 90deg, transparent, rgba(198, 70, 89, 0.65), transparent );
        transform: scaleX(0);
        transition: transform 0.35s ease;
    }

    .premium-title-card span {
        position: relative;
        z-index: 2;
        max-width: 300px;
        color: #383033;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.28;
        letter-spacing: -0.025em;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .premium-title-card:hover {
        background: radial-gradient( circle at top right, rgba(255, 255, 255, 0.95), transparent 38% ), linear-gradient( 145deg, #fffdfd 0%, #fff0f2 48%, #f6cbd2 100% );
        transform: translateY(-10px) scale(1.015);
        border-color: rgba(198, 70, 89, 0.65);
        box-shadow: 0 30px 55px rgba(92, 44, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
    }

        .premium-title-card:hover::before {
            transform: rotate(15deg) scale(1.08);
            border-color: rgba(255, 255, 255, 0.28);
        }

        .premium-title-card:hover::after {
            transform: scaleX(1);
        }

        .premium-title-card:hover span {
            color: #bd4053;
            transform: translateY(-3px);
        }

@media (max-width: 700px) {
    .premium-title-card {
        min-height: 210px;
        padding: 28px;
    }

        .premium-title-card span {
            font-size: 19px;
        }
}

/* ==================================================
   MENU DAS PÁGINAS INTERNAS IGUAL AO DA LANDING PAGE
   ================================================== */

.topbar {
    padding: 42px 0 18px;
    position: relative;
    z-index: 20;
}

    /* Mesma largura do menu ajustado da Landing Page */
    .topbar .container.navwrap {
        width: min(1080px, calc(100% - 40px));
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    /* Pill da logo */
    .topbar .brand {
        width: 190px;
        height: 46px;
        min-height: 46px;
        flex-shrink: 0;
        padding: 8px 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border-radius: 999px;
        box-shadow: none;
        transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

        .topbar .brand img {
            width: auto;
            max-width: 100%;
            max-height: 28px;
            object-fit: contain;
        }

        .topbar .brand:hover {
            transform: translateY(-2px) scale(1.015);
            box-shadow: 0 12px 28px rgba(64, 36, 42, 0.14);
        }

    /* Pill principal do menu */
    .topbar .nav {
        width: auto;
        height: 46px;
        min-height: 46px;
        flex: 1;
        padding: 0 35px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 0;
        background: #ffffff;
        border-radius: 999px;
        box-shadow: none;
    }

        /* Links iguais aos da Landing */
        .topbar .nav a {
            position: relative;
            padding: 14px 17px;
            color: #282326;
            font-family: "Poppins", Arial, sans-serif;
            font-size: 12px;
            font-weight: 400;
            line-height: 1;
            letter-spacing: 0;
            transition: color 0.25s ease, transform 0.25s ease;
        }

            /* Linha inferior */
            .topbar .nav a::after {
                content: "";
                position: absolute;
                left: 18px;
                right: 18px;
                bottom: 8px;
                height: 2px;
                background: #df7180;
                border-radius: 999px;
                transform: scaleX(0);
                transform-origin: center;
                transition: transform 0.25s ease;
            }

            /* Hover e página atual */
            .topbar .nav a:hover,
            .topbar .nav a.active {
                color: #df7180;
                transform: translateY(-1px);
            }

                .topbar .nav a:hover::after,
                .topbar .nav a.active::after {
                    transform: scaleX(1);
                }

    /* Botão mobile */
    .topbar .menu-btn {
        display: none;
        width: 42px;
        height: 40px;
        padding: 0;
        border: 0;
        border-radius: 10px;
        color: #282326;
        background: #ffffff;
        font-size: 21px;
        cursor: pointer;
    }


/* TABLET */

@media (max-width: 900px) {
    .topbar .container.navwrap {
        width: min(100% - 30px, 760px);
        justify-content: space-between;
    }

    .topbar .brand {
        width: 165px;
        height: 40px;
        min-height: 40px;
        padding: 7px 20px;
    }

        .topbar .brand img {
            max-height: 25px;
        }

    .topbar .menu-btn {
        display: block;
    }

    .topbar .nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        min-height: auto;
        display: none;
        flex-direction: column;
        padding: 12px;
        gap: 0;
        border-radius: 18px;
        box-shadow: 0 20px 34px rgba(61, 42, 47, 0.16);
    }

        .topbar .nav.open {
            display: flex;
        }

        .topbar .nav a {
            width: 100%;
            padding: 13px;
            text-align: center;
        }

            .topbar .nav a::after {
                left: 42%;
                right: 42%;
                bottom: 7px;
            }
}


/* CELULAR */

@media (max-width: 560px) {
    .topbar {
        padding-top: 18px;
    }

        .topbar .container.navwrap {
            width: calc(100% - 30px);
        }

        .topbar .brand {
            width: 155px;
        }
}

/* COACHING — cards mais compactos, iguais ao Figma */

.service-list {
    display: grid;
    gap: 38px;
    width: min(1280px, calc(100% - 44px));
    margin-inline: auto;
}

.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    height: 310px;
    border-radius: 18px;
    overflow: hidden;
}

/* Todas as imagens com o mesmo tamanho */
.service-image {
    width: 100%;
    height: 310px;
    min-height: 310px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

/* Texto mais compacto */
.service-copy {
    height: 310px;
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .service-copy h3 {
        margin: 0 0 14px;
        font-size: 18px;
    }

    .service-copy ul {
        margin: 0;
        padding-left: 18px;
    }

    .service-copy li {
        margin: 8px 0;
        font-size: 12px;
        line-height: 1.45;
    }

/* Alternância de imagem e texto */
.service:nth-child(even) .service-image {
    order: 2;
}

.service:nth-child(even) .service-copy {
    order: 1;
}


/* Tablet */

@media (max-width: 900px) {
    .service-list {
        width: min(760px, 100%);
        gap: 28px;
    }

    .service {
        height: 270px;
    }

    .service-image,
    .service-copy {
        height: 270px;
        min-height: 270px;
    }

    .service-copy {
        padding: 28px;
    }

        .service-copy h3 {
            font-size: 17px;
        }

        .service-copy li {
            font-size: 11px;
        }
}


/* Celular */

@media (max-width: 620px) {
    .service {
        grid-template-columns: 1fr;
        height: auto;
    }

        .service:nth-child(even) .service-image,
        .service:nth-child(even) .service-copy {
            order: initial;
        }

    .service-image {
        height: 230px;
        min-height: 230px;
    }

    .service-copy {
        height: auto;
        min-height: 0;
        padding: 28px 24px;
    }
}

/* =====================================================
   LEVEL TEST — AJUSTADO PARA O LAYOUT DO FIGMA
   ===================================================== */

.level-intro {
    width: min(1120px, 100%);
    margin: 60px auto 46px;
    text-align: center;
}

    .level-intro .eyebrow {
        display: block;
        margin-bottom: 18px;
        color: #df7180;
        font-size: 14px;
        font-weight: 400;
    }

    .level-intro h1 {
        margin: 0 0 24px;
        color: #272326;
        font-size: clamp(40px, 4.6vw, 62px);
        font-weight: 700;
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .level-intro p {
        width: min(1040px, 100%);
        margin: 0 auto 22px;
        color: #302c2e;
        font-size: 17px;
        line-height: 1.55;
    }

    .level-intro .btn {
        min-width: 390px;
        padding: 15px 34px;
        font-size: 14px;
    }


/* GRID DOS ACORDEÕES */

.accordion-grid {
    width: min(1080px, 100%);
    margin: 45px auto 100px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    align-items: start;
    gap: 18px;
}


    /* CARDS */

    .accordion-grid .acc {
        width: 100%;
        min-height: 78px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #e3dfe1;
        border-radius: 17px;
        box-shadow: 0 18px 30px rgba(48, 37, 41, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

        .accordion-grid .acc:hover {
            transform: translateY(-4px);
            background: linear-gradient( 145deg, #fffafa 0%, #ffe2e6 100% );
            border-color: #e7a0aa;
            box-shadow: 0 24px 38px rgba(77, 47, 54, 0.16), inset 0 1px 0 rgba(255, 255, 255, 1);
        }


    /* BOTÃO DO ACORDEÃO */

    .accordion-grid .acc-btn {
        width: 100%;
        min-height: 78px;
        padding: 22px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border: 0;
        background: transparent;
        color: #d86c7c;
        font-family: "Poppins", Arial, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;
        text-align: left;
        cursor: pointer;
    }

        .accordion-grid .acc-btn span {
            float: none !important;
            color: #dc7080;
            font-size: 24px;
            font-weight: 300;
            line-height: 1;
            transition: transform 0.3s ease;
        }


    /* CONTEÚDO FECHADO */

    .accordion-grid .acc-content {
        max-height: 0;
        padding: 0 24px;
        overflow: hidden;
        color: #554f52;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

        .accordion-grid .acc-content p {
            margin: 0;
            font-size: 14px;
            line-height: 1.65;
        }


    /* CARD ABERTO */

    .accordion-grid .acc.open {
        min-height: 178px;
        background: rgba(255, 255, 255, 0.97);
        border-color: #e1dcde;
    }

        .accordion-grid .acc.open .acc-btn {
            padding-bottom: 14px;
        }

            .accordion-grid .acc.open .acc-btn span {
                transform: rotate(90deg);
            }

        .accordion-grid .acc.open .acc-content {
            max-height: 180px;
            padding: 20px 24px 28px;
        }


    /* ORDEM IGUAL AO FIGMA */

    .accordion-grid .acc:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .accordion-grid .acc:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .accordion-grid .acc:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    .accordion-grid .acc:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .accordion-grid .acc:nth-child(5) {
        grid-column: 1;
        grid-row: 3;
    }


/* SEÇÃO ENGLISH LEVELS */

.levels-copy {
    width: min(760px, 100%);
    margin: 70px 0 40px;
}

    .levels-copy h2 {
        margin: 0 0 18px;
        color: #272326;
        font-size: 42px;
        font-weight: 700;
        letter-spacing: -0.035em;
    }

    .levels-copy > p {
        color: #625b5e;
        font-size: 14px;
        line-height: 1.65;
    }

    .levels-copy h3 {
        margin: 20px 0 3px;
        color: #d96c7c;
        font-size: 16px;
        font-weight: 500;
    }

    .levels-copy .btn {
        margin-top: 18px;
        min-width: 370px;
    }


/* RESPONSIVO */

@media (max-width: 900px) {
    .level-intro {
        margin-top: 45px;
    }

        .level-intro p {
            font-size: 15px;
        }

    .accordion-grid {
        width: min(720px, 100%);
        grid-template-columns: 1fr;
        gap: 16px;
    }

        .accordion-grid .acc:nth-child(n) {
            grid-column: 1;
            grid-row: auto;
        }
}


@media (max-width: 560px) {
    .level-intro {
        margin: 35px auto 38px;
    }

        .level-intro h1 {
            font-size: 36px;
        }

        .level-intro p {
            font-size: 14px;
        }

        .level-intro .btn,
        .levels-copy .btn {
            width: 100%;
            min-width: 0;
            padding-inline: 20px;
        }

    .accordion-grid {
        margin-bottom: 70px;
    }

        .accordion-grid .acc-btn {
            min-height: 70px;
            padding: 19px 18px;
            font-size: 16px;
        }

        .accordion-grid .acc-content {
            padding-inline: 18px;
        }

        .accordion-grid .acc.open .acc-content {
            padding: 15px 18px 22px;
        }

    .levels-copy h2 {
        font-size: 34px;
    }
}

/* =====================================================
   COACHING — MESMA LARGURA DO LEARNING
   ===================================================== */

/* Container geral igual ao Learning */
body .site-shell > .topbar .container,
body .hero-video,
body .section > .container {
    width: min(1280px, calc(100% - 44px));
    margin-left: auto;
    margin-right: auto;
}


/* HEADER */

.topbar {
    padding: 34px 0 18px;
}

    .topbar .container.navwrap {
        width: min(1080px, calc(100% - 40px));
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .topbar .brand {
        width: 190px;
        height: 46px;
        min-height: 46px;
        flex-shrink: 0;
        padding: 8px 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 999px;
    }

        .topbar .brand img {
            width: auto;
            max-width: 100%;
            max-height: 28px;
        }

    .topbar .nav {
        width: auto;
        height: 46px;
        min-height: 46px;
        flex: 1;
        padding: 0 35px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 0;
        background: #fff;
        border-radius: 999px;
    }

        .topbar .nav a {
            padding: 14px 17px;
            font-size: 12px;
            font-weight: 400;
        }


/* VÍDEO — IGUAL AO LEARNING */

.hero-video {
    width: min(1280px, calc(100% - 44px)) !important;
    height: 560px !important;
    margin: 90px auto !important;
    border-radius: 36px;
}

    .hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 34px;
    }


/* CONTEÚDO DO COACHING */

.section > .container.service-list {
    width: min(1280px, calc(100% - 44px)) !important;
    max-width: none !important;
    margin-inline: auto;
    display: grid;
    gap: 38px;
}


/* Cards ocupando toda a largura */

.service {
    width: 100%;
    height: 310px;
    min-height: 310px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 18px;
}


/* Todas as imagens com o mesmo tamanho */

.service-image {
    width: 100%;
    height: 310px;
    min-height: 310px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }


/* Texto */

.service-copy {
    width: 100%;
    height: 310px;
    min-height: 310px;
    padding: 38px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .service-copy h3 {
        margin: 0 0 14px;
        font-size: 18px;
    }

    .service-copy ul {
        margin: 0;
        padding-left: 18px;
    }

    .service-copy li {
        margin: 8px 0;
        font-size: 12px;
        line-height: 1.45;
    }


/* Alternância imagem/texto */

.service:nth-child(even) .service-image {
    order: 2;
}

.service:nth-child(even) .service-copy {
    order: 1;
}


/* TABLET */

@media (max-width: 900px) {
    body .site-shell > .topbar .container,
    body .hero-video,
    body .section > .container {
        width: min(100% - 28px, 760px);
    }

    .topbar .container.navwrap {
        width: min(100% - 30px, 760px);
    }

    .hero-video {
        width: min(100% - 28px, 760px) !important;
        height: 320px !important;
        margin: 50px auto !important;
    }

    .section > .container.service-list {
        width: min(100% - 28px, 760px) !important;
        gap: 28px;
    }

    .service {
        height: 270px;
        min-height: 270px;
    }

    .service-image,
    .service-copy {
        height: 270px;
        min-height: 270px;
    }

    .service-copy {
        padding: 28px;
    }
}


/* CELULAR */

@media (max-width: 620px) {
    .hero-video {
        height: 230px !important;
    }

    .service {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
    }

        .service:nth-child(even) .service-image,
        .service:nth-child(even) .service-copy {
            order: initial;
        }

    .service-image {
        height: 230px;
        min-height: 230px;
    }

    .service-copy {
        height: auto;
        min-height: 0;
        padding: 28px 24px;
    }
}

/* =====================================================
   NAVBAR FINAL — PÁGINAS INTERNAS
   Mesmas dimensões da Landing Page
   ===================================================== */

.topbar {
    padding: 42px 0 18px;
    position: relative;
    z-index: 20;
}

    .topbar .container.navwrap {
        width: min(1080px, calc(100% - 40px));
        max-width: 1080px;
        margin-inline: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .topbar .brand {
        box-sizing: border-box;
        flex: 0 0 190px;
        width: 190px;
        min-width: 190px;
        max-width: 190px;
        height: 46px;
        min-height: 46px;
        max-height: 46px;
        padding: 8px 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 999px;
    }

        .topbar .brand img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 28px;
            object-fit: contain;
        }

    .topbar .nav {
        box-sizing: border-box;
        flex: 1 1 auto;
        min-width: 0;
        height: 46px;
        min-height: 46px;
        max-height: 46px;
        padding: 0 35px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 0;
        background: #fff;
        border-radius: 999px;
    }

        .topbar .nav a {
            height: 46px;
            padding: 0 17px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Poppins", Arial, sans-serif;
            font-size: 12px;
            font-weight: 400;
            line-height: 1;
            white-space: nowrap;
        }

@media (max-width: 900px) {
    .topbar .container.navwrap {
        width: calc(100% - 30px);
        max-width: 760px;
    }

    .topbar .brand {
        flex-basis: 165px;
        width: 165px;
        min-width: 165px;
        max-width: 165px;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
    }
}

/* =====================================================
   VIDEO POD — IGUAL AO LAYOUT DO FIGMA
   3 CARDS EM CIMA + 3 EMBAIXO
   ===================================================== */

.video-pod-carousel {
    position: relative;
    width: min(920px, 100%);
    margin-inline: auto;
    overflow: visible;
}


/* ÁREA DOS CARDS */

.video-pod-viewport {
    width: 100%;
    padding: 12px 10px 30px;
    margin: -12px -10px -30px;
    overflow: visible;
}


/* GRID COM 3 COLUNAS */

.video-pod-carousel .video-grid {
    width: 100% !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 72px 38px !important;
    overflow: visible !important;
}


/* CARD IGUAL AO FIGMA */

.video-pod-carousel .video-card {
    position: relative !important;
    width: 100% !important;
    height: 470px !important;
    min-height: 470px !important;
    margin: 0 !important;
    padding: 18px 16px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border: 1.5px solid #d96b7b !important;
    border-radius: 7px !important;
    box-shadow: 0 18px 28px rgba(60, 42, 47, 0.13) !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease !important;
}


    /* ROSA SOMENTE NO HOVER */

    .video-pod-carousel .video-card:hover {
        transform: translateY(-6px) !important;
        background: linear-gradient( 145deg, #ffffff 0%, #ffe4e8 100% ) !important;
        border-color: #d35e71 !important;
        box-shadow: 0 24px 38px rgba(75, 44, 52, 0.17) !important;
    }


    /* ESCONDE OS CARDS DAS OUTRAS PÁGINAS */

    .video-pod-carousel .video-card.video-hidden {
        display: none !important;
    }


/* VÍDEO VERTICAL NA PARTE SUPERIOR */

.video-pod-carousel .video-frame {
    position: relative !important;
    width: 100% !important;
    height: 315px !important;
    min-height: 315px !important;
    margin: 0 0 14px !important;
    overflow: hidden !important;
    background: #111 !important;
    border: 0 !important;
    border-radius: 7px !important;
    box-shadow: 0 10px 20px rgba(35, 25, 28, 0.15) !important;
}


    .video-pod-carousel .video-frame video {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: inherit !important;
    }


    /* REMOVE EFEITOS ANTIGOS */

    .video-pod-carousel .video-frame::before,
    .video-pod-carousel .video-frame::after,
    .video-pod-carousel .video-card::before,
    .video-pod-carousel .video-card::after {
        content: none !important;
    }


/* TÍTULO */

.video-pod-carousel .video-title {
    width: 100% !important;
    min-height: 48px !important;
    margin: 0 0 14px !important;
    padding: 0 4px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    color: #302c2e !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    text-align: center !important;
    text-shadow: none !important;
}


/* BOTÃO WATCH MORE */

.video-pod-carousel .watch {
    width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: auto 0 0 !important;
    padding: 0 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    background: #ce6677 !important;
    font-family: "Poppins", Arial, sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    box-shadow: none !important;
    transition: background 0.22s ease, transform 0.22s ease !important;
}


    .video-pod-carousel .watch:hover {
        transform: translateY(-2px) !important;
        background: #c65467 !important;
    }


    .video-pod-carousel .watch:active {
        transform: scale(0.98) !important;
    }


    .video-pod-carousel .watch::before,
    .video-pod-carousel .watch::after {
        content: none !important;
    }


/* =====================================================
   CONTROLES ENTRE AS DUAS FILEIRAS
   ===================================================== */

.video-pod-controls {
    position: absolute;
    left: 0;
    right: 0;
    top: 500px;
    z-index: 20;
    width: 100%;
    height: 40px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    pointer-events: none;
}


/* SETAS */

.video-arrow {
    width: 31px;
    height: 31px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #d46f7e;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    pointer-events: auto;
    transition: transform 0.22s ease, background 0.22s ease;
}


    .video-arrow:hover {
        transform: scale(1.08);
        background: #c95769;
    }


.video-prev {
    justify-self: start;
}


.video-next {
    justify-self: end;
}


/* QUADRADINHOS */

.video-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    pointer-events: auto;
}


    .video-dots button {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 1px;
        background: #8f8a8c;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;
    }


        .video-dots button:hover {
            transform: scale(1.25);
        }


        .video-dots button.active {
            background: #d46c7b;
        }


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {
    .video-pod-carousel {
        width: min(620px, 100%);
    }

        .video-pod-carousel .video-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            gap: 62px 28px !important;
        }

    .video-pod-controls {
        position: relative;
        top: auto;
        margin-top: 24px;
    }
}


/* =====================================================
   CELULAR
   ===================================================== */

@media (max-width: 580px) {
    .video-pod-carousel {
        width: min(310px, 100%);
    }

        .video-pod-carousel .video-grid {
            grid-template-columns: 1fr !important;
            gap: 28px !important;
        }

        .video-pod-carousel .video-card {
            height: 500px !important;
            min-height: 500px !important;
        }

        .video-pod-carousel .video-frame {
            height: 345px !important;
            min-height: 345px !important;
        }

    .video-pod-controls {
        position: relative;
        top: auto;
        margin-top: 22px;
    }
}

/* =====================================================
   CORREÇÃO FINAL DA NAVBAR MOBILE
   ===================================================== */

@media (max-width: 900px) {

    .topbar {
        padding: 18px 0 14px !important;
        overflow: visible !important;
    }

        .topbar .container.navwrap {
            position: relative !important;
            width: calc(100% - 28px) !important;
            max-width: 760px !important;
            min-height: 46px !important;
            margin-inline: auto !important;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            gap: 12px !important;
        }


        /* LOGO */

        .topbar .brand {
            flex: 0 0 165px !important;
            width: 165px !important;
            min-width: 165px !important;
            max-width: 165px !important;
            height: 42px !important;
            min-height: 42px !important;
            max-height: 42px !important;
            padding: 7px 18px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 999px !important;
        }

            .topbar .brand img {
                width: auto !important;
                height: auto !important;
                max-width: 100% !important;
                max-height: 25px !important;
                object-fit: contain !important;
            }


        /* BOTÃO HAMBÚRGUER */

        .topbar .menu-btn {
            position: relative !important;
            z-index: 1002 !important;
            display: grid !important;
            place-items: center !important;
            flex: 0 0 42px !important;
            width: 42px !important;
            height: 42px !important;
            padding: 0 !important;
            border: 0 !important;
            border-radius: 12px !important;
            color: #282326 !important;
            background: #ffffff !important;
            font-size: 21px !important;
            line-height: 1 !important;
            cursor: pointer !important;
        }


        /* MENU FECHADO */

        .topbar .nav {
            position: absolute !important;
            top: calc(100% + 12px) !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 1000 !important;
            width: 100% !important;
            min-width: 0 !important;
            height: auto !important;
            min-height: 0 !important;
            max-height: none !important;
            margin: 0 !important;
            padding: 10px !important;
            display: none !important;
            flex-direction: column !important;
            align-items: stretch !important;
            justify-content: flex-start !important;
            gap: 2px !important;
            overflow: visible !important;
            background: rgba(255, 255, 255, 0.98) !important;
            border: 1px solid rgba(223, 113, 128, 0.16) !important;
            border-radius: 18px !important;
            box-shadow: 0 20px 38px rgba(54, 38, 43, 0.17) !important;
        }


            /* MENU ABERTO */

            .topbar .nav.open {
                display: flex !important;
            }


            /* LINKS */

            .topbar .nav a {
                position: relative !important;
                width: 100% !important;
                height: auto !important;
                min-height: 42px !important;
                margin: 0 !important;
                padding: 12px 16px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                color: #282326 !important;
                font-family: "Poppins", Arial, sans-serif !important;
                font-size: 13px !important;
                font-weight: 400 !important;
                line-height: 1.2 !important;
                text-align: center !important;
                border-radius: 11px !important;
                white-space: normal !important;
            }

                .topbar .nav a:hover,
                .topbar .nav a.active {
                    color: #df7180 !important;
                    background: #fff2f4 !important;
                    transform: none !important;
                }


                /* REMOVE A LINHA DO DESKTOP NO MOBILE */

                .topbar .nav a::after {
                    display: none !important;
                    content: none !important;
                }
}


@media (max-width: 560px) {

    .topbar .container.navwrap {
        width: calc(100% - 24px) !important;
    }

    .topbar .brand {
        flex-basis: 155px !important;
        width: 155px !important;
        min-width: 155px !important;
        max-width: 155px !important;
    }
}