.hero-text  {
    margin-top: -25px !important;
}
.hero-text h1 {
      font-size: 3.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
        margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    color: #853b5e;
}

@media (max-width: 600px) {
    .hero-text  {
      margin-top: -20px !important;
    }
    .hero-text h1 {
      font-size: 2.2rem !important;
    }
    .hero-text h2 {
      font-size: 20px !important;
    }
}


/* ======================================================
   PADRÃO STARX: BOTÃO GENÉRICO DE ALTA CONVERSÃO
   ====================================================== */

:root {
    /* DEFAULT: Se tu esquecer de definir, ele fica cinza */
    --starx-btn-start: #a35374; 
    --starx-btn-end: #ce9cb1;
    --starx-btn-shadow: rgba(163, 83, 116, 0.35);
    --starx-btn-text: #ffffff;
}

/* A estrutura física (O Esqueleto) */
.btn-starx-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(263deg, var(--starx-btn-end) 16%, var(--starx-btn-start) 99%);
    color: var(--starx-btn-text) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    height: 62px;
    padding: 0 45px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px var(--starx-btn-shadow);
}

/* Efeito de Brilho (Shine) - Padrão para todos */
.btn-starx-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
    z-index: -1;
}

/* Hover Universal */
.btn-starx-base:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--starx-btn-shadow);
    filter: brightness(1.1); /* Dá um leve "up" na cor automaticamente */
}

.btn-starx-base:hover::before {
    left: 100%;
}

/* Responsivo Universal */
@media (max-width: 600px) {
    .btn-starx-base {
        height: 55px;
        padding: 0 30px;
        font-size: 15px;
        width: 100%;
    }
}



/* ESTILO ESPECÍFICO: JORDANA HELLER */
.btn-jordana {
    --starx-btn-start: #a35374; 
    --starx-btn-end: #ce9cb1;
    --starx-btn-shadow: rgba(163, 83, 116, 0.4);
}

/* Se amanhã entrar um cliente de Advocacia, ex: Dr. Silva */
.btn-dr-silva {
    --starx-btn-start: #002d5b; /* Azul Marinho */
    --starx-btn-end: #b8860b;   /* Dourado */
    --starx-btn-shadow: rgba(0, 45, 91, 0.4);
}


/* ESTILO DE DESTAQUE: NUDE PREMIUM */
.btn-accent-gold {
    --starx-btn-start: #c1a68d; 
    --starx-btn-end: #d9c5b2;
    --starx-btn-shadow: rgba(193, 166, 141, 0.4);
    --starx-btn-text: #a35374; /* Ou #2E4036 para um contraste mais "boutique" */
}





/* ======================================================
   EFEITO SOFTING: DRA. JORDANA HELLER (FUNDO HERÓI)
   ====================================================== */

/* O container das formas - permanece idêntico à Youon */
.hero-shapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Mantemos para não atrapalhar o clique */
    overflow: hidden;
}

/* Base das bolhas (Blobs) */
.shape-blob {
    position: absolute;
    filter: blur(40px); /* Suavidade máxima */
    z-index: 0;
    opacity: 0.5; /* Ajustei a opacidade para não brigar com o texto da Jordana */
}

/* Bolha 1: Rosa Queimado Predominante no canto superior direito */
.shape-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 750px;
    /* Novo Degradê: #a35374 (Rosa Queimado Predominante) em RGBA */
    background: linear-gradient(to right, rgb(163 83 116 / 83%) 0%, rgba(206, 156, 177, 0.1) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlobJordana 12s ease-in-out infinite alternate;
}

/* Bolha 2: Rosa Suave no canto inferior esquerdo */
.shape-2 {
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    /* Novo Degradê: #ce9cb1 (Rosa Suave Secundária) e a Predominante misturadas */
    background: linear-gradient(to right, rgb(249 248 246), rgb(252 244 227));
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    animation: morphBlobJordana 15s ease-in-out infinite alternate-reverse;
}

/* Padrão de Pontinhos (Dots) - Adaptado para o Rosa Predominante */
.shape-dots {
    position: absolute;
    top: 20%;
    left: 45%;
    width: 150px;
    height: 150px;
    /* radial-gradient(#a35374 2px, transparent 2px) */
    background-image: radial-gradient(rgb(163 83 116 / 59%) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2; /* Aumentei um pouco a opacidade pra aparecer contra o off-white */
    animation: floatDots 10s ease-in-out infinite alternate;
}

/* ======================================================
   AS ANIMAÇÕES DE RESPIRAÇÃO (KEYFRAMES)
   ====================================================== */

@keyframes morphBlobJordana {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    100% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        transform: translate(-30px, 30px) rotate(15deg) scale(1.03);
    }
}

