/* =================== HEADER E FOOTER ================================================================================================== */
:root {
    --cor-primaria: rgb(34, 34, 34);
    --cor-secundaria: white;
    --cor-hover: #2980b9;
    --branco: #ffffff;
    --texto-escuro: #333;
    --fundo-claro: rgb(218, 218, 218);;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body, main {
    font-family: 'Lato', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--texto-escuro);
    background-color: rgb(218, 218, 218);
    justify-content: center;
    justify-items: center;
    text-align: center;
    width: 100vw;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Header Aprimorado */
.header-transparent,
.header-solid {
    transition: all 0.3s ease;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: 90px;
}

.header-transparent {
background-color: rgba(0, 0, 0, 0.6);
}

.header-solid {
background-color: rgba(0, 0, 0, 0.6);
}

.logo img {
    padding-top: 5px;
    max-height: 100px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navegação */
.menu-transparent ul,
.menu-solid ul {
    display: flex;
    list-style: none;
    align-items: center;
    opacity: 1;
}

.menu-transparent ul li a,
.menu-solid ul li a {
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    color: #f5f5f5;
    opacity: 1;
    font-size: 1.3rem;
}

.header-transparent ul li a {
    color: #f5f5f5;
    opacity: 1;
}

.header-solid ul li a {
    color: #f5f5f5;
    opacity: 1;
}

/* Efeito de sublinhado */
.menu-transparent ul li a::after,
.menu-solid ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--cor-secundaria);
    transition: width 0.3s ease;
        opacity: 1;
}

.menu-transparent ul li a:hover::after,
.menu-solid ul li a:hover::after {
    width: 100%;
        opacity: 1;
}

/* Botão de Contato */
.btn-contato {
    background-color: var(--cor-secundaria);
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--cor-secundaria);
}

.btn-contato:hover {
    background-color: transparent;
    color: var(--cor-secundaria);
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0,0,0,1);
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    cursor: pointer;
}

.hamburger-menu {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger-menu span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--branco);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-menu span:nth-child(1) { top: 0; }
.hamburger-menu span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-menu span:nth-child(3) { bottom: 0; }




.footer {
    background-color: var(--cor-primaria);
    color: var(--branco);
    padding: 80px 5% 30px;
    width: 100%;
    overflow: hidden;
}

.footer-container {
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-left: 80px;
}

.footer-logo img {
    max-width: 400px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contato h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--branco);
    text-align: start;
}

.footer-links ul {
    list-style: none;
    padding: 0;
        text-align: start;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--branco);
}

.footer-especialistas {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-especialista {
    display: flex;
    flex-direction: column;
}

.footer-especialista strong {
    margin-bottom: 5px;
    color: var(--branco);
    text-align: start;
}

.footer-especialista a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-especialista a i {
    margin-right: 10px;
}

.footer-especialista a:hover {
    color: var(--branco);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--branco);
    font-size: 3rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--cor-secundaria);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--branco);
}

