* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: Red Hat Display, sans-serif; 
    -webkit-font-smoothing: antialiased;
}

.mt-50{
    margin-top: 50px;
}
.mt-100{
    margin-top: 100px;
}
.mt-120{
    margin-top: 120px;
}

/* Aplicando nos títulos */
h1, h2, .titulo-banner {
    font-family: 'Red Hat Display', serif;
    color: #235856;
    text-wrap: balance;
}
body{
    background-color: #eef1f1;
}
/* Aplicando no texto e menu */
body, p, a {
    font-family: 'Red Hat Display', sans-serif;
    text-wrap: pretty;
}

/* 1. HEADER (Camada Superior) */
.main-header {
    position: absolute;
    top: 100px;
    left: 12%;
    width: auto;
    z-index: 100;
}

.main-header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 12%;
    background-color: #235856;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.nav-links { 
    display: flex; 
    list-style: none; 
    align-items: center; 
}

.nav-links li { 
    margin-right: 55px;
}
.nav-links li a {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: 1px;
    color: white; text-decoration: none;
}

.mobile-menu-btn {
    display: none; /* ESCONDE NO DESKTOP */
}

.header-mini-logo {
    margin-left: -20px;
}

.header-mini-logo img {
    max-width: 33px;
    display: block;
}

/* 2. HERO (O Contentor do Vídeo) */
.hero {
    position: relative;
    width: 100%;
    height: 810px;
    display: flex;
    align-items: center; 
    justify-content: center;
    overflow: hidden;
    padding-top: 60px; 
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: transform;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* 3. CONTEÚDO (Texto e Logo Grande) */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-left: 12%; /* margem padrão */
}

.hero-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* padding-top: 280px; */
}

.hero-text {
    max-width: 695px;
    margin-bottom: 40px;
}

.hero-text h1 {
    color: white;
    font-size: 3.7rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 800px;
    font-weight: 800;
}

.hero-logo-box {
    width: auto;
    text-align: left;
}

.hero-logo-box img {
    width: 380px;
    height: auto;
}

/* 4. Secção Quem Somos */
.about-section {
    padding: 100px 12%;
    background-color: #e0e6e6;
}

.about-section h2 {
    font-size: 3.2rem;
    color: #1f4442;
    font-weight: 900;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #4ea8a8;
    margin: 15px 0 40px 0;
}

.about-section p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
    text-align: justify;
}

/* 5 - Produtos */
.section-produtos {
    padding: 100px 0;
    background-color: #e0e6e6;
    overflow-x: hidden;
    width: 100%;
}

.container-titulo {
    padding-left: 12%;
    margin-bottom: 50px;    
}

.container-titulo h2{
    font-size: 3.2rem;
    color: #1f4442;
    font-weight: 900;
}

.products-grid {
    display: flex;
    width: 100%;
    align-items: stretch; /* Alinhado ao topo */
    justify-content: space-between;
}

.bloco-esquerdo {
    flex: 0 0 48%;
    padding-left: 12%;
    padding-right: 4%;
}

/* 5 - Galeria de Produtos */
.bloco-direito {
    flex: 0 0 52%; 
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    margin: 0;
    padding: 0;
}

.slide {
    flex: 0 0 100%; 
    min-width: 100%;
    max-width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.slide.active {
    display: block;
}

/* Estilo das Setas de Navegação 0e0f11  0e0d0f6e */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #0e0f11;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn { 
    left: 15%; 
}

.next-btn { 
    right: 15%; 
}

@media (max-width: 768px) {
    .prev-btn, .next-btn {
        width: 35px;
        height: 35px;
    }
}

/* Efeito ao passar o mouse */
.prev-btn:hover, .next-btn:hover {
    background-color: #0e0d0f6e; /* Verde mais claro no hover */
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.titulo-principal h3 {
    font-family: 'Red Hat Display', serif;
    font-weight: 900;
    font-size: 2.3rem;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #235856;
    margin-bottom: 15px;
}
.sub-titulo h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1!important;
    color: #469792;
    margin-bottom: 10px;
}
.product-image img { max-height: 250px; margin-bottom: 30px; }
.product-content p {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #1f4442;
}

.product-list ul {
    list-style: none; /* Remove as bolinhas */
    padding: 0;
    margin: 20px 0;
}

.product-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 300;
}

.product-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #235856;
    border-radius: 50%;
}

.product-detail-grid {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: auto !important;
    padding-top: 30px;
}

.detail-content-left {
    flex: 2;
}

.detail-image-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.detail-image-right img {
    max-width: 180px;
    height: auto;
}

.detail-image-perineo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.detail-image-perineo img {
    max-width: 175px;
    height: auto;
}