/* floatDots permanece idêntico */
@keyframes floatDots {
    0% { transform: translateY(0); }
    100% { transform: translateY(30px); }
}

@media (max-width: 992px) {
    .shape-1 { width: 300px; height: 300px; top: 0; right: -20%; }
    .shape-2 { width: 300px; height: 300px; bottom: 0; left: -20%; }
    .shape-dots { display: none; }
}

@media (max-width: 600px) {
    /* Ajusta as bolhas para não criarem scroll horizontal */
    .shape-blob {
        filter: blur(30px);
        opacity: 0.35;
    }
}


/* ======================================================
   SEGUNDA DOBRA - ESPECIALIDADES DRA. JORDANA (STARX)
   ====================================================== */
.section-recursos {
    position: relative;
    z-index: 1;
    background-color: #f9f8f6; /* Fundo off-white para passar paz */
}

.section-title {
    font-weight: 800;
    color: #a35374; /* Rosa Predominante */
}

.section-title span {
    color: #ce9cb1; /* Rosa Suave */
}

.card-recurso-jordana {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

/* Tracinho de cor no topo do card - Usando a cor secundária */
.card-recurso-jordana::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #ce9cb1;
    transition: width 0.4s ease;
}

.card-recurso-jordana:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(163, 83, 116, 0.12); /* Sombra na cor da marca */
    border-color: transparent;
}

.card-recurso-jordana:hover::before {
    width: 100%;
}

.card-recurso-jordana .icon-recurso {
    width: 60px;
    height: 60px;
    background-color: rgba(163, 83, 116, 0.1); /* Rosa predominante clarinho */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.card-recurso-jordana:hover .icon-recurso {
    background-color: #a35374; /* Rosa predominante no hover */
    border-radius: 50%;
}

.card-recurso-jordana .icon-recurso i {
    font-size: 30px;
    color: #a35374;
    transition: all 0.3s ease;
}

.card-recurso-jordana:hover .icon-recurso i {
    color: #ffffff;
    transform: scale(1.1);
}

.card-recurso-jordana h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #a35374; /* Título no Rosa Predominante */
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-recurso-jordana p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5e6c72;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .card-recurso-jordana {
        padding: 30px 20px;
    }
}


/* ======================================================
   JORNADA STARX: CARDS DE ACOMPANHAMENTO (JORDANA)
   ====================================================== */
.section-jornada-cards {
    padding: 100px 0;
    background-color: #f9f8f6; /* Fundo off-white relaxante */
}

.jornada-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #a35374;
    margin-bottom: 20px;
}

.jornada-header span {
    color: #ce9cb1;
}

/* CARDS COM UPGRADE VISUAL (SOMBRAS DIFUSAS) */
.step-card-jordana {
    background: #ffffff;
    padding: 50px 30px;
    text-align: center;
    border: none !important;
    border-radius: 24px !important; /* Mais arredondado = Moderno */
    box-shadow: 0 10px 40px rgba(163, 83, 116, 0.09) !important; /* Sombra na cor da marca */
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

.step-card-jordana:hover {
    box-shadow: 0 20px 50px rgba(163, 83, 116, 0.15) !important;
    transform: translateY(-8px);
}

/* CÍRCULO DO NÚMERO */
.step-number-pill {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ce9cb1;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(206, 156, 177, 0.4);
    border: 4px solid #f0d0dd;
}

/* ÍCONES DOS PASSOS */
.step-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(163, 83, 116, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #a35374;
}

.step-icon-box i {
    font-size: 35px;
}

.step-card-jordana h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #a35374;
    margin-bottom: 15px;
}

.step-card-jordana p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* AJUSTE RESPONSIVO */
@media (max-width: 600px) {
    .jornada-header h2 { font-size: 2rem; }
    .step-card-jordana { padding: 40px 20px; }
}


/* ======================================================
   SEÇÃO SOBRE: AUTORIDADE DRA. JORDANA HELLER
   ====================================================== */
.section-sobre {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.sobre-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Moldura da Foto com detalhe StarX */
.sobre-img-container {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.sobre-img-container img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(163, 83, 116, 0.15);
    z-index: 2;
    position: relative;
}

/* Detalhe decorativo atrás da foto */
.sobre-img-container::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid #ce9cb1;
    border-left: 5px solid #ce9cb1;
    z-index: 1;
    border-radius: 20px 0 0 0;
}

.sobre-content {
    flex: 1.2;
}

.sobre-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #a35374;
    margin-bottom: 25px;
    line-height: 1.2;
}