@media screen and (max-width: 1024px) {
    .footer {
        padding: 40px 15px 20px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas iguais */
        gap: 30px;
    }

    .footer-logo {
        grid-column: 1 / span 2; /* Logo ocupa as duas colunas */
        align-items: start;
        justify-self: start;
        margin-left: 0px;
        margin-bottom: 15px;
    }

    .footer-logo-texto-p{
        font-size: 1rem;
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .footer-links{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 25px !important;
    }

    .footer-contato{
        padding-right: 25px !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links h4,
    .footer-contato h4 {
        text-align: start;
        font-size: 1.1rem;
    }

    .footer-links ul {
        text-align: start;
        padding: 0;
    }

    .footer-social {
        grid-column: 1 / span 2; /* Social ocupa as duas colunas */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}






/* Media Query para Menu Mobile */
@media screen and (max-width: 1024px) {
    /* Esconde o menu normal */
    .menu-solid {
        display: none;
    }

    /* Mostra o botão hamburger */
    .menu-mobile {
        display: block;
    }

 /* Esconde o menu normal */
    .menu-solid {
        display: none;
    }

    /* Mostra o botão hamburger */
    .menu-mobile {
        display: block;
    }

    /* Menu mobile vertical */
    .menu-mobile-active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,0.95);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-mobile-active ul {
        list-style: none;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column; /* Torna o menu vertical */
        gap: 30px; /* Espaçamento entre os itens */
    }

    .menu-mobile-active ul li {
        margin: 10px 0;
        width: 100%; /* Ocupa toda a largura */
    }

    .menu-mobile-active ul li a {
        color: white;
        text-decoration: none;
        font-size: 1.5rem;
        transition: color 0.3s ease;
        display: block;
        padding: 10px;
        width: 100%;
    }

    .menu-mobile-active ul li a:hover {
        color: var(--cor-secundaria);
        background-color: rgba(255,255,255,0.1);
    }

    /* Animação do Hamburger */
    .hamburger-menu {
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .hamburger-menu span {
        position: absolute;
        width: 100%;
        height: 3px;
        background-color: white;
        left: 0;
        transition: all 0.3s ease;
    }

    .hamburger-menu span:nth-child(1) {
        top: 0;
    }

    .hamburger-menu span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-menu span:nth-child(3) {
        bottom: 0;
    }

    /* Estado ativo do hamburger */
    .hamburger-menu.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    .logo img {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.footer-logo{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .footer-logo img{
        width: 70%;
        justify-self: center;
        align-self: center;
    }

}

/* =================== HERO ================================================================================================== */


.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    width: 97%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 1.5s ease;
    filter: brightness(0.7);
    z-index: 1;
}


.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide.zoom-in {
    animation: zoomIn 10s linear forwards;
}

.hero-slide.zoom-out {
    animation: zoomOut 10s linear forwards;
    opacity: 0;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

/* Efeito de transição entre slides */
.hero-slide.active {
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero-slide.prev {
    transform: scale(0.9);
}

.hero-slide.next {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
    text-align: center;
    color: var(--branco);
    max-width: 900px;
    padding: 0 20px;
}

.hero-text-container {
    padding: 40px;
    border-radius: 15px;
    transform: translateY(-20px);
    opacity: 0;
    animation: fadeInUp 1.5s forwards;
    width: 1500px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-top: 10vw;
    font-size: 50px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px 40px;
}

.hero-subtitle {
    font-size: 1.7rem;
    margin-bottom: 4vw;
    line-height: 1.6;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px 40px;
}

.btn-agendar {
    display: inline-block;
    background-color: var(--fundo-claro);
    color: var(--cor-primaria);
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-top: 50px;
}

.btn-agendar:hover {
    background-color: var(--cor-primaria);
    color: var(--fundo-claro);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

@media screen and (max-width: 1024px) {
    .hero-section {
        height: 100vh;
        width: 100%;
        border-radius: 0; 
        margin: 0; 
        overflow: hidden; /* Adiciona para evitar rolagem horizontal */
    }

    .hero-content {
        max-width: 100%; 
        padding: 0 15px; 
        box-sizing: border-box; /* Garante que padding não aumente a largura */
        width: 100%;
    }

    .hero-text-container {
        padding: 20px; 
        width: 100vw; 
        max-width: 100%; /* Limita largura máxima */
        box-sizing: border-box; /* Garante que padding não aumente a largura */
        transform: translateY(-10px);
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 15vw;
        margin-bottom: 20px;
        padding: 15px 20px;
        line-height: 1.4;
        width: 100%; /* Ocupa toda a largura */
        box-sizing: border-box; /* Garante que padding não aumente a largura */
        word-wrap: break-word; /* Quebra palavras longas */
        overflow-wrap: break-word; /* Alternativa para word-wrap */
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2vw;
        padding: 15px 20px;
        line-height: 1.4;
        width: 100%; /* Ocupa toda a largura */
        box-sizing: border-box; /* Garante que padding não aumente a largura */
        word-wrap: break-word; /* Quebra palavras longas */
        overflow-wrap: break-word; /* Alternativa para word-wrap */
    }

    .btn-agendar {
        padding: 15px 30px;
        font-size: 1rem;
        margin-top: 30vw;
        max-width: 100%; /* Garante que não ultrapasse a largura */
        width: auto; /* Permite ajuste automático */
    }

}



/* =================== SOBRE ================================================================================================== */


.sobre-section {
    border-radius: 40px;
    width: 97%;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sobre-container {
    background-color: var(--cor-primaria);
    display: flex;
    justify-content: center;
    justify-self: center;
    align-self: center;
    align-items: center;
    gap: 50px;
    border-radius: 40px;
}

.sobre-imagem {
    flex: 1;
    overflow: hidden;
    height: 900px;
}

.sobre-imagem img {
    width: 100%;
    object-fit: cover;
    opacity: 0.3;
    max-width: 2000px;
    height: 900px;
}

.sobre-texto {
    flex: 1;
}


.sobre-titulo {
    font-size: 2.6rem;
    color: var(--branco);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: start;
}

.sobre-subtitulo {
    font-size: 2.2rem;
    color: var(--branco);
    margin-top: 70px;
    margin-bottom: 15px;
    text-align: start;
}

.sobre-paragrafo {
    color: var(--cor-secundaria);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: start;
    max-width: 90%;
}

.lideres-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 5vw;
    padding-top: 5vw;
}

.lider-card {
    width: 450px;
    text-align: center;
    background-color: var(--branco);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.lider-card:hover {
    transform: translateY(-10px);
}

.lider-imagem {
    height: 350px;
    overflow: hidden;
}

.lider-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lider-info {
    padding: 20px;
}

.lider-info h3 {
    color: var(--cor-primaria);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.lider-info p {
    color: black;
    line-height: 1.5;
    font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
    .sobre-section {
        background-color: transparent;
        width: 100%;
        border-radius: 35px;
        padding: 30px 15px;
    }

    .sobre-container {
        flex-direction: column;
        align-items: stretch;
    }

    .sobre-imagem {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        z-index: 1;
        opacity: 0.3; /* Mantém a imagem mais transparente */
        display: none;
    }

    .sobre-imagem img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }

    .sobre-texto,
    .sobre-imagem {
        width: 100% !important;            /* filhos ocupam largura cheia */
        max-width: 100% !important;
    }

    .sobre-texto {
        margin-top: 10vw;
        position: relative;
        z-index: 2;
        padding: 30px 15px;
        color: var(--branco);
    }

    .sobre-texto-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .sobre-titulo,
    .sobre-subtitulo,
    .sobre-paragrafo {
        color: var(--branco);
        text-align:start;
        width: 100%;
        max-width: 100%;
    }

    .sobre-titulo {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .sobre-subtitulo {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .sobre-paragrafo {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}




/* =================== SOBRE 2 ================================================================================================== */


.sobre-missao-section {
    background-color: white;
    border-radius: 35px;
    width: 97%;
    padding: 5vw 0;
    align-items: center;
    justify-items: center;
}

.missao-container {
    display: flex;
    align-items: center;
}

.missao-texto {
    display: flex;
    gap: 15px;
}

.missao-texto-conteudo {
    max-width: 850px;
    background-color: var(--cor-primaria);
    color: white;
    border-radius: 35px;
    padding: 15px 80px;
}

.missao-titulo, 
.visao-titulo {
    color: var(--cor-secundaria);
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.missao-paragrafo, 
.visao-paragrafo {
    color: var(--cor-secundaria);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.3rem;  
    text-align: center;
}

.missao-imagem {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 90%;
}

.missao-imagem img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(1.1);
}

.missao-imagem:hover img {
    transform: scale(1.1);
}

.valores-container {
    text-align: center;
}

.sobre-valores-section{
    background-color: var(--cor-primaria);
    padding: 25px 5%;
    padding-bottom: 40px;
    border-radius: 40px;
    width: 97%;
    overflow: hidden;
    justify-content: start;
}


.valores-titulo {
    color: var(--branco);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.valores-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.valor-card {
    flex: 1;
    background-color: var(--branco);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
}

.valor-icone {
    font-size: 3.5rem;
    color: var(--cor-primaria);
    margin-bottom: 5px;
}

.valor-card h3 {
    color: var(--cor-primaria);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.valor-card p {
    color: var(--texto-escuro);
    line-height: 1.5;
    font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {

    .sobre-missao-section {
        background-color: transparent;
        width: 100%;
        border-radius: 35px;
        padding: 30px 15px;
    }

    .missao-container {
        flex-direction: column;
        align-items: stretch;
    }

    .missao-texto {
        flex-direction: column;
        gap: 2px;
    }

    .missao-texto-conteudo {
        max-width: 100%;
        background-color: var(--cor-primaria);
        border-radius: 20px;
        padding: 25px 20px;
        text-align: center;
    }

    .missao-titulo,
    .visao-titulo {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .missao-paragrafo,
    .visao-paragrafo {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .sobre-valores-section {
        width: 100%;
        border-radius: 35px;
    }

    .valores-titulo {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .valores-grid {
        flex-direction: column;
        gap: 20px;
    }

    .valor-card {
        width: 95%;
        margin-bottom: 20px;
        justify-self: center;
        align-self: center;
    }

    .valor-icone {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .valor-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .valor-card p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media screen and (max-width: 480px) {
    .missao-titulo,
    .visao-titulo {
        font-size: 1.8rem;
    }

    .missao-paragrafo,
    .visao-paragrafo {
        font-size: 1rem;
    }

    .valores-titulo {
        font-size: 1.8rem;
    }

    .valor-icone {
        font-size: 2rem;
    }

    .valor-card h3 {
        font-size: 1.1rem;
    }

    .valor-card p {
        font-size: 0.9rem;
    }
}




/* =================== Diferenciais ================================================================================================== */
.diferenciais-section {
    background-color: var(--fundo-claro);
    padding: 100px 5%;
}

.diferenciais-container {
    max-width: 1200px;
    margin: 0 auto;
}

.diferenciais-titulo {
    text-align: center;
    color: var(--cor-primaria);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 30px;
}

.diferencial-card {
    background-color: var(--branco);
    border-radius: 15px;
    padding: 30px 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-self: center;
    justify-items: center;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.diferencial-card.full-width {
    grid-column: 1 / -1; /* Ocupa toda a largura */
    justify-self: center;
    justify-items: center;
    justify-content: center;
    padding: 30px 50px;
    width: 50%;
}

.diferencial-conteudo {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.diferencial-icone {
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--cor-primaria);
    margin-right: 20px;
}

.diferencial-texto {
    flex: 1;
}

.diferencial-texto h3 {
    color: var(--cor-primaria);
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: start;
}

.diferencial-texto p {
    color: var(--texto-escuro);
    line-height: 1.5;
    font-size: 1.2rem;
        text-align: start;
}

/* Responsividade */
@media screen and (max-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .diferencial-card.full-width {
        grid-column: 1;
        width: 80vw;
        padding-top: 0;
    }

    .diferencial-conteudo {
        flex-direction: column;
        text-align: start;
        justify-content: start;
        align-content: start;
    }

    .diferencial-icone {
        margin-right: 0;
    }


    .diferencial-card{
        width: 80vw;
        padding-top: 0;
    }
    
    .diferenciais-section {
        width: 100vw;
    }

    .diferenciais-titulo {
        font-size: 2rem;
        margin-bottom: 2vw;
        align-self: center;
        justify-self: center;
    }

    .diferenciais-container{
        width: 100%;
        align-self: center;
        justify-self: center;
    }

    .diferencial-icone {
        font-size: 3rem;
        align-self: flex-start;
        margin: 0;
        padding: 0;
        text-align: start;
    }

    .diferencial-texto{
        justify-content: start;
        padding: 0;
        margin: 0;
        align-content: start;
        align-self: flex-start;
    }

    .diferencial-texto h3 {
        width: 100%;
        font-size: 1rem;
        padding: 0;
        margin: 0;
        text-align: start;
    }

    .diferencial-texto p {
        width: 100%;
        font-size: 0.8rem;
        padding: 0;
        margin: 0;
        text-align: start;
    }
}

/* =================== SERVIÇOS ================================================================================================== */


.servicos-section {
    background-color: var(--fundo-claro);
    padding: 100px 5%;
}

.servicos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.servicos-titulo {
    text-align: center;
    color: var(--cor-primaria);
    font-size: 2.5rem;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.servicos-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.servico-card {
    display: flex;
    align-items: stretch;
    background-color: var(--branco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.servico-imagem {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.servico-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(80%);
}

.servico-card:hover .servico-imagem img {
    transform: scale(1.1);
}

.servico-conteudo {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    text-align: start;
}

.servico-conteudo h3 {
    color: var(--cor-primaria);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.servico-conteudo p {
    color: var(--texto-escuro);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.btn-contato {
    align-self: flex-start;
    padding: 20px 25px;
    background-color: var(--cor-primaria);
    color: var(--branco);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
}

.btn-contato:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-3px);
    color: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

@media (min-width: 1025px) and (max-width: 1366px)  {

    .hero-title{
        font-size: 2rem;
        justify-self: center;
    }

    .hero-subtitle{
        font-size: 1.3rem;
        justify-self: center;
        text-align: center;
        width: 84%;
    }

    .sobre-titulo{
        font-size: 2rem;
    }

    .sobre-paragrafo{
        font-size: 1.2rem;
    }

    .visao-titulo, .missao-titulo{
        font-size: 2.6rem;
    }


    .missao-paragrafo, .visao-paragrafo{
        font-size: 1.2rem;
    }

    .missao-texto-conteudo{
        width: 40%;
    }

    .missao-container{
        width: 100%;
    }

    .missao-texto{
        align-items: center;
        justify-content: center;
    }

    .valor-card{
        display: flex;
        flex-direction: column;
    }

    .valor-card p{
        font-size: 0.8rem;
        margin-top: auto;
    }

    .valor-card h3{
        font-size: 1.2rem;
    }





}

/* Responsividade */
@media screen and (max-width: 1024px) {
    .servicos-titulo {
        font-size: 2rem;
    }

    .servico-card {
        flex-direction: column;
    }

    .servico-imagem {
        width: 100%;
        height: 300px;
    }

    .servico-conteudo {
        text-align: center;
        align-items: center;
    }

    .btn-contato {
        align-self: center;
    }
}


/* =================== CALL TO ACTION ================================================================================================== */

.cta-section {
    background-color: var(--cor-primaria);
    padding: 100px 5%;
    color: var(--branco);
    border-radius: 40px;
    width: 97%;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-conteudo {
    text-align: center;
    max-width: 1200px;
}

.cta-titulo {
    font-size: 3rem;
    color: var(--branco);
    margin-bottom: 80px;
    line-height: 1.2;
}

.cta-texto {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-botao {
    padding: 25px 40px;
    font-size: 1.1rem;
    background-color: var(--cor-secundaria);
    color: var(--cor-primaria);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-top: 3vw;
        text-decoration: none;
}

.cta-botao:hover {
    background-color: var(--branco);
    color: var(--cor-primaria);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-conteudo {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}


@media screen and (max-width: 1024px) {
    .cta-section {
        padding: 70px 5%;
        border-radius: 0;
        width: 100vw !important;
    }

    .cta-titulo {
        font-size: 2rem;
        padding: 0;
        margin: 0;
        padding-bottom: 6vw;
    }

    .cta-texto {
        font-size: 0.9rem;
        padding-bottom: 6vw;
    }

    .cta-botao {
        padding: 20px 25px;
        font-size: 0.9rem;
    }
}





/* =================== CONTATO ================================================================================================== */

.contato-section {
    background-color: var(--fundo-claro);
    padding: 100px 5%;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contato-titulo {
    text-align: center;
    color: var(--cor-primaria);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.especialistas-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.especialista-card {
    width: 100%;
    background-color: var(--branco);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 15px 15px;
    display: flex;
}


.especialista-imagem {
    height: 400px;
    overflow: hidden;
}

.especialista-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.especialista-info {
    padding: 20px;
    text-align: center;
}

.especialista-info h3 {
    color: var(--cor-primaria);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.contato-links {
    display: flex;
    gap: 60px;
}


.btn-whatsapp, 
.btn-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;        /* força a ocupar a largura do card */
    min-height: 50px;   /* altura mínima igual para ambos */
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    gap: 10px;
}

.btn-whatsapp {
    background-color: var(--cor-primaria);
    color: var(--branco);
    font-weight: 700;
    width: 300px;
    height: 300px;
}

.btn-email {
    background-color: var(--cor-primaria);
    color: var(--branco);
    font-weight: 600;
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover,
.btn-email:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.btn-whatsapp i,
.btn-email i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.formulario-contato {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--cor-primaria);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.formulario-contato h3 {
    text-align: center;
    color: var(--branco);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-grupo {
    margin-bottom: 20px;
}

.form-grupo label {
    display: block;
    margin-bottom: 8px;
    color: var(--branco);
    font-weight: 600;
}

.form-grupo input,
.form-grupo textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-grupo textarea {
    height: 150px;
    resize: vertical;
}

.btn-enviar {
    width: 100%;
    padding: 15px;
    background-color: var(--cor-secundaria);
    color: var(--cor-primaria);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 700;
}

.btn-enviar:hover {
    color: var(--cor-primaria);
    background-color: var(--fundo-claro);
}

.lider-topicos {
  list-style: none; /* tira as bolinhas padrão */
  padding: 0;
  margin: 20px 0;
}

.lider-topicos li {
  font-size: 17px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  text-align: start;
  font-weight: 600;
}

.lider-topicos li i {
  color: #28a745;
  margin-right: 8px;
  font-size: 16px;
  flex-shrink: 0; 
}


@media screen and (max-width: 1024px) {

    .contato-titulo{
        padding: 0;
        margin: 0;
        padding-bottom: 3vw;
    }

    .contato-section {
        padding: 50px 3%;
    }

    .contato-titulo {
        font-size: 2rem;
    }

    .formulario-contato {
        padding: 20px;
    }

    .especialistas-container{
        width: 100%;
    }

    .contato-links {
        gap: 20px;
    }

    .btn-whatsapp,
    .btn-email {
        width: 150px; 
        height: 150px; 
    }

    .btn-whatsapp span,
    .btn-email span {
        display: none;
    }
}