/* Ajuste para o texto final não colar na lista */
.product-footer-text {
    margin-top: 15px;
}

.bloco-spray {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    height: 100%;
    padding-bottom: 20px;
}

.bloco-spray .product-content {
    flex-grow: 1;
}

/* Garante que o grid de detalhes (Lado A e B) fique sempre na base */
.bloco-spray .product-detail-grid {
    margin-top: 1px;
}


/* 6 - Rodapé/Footer  */
.main-footer {
    background-color: #235856;
    padding: 50px 0 30px;
    color: #ffffff;
    font-family: 'Red Hat Display', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Simulação da Row do Bootstrap */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

/* Linha de baixo com margem superior */
.footer-bottom-row {
    margin-top: 30px;
    align-items: center;
}

/* Coluna do Logo (Aprox. col-3) */
.footer-col-logo, .footer-col-social {
    flex: 0 0 30%;
    max-width: 30%;
}

/* Coluna do Menu e Copy (Aprox. col-9) */
.footer-col-menu, .footer-col-copy {
    flex: 0 0 60%;
    max-width: 70%;
}

/* Estilos Internos */
.footer-col-logo img {
    max-width: 65%;
}

.footer-col-menu ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: -15px;
}

.footer-col-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}

/* Social e Copy */
.footer-col-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.footer-col-social span {
    font-size: 1.15rem;
    opacity: 3.6;
    white-space: nowrap;
    color: #469792;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 22px;
}

.footer-col-copy p {
    font-size: 1.20rem;
    opacity: 0.6;
    text-align: center; /* Centralizado em relação à coluna do menu */
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-col-logo, .footer-col-menu, .footer-col-social, .footer-col-copy {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 20px;
    }
    .footer-col-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom-row {
        gap: 20px;
    }
    /* 1. Faz o container das redes sociais empilhar os itens */
    .footer-col-social, 
    .footer-social-box { 
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        margin-left: 1px;
    }

    /* 2. Garante que o texto ocupe a linha toda e não tenha margens laterais */
    .footer-col-social span,
    .footer-social-box span {
        width: 100%;
        text-align: center;
        display: block;
        margin-bottom: 5px;
    }

    /* 3. Centraliza os ícones abaixo do texto */
    .social-icons {
        justify-content: center;
        width: 100%;
        display: flex;
    }
}

/* --- Estilização do Botão Cursos --- */
.product-btn-container {
    display: flex;
    justify-content: left;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

.btn-inscreva {
    /* Cores */
    background-color: #5cc0b9;
    color: #1f4442;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

/* --- Efeito de Hover --- */
.btn-inscreva:hover {
    background-color: #235856;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slider-wrapper.video-mode {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Ícone de play para o video-mode */
.slider-wrapper.video-mode .play-overlay {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    transition: all 0.3s ease;
}

/* Efeito apenas para este bloco */
.slider-wrapper.video-mode:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    filter: brightness(1.2);
}

/* Garante que a imagem de fundo ocupe o espaço correto */
.slider-wrapper.video-mode img.slide {
    display: block;
    width: 100%;
    height: auto;
}

.play-overlay img {
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.3));
}

/* Modal para video */

/* Fundo do Modal (Escuro e Transparente) */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

/* Caixa do Conteúdo */
.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

/* Botão Fechar */
.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Container para manter a proporção do vídeo (16:9) */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Atendimento Profissional */
/* Ajustes na Seção para alinhamento à esquerda */
#canal-profissional {
    text-align: left; /* Garante que tudo comece na esquerda */
    padding-bottom: 80px; /* Espaço antes do footer */
}

#canal-profissional .underline {
    width: 60px;
    height: 3px;
    background-color: #55A8A1;
    margin: 15px 0 25px; /* Margem zero na direita para alinhar à esquerda */
}

#canal-profissional p {
    max-width: 850px;
    margin-left: 0;
    margin-bottom: 40px;
}

/* Container do Selo + WhatsApp */
.contato-profissional-wrap {
    display: flex;
    align-items: center; /* Alinha verticalmente selo e texto */
    gap: 25px;           /* Espaço entre o selo e o texto */
    margin-top: 30px;
}

.selo-atendimento img {
    width: 160px; /* Tamanho proporcional ao layout */
    height: auto;
}

.texto-contato span {
    display: block;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 800;
    font-size: 2.2rem; /* Tamanho maior conforme a imagem */
    color: #235856;
    margin-bottom: 5px;
    line-height: 1;
}

.texto-contato a {
    display: flex;
    align-items: center; /* Alinha o ícone com o centro do texto */
    gap: 12px;
    font-size: 1.8rem;
    color: #235856;
    text-decoration: none;
    font-weight: 500;
}