.sobre-content p {
    font-size: 1.1rem;
    color: #5e6c72;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Badge de Registro Profissional (CRP) */
.crp-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(163, 83, 116, 0.05);
    border-radius: 50px;
    color: #a35374;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsivo para celular */
@media (max-width: 992px) {
    .sobre-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .sobre-img-container {
        margin: 0 auto;
    }

    .sobre-content h2 {
        font-size: 2rem;
    }

    .sobre-content p {
        text-align: center;
    }
}

/* ======================================================
   TARJA DE SEPARAÇÃO E CTA HARD (STARX STYLE)
   ====================================================== */
.section-tarja-cta {
    padding: 80px 0; /* Padding vertical generoso para separação */
    background-color: #ffffff; /* Fundo branco puro conforme pedido */
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-tarja-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #a35374; /* Rosa Predominante */
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-tarja-cta p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;
    color: #5e6c72; /* Cinza suave */
    max-width: 750px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsivo para celular */
@media (max-width: 600px) {
    .section-tarja-cta {
        padding: 60px 15px; /* Menos padding no mobile */
    }

    .section-tarja-cta h2 {
        font-size: 2rem;
    }

    .section-tarja-cta p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

strong {
    color: #a35374;
}



/* ======================================================
   SEÇÃO FAQ: DRA. JORDANA HELLER (STARX STYLE)
   ====================================================== */
.section-faq {
    padding: 100px 0;
    background-color: #f9f8f6; /* Fundo off-white relaxante */
}

.faq-header {
    margin-bottom: 60px;
}

.faq-header h2 {
    font-weight: 800;
    color: #a35374; /* Rosa Predominante */
}

.faq-header span {
    color: #ce9cb1; /* Rosa Suave */
}

/* Customização do Collapsible (Materialize/Estilo StarX) */
.faq-collapsible {
    border: none !important;
    box-shadow: none !important;
}

.faq-collapsible li {
    background: #ffffff;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 4px 15px rgba(163, 83, 116, 0.05) !important;
    overflow: hidden;
    border: 1px solid #f0f0f0 !important;
}

.faq-collapsible .collapsible-header {
    padding: 20px 25px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #a35374 !important;
    border: none !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-collapsible .collapsible-header:hover {
    background-color: rgba(163, 83, 116, 0.02);
}

.faq-collapsible .collapsible-header i.arrow-icon {
    margin-right: 15px;
    color: #ce9cb1;
    transition: transform 0.3s ease;
}

.faq-collapsible li.active .collapsible-header i.arrow-icon {
    transform: rotate(180deg);
}

.faq-collapsible .collapsible-body {
    border: none !important;
    padding: 0 25px 25px 65px !important; /* Recuo para alinhar com o texto do header */
    color: #5e6c72;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-collapsible .collapsible-body strong {
    color: #a35374;
}

/* Responsivo Mobile */
@media (max-width: 600px) {
    .faq-collapsible .collapsible-header {
        padding: 15px 15px !important;
        font-size: 1rem !important;
    }
    .faq-collapsible .collapsible-body {
        padding: 0 15px 20px 15px !important;
    }
}

.jordana_bg {
  background: #a35274;
}







/* Floating WhatsApp Button */
        .btn_whats_flutuante {
          font-family: 'Outfit', sans-serif;
          font-size: 13px;
          width: 110px;
          line-height: 15px;
          font-weight: 400;
          text-align: left;
          text-transform: capitalize;
          padding-top: 10px;
  
          z-index: 1000;
          cursor: pointer;
          transition: all 0.3s ease;
          animation: pulse 2s infinite;
        }
  

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

        .floating-whatsapp svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .btn-floating:hover {
            background-color: #a35374;
        }    
        .btn:focus, .btn-large:focus, .btn-small:focus, .btn-floating:focus {
            background-color: #c1a68d;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(211, 37, 138, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(211, 37, 127, 0.7);
            }
        }


.white-text {
  color: #ffffff !important;
}



/* Container da Foto Hero */
.photo-hero-wrapper {
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-hero-img {
    width: 100%;
    max-width: 600px; /* Evita que a foto fique gigante em telas grandes */
    border-radius: 20px; /* Bordas suaves combinam com Psicanálise */
    box-shadow: 0 20px 40px rgba(154, 67, 94, 0.15); /* Sombra suave no tom Rosa da marca */
    border: 5px solid #f9f8f6; /* Moldura branca para destacar do fundo */
    transition: transform 0.4s ease;
}

.photo-hero-img:hover {
    transform: translateY(-5px); /* Efeito leve ao passar o mouse */
}

/* Badge flutuante (opcional, dá um ar moderno) */
.badge-atendimento {
    position: absolute;
    bottom: 20px;
    right: 10%;
    background: #f9f8f6;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--jordana-pink);
    box-shadow: 0 4px 15px rgb(133 59 94 / 78%);
    font-family: 'Playfair Display', sans-serif;
}

/* Removemos os estilos antigos do botão de som que não serão mais usados */
#btnToggleSound, .video-hero-wrapper video {
    display: none;
}



/* Estilos Essenciais do Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-width: 90vw;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hidden-chat {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.hidden-notification {
    display: none !important;
}


/* ============================================================
   ESTILOS CUSTOMIZADOS PARA O MODAL DA JORDANA HELLER
   (Correção Definitiva: Títulos H3 e Tabela)
   ============================================================ */

/* 1. Ajuste GERAL do modal pra dar mais respiro lateral */
#modal1.modal {
    max-width: 90% !important;
    border-radius: 12px !important;
    top: 5% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

#modal1 .modal-content {
    padding: 30px 20px !important;
}

/* 2. A CORREÇÃO DOS TÍTULOS (Pegando h2 e h3 agora!) */
#modal1 .modal-content h2,
#modal1 .modal-content h3 {
    font-size: 1.4rem !important; /* Tamanho elegante para celular */
    line-height: 1.3 !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    word-wrap: break-word !important;
    font-weight: 600 !important;
    color: #b57a8d !important;
}

/* 3. Textos gerais */
#modal1 p, #modal1 li {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

#modal1 .title-1 p {
    text-align: center !important;
}

