/* Base */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* Evita zoom por duplo toque no mobile (Safari/Chrome) */
    touch-action: manipulation;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: "Geist", sans-serif;
    background: #09090F;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

/* Adia layout/pintura das dobras distantes sem esconder conteúdo ao aproximar. */
main > section:not(:first-child), body > section:not(.dobra-1) {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

/* Vídeos em loop */
video.vy-loop-video,
video.influent-video,
video.d9f2-video,
.hero-bg-video,
.video-hero-bg {
    pointer-events: auto;
}

video.vy-loop-video:not([controls]),
video.influent-video:not([controls]),
video.d9f2-video:not([controls]) {
    object-fit: cover;
}

/* Esconde overlay nativo de play do iOS Safari */
video.vy-loop-video::-webkit-media-controls,
video.vy-loop-video::-webkit-media-controls-enclosure,
video.vy-loop-video::-webkit-media-controls-panel,
video.vy-loop-video::-webkit-media-controls-start-playback-button,
video.vy-loop-video::-webkit-media-controls-play-button,
video.vy-loop-video::-webkit-media-controls-overlay-play-button,
video.influent-video::-webkit-media-controls-start-playback-button,
video.d9f2-video::-webkit-media-controls-start-playback-button,
.hero-bg-video::-webkit-media-controls-start-playback-button,
.video-hero-bg::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Menu fixo */
:root {
    --site-nav-h: 68px;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    width: 100%;
    max-width: 100vw;
    overflow: visible;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
    background: rgba(9, 9, 15, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-nav-bar {
    position: relative;
    z-index: 9992;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    padding: 12px max(16px, env(safe-area-inset-right)) 12px max(16px, env(safe-area-inset-left));
    min-height: var(--site-nav-h);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.site-nav-logo {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
    line-height: 0;
}

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

.site-nav-links {
    display: none;
    align-items: center;
    gap: clamp(16px, 2.2vw, 28px);
    flex: 1;
    justify-content: center;
    padding: 0 12px;
}

.site-nav-links a {
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #949495;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav-links a:hover {
    color: #b8b8b9;
}

.site-nav-actions {
    display: none;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-nav-actions .container-botao {
    transform: scale(0.92);
    transform-origin: center right;
}

.site-nav-actions .botao .btn-cta {
    padding: 12px 22px !important;
    font-size: 14px !important;
}

.site-nav-login {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: "Geist", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #949495;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}
.site-nav-login svg {
    flex-shrink: 0;
    color: inherit;
}

.site-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.site-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.site-nav-toggle-bar {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.25s ease;
    transform-origin: center;
}

.site-nav.is-open .site-nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-nav.is-open .site-nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-nav.is-open .site-nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.site-nav-backdrop {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-nav-h);
    bottom: 0;
    z-index: 9988;
    background: rgba(5, 5, 10, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
    pointer-events: none;
}

body.site-nav-menu-open .site-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--site-nav-h);
    bottom: 0;
    z-index: 9989;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 12px max(16px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(12, 12, 18, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transform: translate3d(0, -6px, 0);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s ease;
    pointer-events: none;
}

body.site-nav-menu-open .site-nav-drawer {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.site-nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 0 16px;
}

.site-nav-drawer-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #949495;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav-drawer-links a:hover {
    color: #b8b8b9;
}

.site-nav-drawer-links a::after {
    content: "›";
    color: #949495;
    font-size: 18px;
}

.site-nav-drawer-links a:hover::after {
    color: #b8b8b9;
}

.site-nav-drawer-cta {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 8px;
}

.site-nav-drawer-cta .container-botao {
    width: auto;
    justify-content: center;
}

.site-nav-drawer-cta .botao {
    width: auto;
}

/* Drawer mobile: sobrescreve o CTA global (.botao .btn-cta) */
.site-nav-drawer-cta .botao .btn-cta {
    font-family: "Qurova", sans-serif;
    width: auto;
    text-align: center;
    padding: 8px 20px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 50px !important;
    min-height: 50px;
    line-height: 1 !important;
    font-size: 11px !important;
    box-sizing: border-box;
}

.site-nav-drawer-cta .botao .btn-cta .btn-cta-label {
    font-family: "Qurova", sans-serif;
    font-size: 14px !important;
    padding-top: 0 !important;
    line-height: 1 !important;
}

.site-nav-drawer-cta .site-nav-login {
    justify-content: center;
    width: auto;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #949495;
    font-size: 12px;
    line-height: 1.1;
    gap: 4px;
    justify-self: center;
    white-space: nowrap;
}

.site-nav-drawer-cta .site-nav-login:hover {
    background: transparent;
}

.site-nav-drawer-cta .site-nav-login svg {
    width: 14px;
    height: 14px;
}

@media (min-width: 1025px) {
    .site-nav-links,
    .site-nav-actions {
        display: flex;
    }

    .site-nav-toggle {
        display: none;
    }

    .site-nav-backdrop,
    .site-nav-drawer {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

@media (max-width: 1024px) {
    .site-nav.is-open {
        background: rgba(9, 9, 15, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    body.site-nav-menu-open {
        overflow: hidden;
    }
}

#inicio,
#dobra2,
#dobra3,
#dobra4,
#dobra5,
#dobra6,
#dobra7,
#dobra8,
#dobra11,
#dobra13,
#dobra14,
#suporte {
    scroll-margin-top: calc(var(--site-nav-h) + 12px);
}


/* Botão CTA — fundo bg-cta.webp + brilho animado */
.container-botao {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    z-index: 1;
}

.botao {
    position: relative;
    display: inline-block;
    line-height: 0;
    border-radius: 5px;
    z-index: 3;
    overflow: visible;
    transition: transform 0.35s ease;
}

.botao .btn-cta {
    position: relative;
    display: block;
    border-radius: 5% / 100% !important;
    border: 1px solid #ff1d94;
    z-index: 1;
    line-height: 1.2;
    margin: 0 !important;
    padding: 20px 40px !important;
    color: #fff !important;
    text-align: center;
    text-wrap: balance;
    overflow: hidden;
    transition: transform 0.35s ease, filter 0.35s ease;
    text-decoration: none;
    font-family: "Qurova", sans-serif;
    font-size: 24px !important;
    font-weight: 700;
    letter-spacing: 0.02em;
    height: auto;
    box-sizing: border-box;
    background: linear-gradient(180deg, #ff2a9a 0%, #d4147a 52%, #b81068 100%);
}

.botao .btn-cta .btn-cta-label {
    position: relative;
    display: inline-block;
    padding-top: 2px;
    z-index: 9;
    font-family: "Qurova", sans-serif;
}

.botao .btn-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/public/assets/img/bg-cta.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 1;
    border-radius: inherit;
}

.botao:hover {
    transform: scale(1.02);
}

.botao .btn-cta:hover {
    filter: brightness(1.08) saturate(1.05);
}

@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .botao .btn-cta::before {
        content: "";
        position: absolute;
        width: 50px;
        height: 110%;
        top: 0;
        left: -100px;
        transform: skewX(-20deg);
        animation: cta-shine 2s linear infinite;
        mix-blend-mode: plus-lighter;
        filter: blur(5px);
        pointer-events: none;
        background: rgb(255, 123, 192);
        z-index: 2;
        overflow: hidden;
    }
}

@keyframes cta-shine {
    0% {
        opacity: 0;
        left: 0%;
    }
    25% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
        left: 10%;
    }
    75% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        left: 80%;
    }
}

/* Dobra 1 (Hero) */
.dobra-1 {
    position: relative;
    padding: 0 0 30px;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: blur(44px);
    transform: scale(1.08);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
    

}

.hero-bg-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9, 9, 15, 0.08), rgba(9, 9, 15, 0.35));
}

/* Ícones Hero Decorativos */
.hero-icon-1 {
    position: absolute;
    top: 450px;
    left: calc(50% - 540px);
    z-index: 5;
    pointer-events: none;
    transform: rotate(-20deg);
    animation: floatIcon1 3s ease-in-out infinite;
}

.hero-icon-2 {
    position: absolute;
    top: 220px;
    right: calc(50% - 540px);
    z-index: 5;
    pointer-events: none;
    transform: rotate(20deg);
    animation: floatIcon2 3s ease-in-out infinite;
}

@keyframes floatIcon1 {
    0%, 100% {
        transform: rotate(-20deg) translateY(0px);
    }
    50% {
        transform: rotate(-20deg) translateY(-20px);
    }
}

@keyframes floatIcon2 {
    0%, 100% {
        transform: rotate(20deg) translateY(0px);
    }
    50% {
        transform: rotate(20deg) translateY(-20px);
    }
}

.hero-icon-1 img,
.hero-icon-2 img {
    width: 80px;
    height: 80px;
    display: block;
    filter: drop-shadow(0 0 31.68px rgba(51, 116, 255, 1));
}

/* Video Hero */
.video-hero {
    position: relative;
    width: 1000px;
    height: 520px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    mask: linear-gradient(to bottom, #000 0%, #000 40%, transparent 80%);
    z-index: 3;
    margin-top: 140px;
    background: rgba(4, 10, 27, 0.55);
}

.video-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    mask: linear-gradient(to bottom, #000 0%, #000 40%, transparent 80%);
    padding-bottom: 4px;
    opacity: 0.8;
    pointer-events: none;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    pointer-events: none;
}

.video-hero-content {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    pointer-events: none;
}

.video-hero-play-btn {
    width: 80px;
    height: 80px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    z-index: 3;
    transition: transform 0.25s ease;
    background: transparent;
    border: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.video-hero-play-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 11;
    pointer-events: none;
}

.video-hero-play-btn:hover {
    transform: scale(1.1);
    transition: 0.3s linear;
}

.video-hero-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(51, 116, 255, 0.45);
    box-shadow: 0 0 24px rgba(51, 116, 255, 0.65);
    pointer-events: none;
    z-index: 10;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .video-hero-play-btn::before {
        animation: pulse 2s infinite;
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: safe center;
    z-index: 10000;
    padding: max(16px, env(safe-area-inset-top, 0px)) 80px max(32px, env(safe-area-inset-bottom, 0px)) 80px;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.video-popup-overlay.show {
    display: flex;
}

.video-popup-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
    border-radius: 12px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.video-popup-media {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10003;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-popup-close svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.video-loading {
    position: relative;
    width: 100%;
    padding: 56.25% 0 0;
    background: #000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Video Popup Title and Button */
.video-popup-info {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.video-popup-title {
    font-family: "Geist", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0;
    max-width: 450px;
    text-wrap: balance;
}

.video-popup-cta {
    display: flex;
    justify-content: flex-end;
}

.video-popup-cta .botao {
    overflow: visible;
}

.video-popup-cta .btn-cta {
    padding: 20px 3rem !important;
    height: auto;
    font-size: 15px;
    z-index: 3 !important;
}

#popupVideo {
    max-width: 100%;
    width: 100%;
}

@media (max-width: 768px) {
    /* Coluna: conteúdo no meio da tela (vertical + horizontal) */
    .video-popup-overlay {
        flex-direction: column;
        align-items: center;
        justify-content: safe center;
        min-height: 100%;
        min-height: 100dvh;
        padding-top: max(12px, env(safe-area-inset-top, 0px));
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
        padding-left: max(14px, env(safe-area-inset-left, 0px));
        padding-right: max(14px, env(safe-area-inset-right, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .video-popup-content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        gap: 16px;
        align-items: stretch;
    }

    .video-popup-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .video-popup-close svg {
        width: 18px;
        height: 18px;
    }

    .video-loading {
        max-width: 100%;
        margin: 0 auto;
    }

    #popupVideo {
        max-width: 100%;
    }

    .video-popup-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        padding: 0 4px;
        text-align: center;
    }

    .video-popup-title {
        font-size: 17px;
        line-height: 1.35;
        text-align: center;
        max-width: 100%;
        letter-spacing: 0.02em;
    }

    .video-popup-cta {
        width: 100%;
        justify-content: center;
    }

    .video-popup-cta .btn-cta {
        padding: 12px 1.25rem !important;
        font-size: 18px !important;
        width: 100%;
        max-width: 280px;
    }
}

/* Members Section */
.members-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Geist", sans-serif;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin: -220px 0 0px;
    justify-content: center;
    position: relative;
    z-index: 4;
}

.members-photos {
    display: flex;
    align-items: center;
    position: relative;
}

.members-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-left: -10px;
}

.members-photo:first-child {
    margin-left: 0;
}

.members-photo:nth-child(1) {
    background-image: url('/public/assets/img/membro-1.webp');
    z-index: 5;
}

.members-photo:nth-child(2) {
    background-image: url('/public/assets/img/membro-2.webp');
    z-index: 4;
}

.members-photo:nth-child(3) {
    background-image: url('/public/assets/img/membro-3.webp');
    z-index: 3;
}

.members-photo:nth-child(4) {
    background-image: url('/public/assets/img/membro-4a.webp');
    z-index: 2;
}

.members-photo:nth-child(5) {
    background-image: url('/public/assets/img/membro-5.webp');
    z-index: 1;
}

.members-photo.active {
    transform: scale(1.1);
    z-index: 10 !important;
    filter: none !important;
    opacity: 1 !important;
}

.members-photos.hovering .members-photo:not(.active) {
    filter: grayscale(100%) blur(2px);
    opacity: 0.6;
}

.members-rating {
    color: #fff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stars {
    display: flex;
}

.stars-svg {
    height: 12px;
    width: auto;
}

.rating-text {
    font-size: 14px;
    line-height: 1.2;
    font-family: "Geist", sans-serif;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.rating-number {
    font-weight: 700;
}

/* Hero Title */
.hero-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: -2px;
    text-align: center;
    margin: 0 auto 40px;
    padding-top: 10px;
    font-family: "Geist", sans-serif;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background: linear-gradient(272deg,rgb(200, 220, 255) -20.24%,
    rgb(245, 249, 255) 53.39%,rgb(200, 220, 255) 127.03%) text;
    background-clip: text;
    color: transparent;
    text-wrap: balance;
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1000px;
    align-items: center;
    justify-content: center;
}

/* Hero CTA Button */
.hero-cta {
    display: flex;
    justify-content: center;
    margin: 0;
    position: relative;
    z-index: 4;
}

.hero-cta .botao {
    overflow: visible;
}

.hero-cta .btn-cta {
    padding: 20px 40px !important;
    height: auto;
    font-size: 20px;
    z-index: 3 !important;
}

/* Hero — países */
.hero-countries {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    padding: 0 16px 8px;
    position: relative;
    z-index: 4;
}

.hero-countries-flags {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.hero-flag {
    display: block;
    width: 22px;
    height: 16px;
    line-height: 0;
}

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

.hero-countries-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.hero-countries-text {
    margin: 0;
    padding: 0;
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.62);
    white-space: nowrap;
}

.hero-countries-text b {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}


/* Notebook / laptop: vídeo e título um pouco menores; ícones alinhados ao viewport */
@media only screen and (min-width: 768px) and (max-width: 1500px) {
    :root {
        --site-nav-h: 62px;
    }

    .site-nav-bar {
        max-width: 940px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .site-nav-logo img {
        height: 26px;
    }

    .site-nav-links {
        gap: clamp(12px, 1.6vw, 22px);
    }

    .site-nav-links a {
        font-size: 13px;
    }

    .site-nav-actions .botao .btn-cta {
        padding: 10px 18px !important;
        font-size: 13px !important;
    }

    .site-nav-login {
        font-size: 12px;
    }

    .video-hero {
        width: 940px;
        height: auto;
        aspect-ratio: 1000 / 520;
        margin-top: 130px;
    }


    .video-hero-play-btn,
    .video-hero-play-btn::before {
        width: 68px;
        height: 68px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1.4px;
        margin: 0 auto 28px;
        padding-top: 6px;
        max-width: min(940px, 92vw);
    }

    .hero-cta .btn-cta {
        padding: 16px 32px !important;
        font-size: 22px !important;
    }

    .hero-countries {
        margin-top: 22px;
        gap: 10px;
    }

    .hero-flag {
        width: 20px;
        height: 14px;
    }

    .hero-countries-text {
        font-size: 13px;
    }

    .hero-icon-1 {
        top: 420px;
        left: calc(50% - 470px);
    }

    .hero-icon-2 {
        top: 210px;
        right:  calc(50% - 480px);
    }

    .hero-icon-1 img,
    .hero-icon-2 img {
        width: 64px;
        height: 64px;
    }
}

@media only screen and (max-width: 767px) {
    .dobra-1 {
        margin: 0 auto !important;
        width: 100% !important;
        min-height: 100vh;
        height: auto;
        padding-bottom: 0px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-icon-1,
    .hero-icon-2 {
        display: none;
    }

    .video-hero {
        width: 95%;
        height: 310px;
        margin-top: 0px;
        border-radius: 10px;
    }

    .video-hero-content {
        top: 80px;
    }

    .video-hero-play-btn,
    .video-hero-play-btn::before {
        width: 56px;
        height: 56px;
    }

    .members-container {
        width: 90%;
        max-width: 340px;
        margin: -150px auto 0;
        gap: 8px;
        justify-content: center;
    }

    .members-photo {
        width: 30px;
        height: 30px;
        border-width: 1.5px;
        margin-left: -8px;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.24);
    }

    .stars-svg {
        height: 10px;
    }

    .rating-text {
        font-size: 12px;
        line-height: 1.15;
    }

    .hero-title {
        width: 90%;
        margin: 18px auto 22px;
        padding-top: 0;
        font-size: 24px;
        line-height: 1.25;
        letter-spacing: -0.8px;
    }

    .hero-cta {
        width: 94%;
        max-width: 360px;
    }

    .hero-cta .container-botao,
    .hero-cta .botao {
        width: 100%;
    }

    .hero-cta .btn-cta {
        width: 100%;
        padding: 14px 12px !important;
        font-size: clamp(16px, 4.8vw, 19px) !important;
        line-height: 1.2;
        border-radius: 5% / 100% !important;
    }

    .hero-cta .btn-cta::after {
        border-radius: inherit;
    }

    .video-hero-play-btn::before {
        background: rgba(51, 116, 255, 0.35);
        box-shadow: 0 0 18px rgba(51, 116, 255, 0.5);
    }

    .hero-countries {
        width: 94%;
        max-width: 360px;
        margin-top: 14px;
        gap: clamp(4px, 1.4vw, 8px);
        padding: 0 2px;
        box-sizing: border-box;
        justify-content: center;
    }

    .hero-flag {
        width: clamp(13px, 3.8vw, 17px);
        height: clamp(9px, 2.7vw, 12px);
    }

    .hero-countries-flags {
        gap: clamp(3px, 1vw, 5px);
    }

    .hero-countries-divider {
        height: 12px;
    }

    .hero-countries-text {
        font-size: clamp(10px, 3vw, 12px);
        white-space: nowrap;
        text-align: center;
        letter-spacing: -0.01em;
    }
}