/* Controla o tamanho do ícone do Whats */
.img-whats {
    width: 32px;
    height: auto;
    display: inline-block;
}

.texto-contato a strong {
    font-weight: 900;
}

/* Efeito básico ao passar o mouse */
.texto-contato a:hover {
    opacity: 0.8;
}

/* Ajuste Responsivo */
@media (max-width: 768px) {
    /* 1. Garante que o wrapper empilhe e centralize os blocos */
    .contato-profissional-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    /* 2. Ajuste do tamanho do selo no celular */
    .selo-atendimento img {
        width: 120px;
        height: auto;
    }

    /* 3. Corrige a baderna do texto */
    .texto-contato {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* 4. Ajuste do Fone/WhatsApp */
    .texto-contato span {
        font-size: 1.6rem;
        margin-bottom: 8px;
        white-space: nowrap;
    }

    /* 5. Ajuste do Link com o ícone e número */
    .texto-contato a {
        display: flex;
        justify-content: center; /* Centraliza o conjunto ícone+número */
        align-items: center;
        gap: 8px;
        font-size: 1.3rem;
    }

    /* 6. Corrige o tamanho do ícone do Whats */
    .img-whats {
        width: 24px;
        height: auto;
    }
    #canal-profissional {
        text-align: center;
    }
    #canal-profissional .underline {
        margin: 15px auto 25px;
    }
    .texto-contato a {
        justify-content: center;
    }
}

/* --- BLOCO MOBILE --- */
@media (max-width: 992px) {
    
    p {
        text-align: left; /* Alinhamento à esquerda */
    }

    /* 1. Reset do Header: Centraliza e limpa o topo */
    .main-header {
        top: 2px !important;
        left: 0 !important;
        width: 100% !important;
        padding: 18px 6% !important;
    }

    /* 2. O Menu Sanduíche (Fundo Verde) */
    .nav-links {
        display: none; /* Esconde por padrão */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 70vh;
        background-color: #235856fa;
        z-index: 999;
        justify-content: center;
        align-items: center;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-links.active {
        display: flex; /* Abre ao clicar */
    }

    /* 3. Botão Hamburguer: Garante que ele apareça e seja clicável */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        z-index: 1000; /* Fica acima da cortina verde */
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        width: 30px;
        height: 3px;
        background: white;
        display: block;
    }

    /* 4. Links Internos do Menu */
    .nav-links li {
        margin: 9px 0 !important;
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .nav-links li a {
        font-size: 1.3rem !important;
        color: white !important;
    }

    /* 5. Centralização do Ícone no Menu */
    .header-mini-logo {
        margin-left: 0 !important;
        margin-top: 20px !important;
    }

    /* 6. Ajuste do Banner (Hero) para não cobrir o menu */
    .hero-text h1 {
        font-size: 2.5rem !important;
        margin-top: 60px !important;
    }

    .hero {
        height: 556px !important;
    }

    .hero-logo-box {
        text-align: center;
        width: 100%;
    }

    .hero-logo-box img {
        width: 260px !important;
    }

    .hero-content {
        padding-left: 7%;
    }

    /* 7. Empilhamento da Grid de Produtos */
    .products-grid {
        flex-direction: column !important;
        max-height: none !important;
    }

    .bloco-esquerdo, .bloco-direito {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 20px 8% !important;
    }

    .slide {
        height: 400px !important; /* Trava a altura da imagem no mobile */
    }

    .product-detail-grid {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .product-image img {
        max-height: 160px;
    }

    .product-list ul {
        display: inline-block;
        text-align: left;
        width: 100%;
        padding-left: 0;
    }

    .product-list li {
        text-align: left !important; /* Força o alinhamento à esquerda no mobile */
        display: block;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    /* Ajuste para que o marcador (o círculo verde) fique alinhado corretamente */
    .product-list li::before {
        left: 0;
        top: 6px; /* Ajuste fino dependendo do tamanho da fonte no mobile */
    }

    /* 8. Sections */ 
    .about-section {
        padding: 50px 12%;
    }

    .about-section p {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .about-section h2 {
        font-size: 2.2rem;
    }

    .section-produtos {
        padding: 10px 0;
    }

    .mt-100 {
        margin-top: 10px;
    }

    .mt-120 {
        margin-top: 40px;
    }
    .footer-nav{
        display: none;
    }

}

/* Efeitos */
/* Definição da animação */
@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(15px); /* Movimento bem curto para ser elegante */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicando com suavidade no Bloco de Texto */
.hero-brand-block {
    animation: reveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-logo-box img {
    animation: reveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
    opacity: 0;
}