/* 4. Botão "X" elegante */
#modal1 .modal-close {
    color: #b57a8d !important;
    background: transparent !important;
    box-shadow: none !important;
    top: 10px !important;
    right: 10px !important;
    font-size: 1.5rem !important;
    padding: 5px !important;
}

/* 5. CORREÇÃO DA TABELA PARA CELULAR (Scroll Horizontal Suave) */
/* Em vez de amassar a tabela, criamos uma barra de rolagem só pra ela */
@media only screen and (max-width: 600px) {
    #modal1 table {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important; /* Rolagem lisa no iPhone */
        white-space: nowrap !important; /* Impede que o texto esmague */
        border: 1px solid #f0eaec !important;
        border-radius: 8px !important;
    }
    
    #modal1 th, #modal1 td {
        white-space: normal !important; /* Deixa o texto quebrar DENTRO da célula */
        min-width: 200px !important; /* Garante que a coluna tenha um tamanho mínimo */
        padding: 12px !important;
    }
}


.card-video-jordana {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-video-jordana:hover {
    transform: translateY(-5px);
}

.video-cover-wrapper {
    position: relative;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 4rem; /* Tamanho do ícone */
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.video-label {
    display: block;
    padding: 15px;
    background: #fff;
    color: #4a4a4a;
    font-weight: 600;
    text-align: center;
}

/* Container Principal do Card */
.video-card-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.video-card-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Thumbnail e Wrapper do Botão */
.video-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
}

.video-thumbnail img {
    transition: transform 0.5s ease;
    display: block;
}

.video-card-container:hover .video-thumbnail img {
    transform: scale(1.05); /* Zoom suave na imagem ao passar o mouse */
}

/* O Botão Play Estilo Youon */
.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2); /* Escurece levemente a imagem */
    transition: background 0.3s ease;
}

.video-card-container:hover .play-button-wrapper {
    background: rgba(0, 0, 0, 0.4); /* Escurece mais no hover */
}

.play-button-circle {
    width: 70px;
    height: 70px;
    background: #c5a36b; /* Use o tom de dourado da Jordana aqui */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efeito elástico */
    box-shadow: 0 0 0 0 rgba(197, 163, 107, 0.4);
}

.play-button-circle i {
    font-size: 40px;
    margin-left: 5px; /* Ajuste para centralizar visualmente o triângulo */
}

/* Animação no Hover igual da Youon */
.video-card-container:hover .play-button-circle {
    transform: scale(1.15);
    background: #b38f55; /* Um dourado levemente mais escuro */
    box-shadow: 0 0 0 15px rgba(197, 163, 107, 0); /* Efeito de expansão/pulso */
}

/* Legenda do Vídeo */
.video-info {
    padding: 20px;
    text-align: center;
}

.video-info span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}



/* Ajuste para vídeos verticais no Fancybox */
.fancybox__content {
    max-width: 90vw; /* Garante que não ultrapasse a largura da tela */
}

/* Força o container do vídeo a respeitar o formato vertical */
[data-fancybox][data-width="1080"] .fancybox__html5video,
[data-fancybox][data-width="1080"] .fancybox__iframe {
    aspect-ratio: 9 / 16 !important;
    width: auto !important;
    height: 80vh !important; /* Limita a altura para não sumir da tela no desktop */
    max-width: 450px; /* No desktop, ele fica com cara de "tela de celular" */
}

@media (max-width: 600px) {
    [data-fancybox][data-width="1080"] .fancybox__html5video,
    [data-fancybox][data-width="1080"] .fancybox__iframe {
        width: 90% !important;
        height: auto !important;
        max-width: none;
    }
}

