@import url("fonts.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-branca: #F6F6F6;
    --cor-azul: #2637AA;
    --cor-vermelha: #EC0C04;
    --cor-preta: #000000;
    --cor-azul-escura: #100D52;
    --cor-cinza: #4B4B4B;
}

body {
    background-color: var(--cor-branca);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* barra de rolagem */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #cbcaca;
}

::-webkit-scrollbar-thumb {
    background: var(--cor-azul);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cor-azul-escura);
}


/* Header do website */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    height: 80px;
    background-color: var(--cor-branca);
    box-shadow: 0 -5px 15px var(--cor-azul);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.base-logo {
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
    margin-left: 40px;
}

/* Header: alternativa do logo para mobile (inserida via JS) */
.base-logo .logo-tnc-header {
    display: none;
}

.navbar {
    display: flex;
    gap: 40px;
    flex-grow: 1;
    justify-content: center;
    margin: 0 40px;
}

.navbar a {
    color: var(--cor-preta);
    text-decoration: none;
    font-size: 16px;
    font-family: SemiBold;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.navbar a:hover {
    color: var(--cor-azul);
}

.buttun-solicitar {
    flex-shrink: 0;
}

.buttun-solicitar button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid var(--cor-vermelha);
    border-radius: 10px;
    color: var(--cor-preta);
    font-size: 16px;
    margin-right: 40px;
    font-family: Medium;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buttun-solicitar button:hover {
    background-color: var(--cor-vermelha);
    color: white;
}

.buttun-solicitar button:hover .whtsaap path {
    fill: white;
}

.whtsaap {
    width: 20px;
    height: 20px;
}
/*  HAMBURGER BUTTON */
                .menu-toggle {
                    position: absolute;
                    left: -9999px;
                }
        
                  .hamburger-btn {
                    display: none;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: 7px;
                    width: 60px;
                    height: 60px;
                    background: none;
                    border: none;
                    cursor: pointer;
                    padding: 6px;
                    margin-right: 20px;
                    position: relative;
                    z-index: 1100;
                    flex-shrink: 0;
                }
        
                .hamburger-btn span {
                    display: block;
                    height: 2.30px;
                    background-color: var(--cor-azul);
                    border-radius: 20px;
                    transform-origin: center;
                    transition: transform 0.32s ease, background-color 0.2s ease, opacity 0.2s ease;
                    width: 100%;
                }
        
                .hamburger-btn .bar-1 {
                    width: 100%;
        
                }
        
                .hamburger-btn .bar-2 {
                    width: 50%;
                    margin-left: 20px;
                }
        
                .menu-toggle:checked+header .hamburger-btn .bar-1 {
                    transform: rotate(45deg) translateY(2px);
                    width: 40px;
        
                }
        
                .menu-toggle:checked+header .hamburger-btn .bar-2 {
                    transform: rotate(-45deg) translateY(-13px);
                    width: 40px;
        
                }
        
                /*  MOBILE MENU PANEL  */
                .mobile-menu {
                    position: fixed;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    top: 70px;
                    z-index: 5;
                    display: flex;
                    flex-direction: column;
                    padding: 16px 20px 48px;
                    background: var(--cor-branca);
                    transform: translateY(-6%);
                    opacity: 0;
                    transition: transform 0.32s ease, opacity 0.32s ease;
                    pointer-events: none;
                }
        
                .menu-toggle:checked~.mobile-menu {
                    z-index: 950;
                    pointer-events: auto;
                }
        
                .menu-toggle:checked~.mobile-menu {
                    transform: translateY(0);
                    opacity: 1;
                }
        
                /*  MOBILE NAV LINKS  */
                .mobile-nav {
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                    flex: 1;
                }
        
                .mobile-nav {
                    display: flex;
                    flex-direction: column;
                    gap: 4px;
                    flex: 1;
                }
        
                /* Keep same typography and color as desktop header links */
                .mobile-nav a {
                    color: var(--cor-preta);
                    text-decoration: none;
                    font-family: SemiBold;
                    font-size: 18px;
                    padding: 14px 0;
                    transition: color 0.18s ease;
                }
        
                .mobile-nav a:hover {
                    color: var(--cor-azul);
        
                }
        
        
                /* Make CTA match header button style */
                .mobile-cta button {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    width: 100%;
                    padding: 12px 20px;
                    background-color: transparent;
                    border: 2px solid var(--cor-vermelha);
                    border-radius: 10px;
                    color: var(--cor-preta);
                    font-size: 16px;
                    font-family: Medium;
                    cursor: pointer;
                    transition: all 0.22s ease;
                }
        
                .mobile-cta button:hover {
                    color: var(--cor-preta);
                }
        
                .mobile-cta button .whtsaap path {
        
                    fill: var(--cor-vermelha);
        
                }
        
                .whtsaap-wrap {
                    position: relative;
        
                }
       /*  RESPONSIVE BREAKPOINTS */

/* Tablets e ecrãs médios */
@media (max-width: 900px) {

    /* Esconde navbar e botão desktop */
    .navbar,
    .buttun-solicitar {
        display: none;
    }

    /* Mostra o botão hamburger */
    .hamburger-btn {
        display: flex !important; /* !important garante visibilidade em todos os browsers móveis */
    }

    header {
        padding:10px 20px 0 10px;
        height: 80px;
        justify-content: space-between;
    }

    .logo {
        margin-left: 0;
        height: 42px;
    }

    /* Quando for mobile, esconde o logo desktop e mostra o svg mobile-clonado */
    .base-logo .logo {
        display: none;
    }

    .base-logo .logo-tnc-header {
        display: block;
        height: 42px;
        width: auto;
        margin-left: 0;
    }

    /* Ajusta o topo do menu ao novo header */
    .mobile-menu {
        top: 70px;
    }

   }


/* Conteúdo do website */
/* Primeira seção do website  */

/* Hero Section */
.hero {
    width: 100%;
    height: 100%;
    max-height: 707px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 100px;
    background-color: var(--cor-branca);
    position: relative;
    overflow: hidden;

}

.conteudo-hero {
    width: 100%;
    max-width: 600px;
    z-index: 2;
    position: relative; /* necessário para que z-index funcione e o botão fique acima da imagem */
    margin-top: 80px;
}

.conteudo-hero h1 {
    font-size: 37px;
    font-family: Bold;
    color: var(--cor-azul-escura);
    line-height: 1.7;
    margin-bottom: 13px;
    text-transform: uppercase;
}

.import {
    color: var(--cor-azul);
}


.conteudo-hero p {
    font-size: 18px;
    font-family: Medium;
    color: var(--cor-cinza);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 550px;
}

.conteudo-hero button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--cor-vermelha);
    border: none;
    border-radius: 10px;
    color: var(--cor-branca);
    font-size: 16px;
    font-family: Bold;
    text-transform: lowercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 60px;
    position: relative; /* garante empilhamento acima da imagem */
    z-index: 3; /* força o botão sobre elementos transformados */

}

.conteudo-hero button:hover {
    background-color: #d83835;
    transform: translateY(-2px);
    color: #fff;
}

.arraw {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.conteudo-hero button:hover .arraw {
    transform: translateX(15px);
}

.logo-tnc {
    width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .logo-tnc {
        width: 180px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .logo-tnc {
        width: 200px;
    }
}

/* Conteúdo da Imagem */
.conteudo-img {
    position: relative;
    flex-shrink: 1;
    z-index: 1;
    max-width: 100%;
    overflow: hidden;
}

.personagem {
    height: 650px;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    margin-top: 69px;
}

/* Container principal da fita azul */
.fita-servicos {
    background-color:#100D52;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .fita-servicos {
        padding: 70px 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fita-servicos {
        padding: 25px 0;
    }
}

/* Container do carrossel */
.carrossel-container {
    width: 100%;
    overflow: hidden;
}

/* Track que contém todos os itens do carrossel */
.carrossel-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

@media (max-width: 768px) {
    .carrossel-track {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .carrossel-track {
        gap: 20px;
    }
}

/* Cada item individual do carrossel */
.carrossel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    flex-shrink: 0;
    /* Impede que os itens encolham */
}

/* Bullet point antes de cada texto */
.carrossel-item .bullet {
    color: var(--cor-branca);
    font-size: 28px;
    line-height: 1;
}

.carrossel-item p {
    color: var(--cor-branca);
    font-size: 18px;
    font-family: Medium;
    margin: 0;
    letter-spacing: 4.8px;
}

@media (max-width: 768px) {
    .carrossel-item p {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .carrossel-item p {
        font-size: 15px;
    }
}



@keyframes scroll {
    0% {
        transform: translateX(0);
        /* Posição inicial */
    }

    100% {
        transform: translateX(-50%);

    }
}

.container {
    max-width: 1310px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 62px 0px 0px 0px;
}

.cabecalho-sobre {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.titulo-sobre {
    font-size: 24px;
    font-family: semibold;
    color: var(--cor-preta);
}

.texto-azul {
    color: var(--cor-azul);
    font-family: bold;
}

.titulo-principal {
    font-size: 40px;
    font-family: bold;
    color: var(--cor-preta);
    margin-bottom: 30px;
    margin-top: 50px;
}

.destaque-azul {
    color: var(--cor-azul);
}

.paragrafo {
    font-size: 16px;
    font-family: semibold;
    color: var(--cor-cinza);
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;

}

.estatisticas {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;

}

.estatistica-item {
    text-align: center;
    flex: 3;
}

.numero {
    font-size: 60px;
    font-family: bold;
    color: var(--cor-vermelha);
    line-height: 1;
    margin-bottom: 10px;
}

.legenda {
    font-size: 14px;
    color: var(--cor-preta);
    font-family: bold;
}

/* Conteúdo Direita - Cards */
.conteudo-direita {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 70px;
}

.card-missao,
.card-visao,
.card-valores {
    background-color: var(--cor-branca);
    box-shadow: 0 1px 8px var(--cor-azul);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.barra-topo {
    position: absolute;
    top: 0;
    left: 50px;
    right: 400px;
    height: 6px;
    background-color: var(--cor-azul);
    border-radius: 20px;
}

.titulo-card {
    font-size: 32px;
    font-family: bold;
    color: var(--cor-preta);
    margin-bottom: 15px;
    margin-top: 10px;
}

.texto-card {
    font-size: 15px;
    font-family: semibold;
    color: var(--cor-cinza);
    line-height: 1.8;
}

.lista-valores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.valor-tag {
    background-color: var(--cor-vermelha);
    font-family: semibold;
    color: var(--cor-branca);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    display: block;
}

/* Secao nossa equipa */
.titulo-secao {
    text-align: center;
    font-size: 36px;
    font-family: bold;
    color: var(--cor-preta);
    margin-bottom: 30px;
}

.titulo-secao span {
    color: var(--cor-azul);
}

.subtitulo-secao {
    text-align: center;
    font-size: 15px;
    font-family: semibold;
    color: var(--cor-cinza);
    max-width: 720px;
    margin: 0 auto 60px;
    line-height: 1.9;
}


/* SECÇÃO: NOSSA EQUIPA */

.secao-equipa {
    background-color: var(--cor-branca);
    padding: 80px 40px;
    margin-top: 70px;
}

.equipa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1310px;
    margin: 0 auto;
}

.membro-card {
    text-align: center;
}

.membro-foto-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e8e9eb;
    margin-bottom: 16px;
    border: solid 1.80px var(--cor-azul-escura);
}

.membro-foto-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.membro-foto-placeholder {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #c5cef5 0%, #a8b4ea 100%); */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.membro-nome {
    font-size: 19px;
    font-family: bold;
    color: var(--cor-preta);
    margin-bottom: 10px;
}

.membro-cargo {
    font-size: 15px;
    color: var(--cor-azul-escura);
    font-family: semibold;
    margin-bottom: 10px;
}

.membro-descricao {
    font-size: 13px;
    color: var(--cor-cinza);
    line-height: 1.7;
    font-family: medium;
}

/* SECÇÃO: POR QUE ESCOLHER */

.secao-escolher {
    background-color: var(--cor-branca);
    padding: 80px 40px;
}

.escolher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1310px;
    margin: 0 auto;
}

.escolher-card {
    background-color: var(--cor-branca);
    border: 1.5px solid var(--cinza-borda);
    padding: 50px 20px;
    box-shadow: 0px 0px 9.1px 0px var(--cor-azul);
    border-radius: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.escolher-card:hover {
    box-shadow: 0 8px 32px rgba(38, 55, 170, 0.12);
    transform: translateY(-4px);
}

.icone-card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.svg-iconss {
    width: 65px;
}

.escolher-card h3 {
    font-size: 16px;
    font-family: bold;
    color: var(--cor-preta);
    text-align: center;
    margin-bottom: 16px;
}

.escolher-card p {
    font-size: 14px;
    font-family: medium;
    color: var(--cor-cinza);
    line-height: 1.7;
    text-align: center;
    padding: 15px 40px 15px 40px
}

.atendimento {
    margin-bottom: 25px;
}

.atendimento5 {
    margin-top: -24px;
}

/* SECÇÃO: NOSSA CLIENTELA */
.secao-clientela {
    background-color: #ffffff;
    padding: 80px 40px;
    overflow: hidden;
}


.secao-clientela h2 {
    margin-bottom: 100px;
    font-family: bold;
}

.carrossel-wrapper {
    position: relative;
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
}

.carrossel-faixa {
    display: flex;
    gap: 60px;
    animation: deslizarCliente 18s linear infinite;
    width: max-content;
    align-items: center;
}

.carrossel-faixa:hover {
    animation-play-state: paused;
}

.cliente-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
    cursor: pointer;
}

.cliente-item:hover {
    opacity: 1;
}

.cliente-item svg {
    height: 32px;
    width: auto;
}


@keyframes deslizarCliente {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carrossel-sombra-esquerda,
.carrossel-sombra-direita {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.carrossel-sombra-esquerda {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.carrossel-sombra-direita {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}


/* SECÇÃO: NOSSOS SERVIÇOS */

.secao-servicos {
    background-color: var(--cinza-claro);
    padding: 80px 40px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1310px;
    margin: 0 auto;
    margin-top: 100px;
}

.servico-card {
    background-color: var(--cor-branca);
    border: 1.5px solid var(--cinza-borda);
    padding: 90px 31px;
    box-shadow: 0px 0px 9.1px 0px var(--cor-azul);
    border-radius: 15px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.servico-card:hover {
    box-shadow: 0 8px 32px rgba(38, 55, 170, 0.12);
    transform: translateY(-4px);
}

.servico-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: -50px
}

.servico-icone svg {
    width: 65px;
}

.servico-card h3 {
    font-size: 18px;
    font-family: bold;
    color: var(--cor-preta);
    margin-bottom: 20px;
    text-align: center;
}

.servico-card p {
    font-size: 14px;
    font-family: medium;
    color: var(--cor-cinza);
    line-height: 1.8;
    text-align: center;
}



/* Section: CTA Chamada para accção  */

/* SECTION */
.btn-cta {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

/* CARD */
.cta-container {
    background: #f2f2f2;
    border: 2px solid var(--cor-azul);
    border-radius: 30px;
    max-width: 900px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
}

.cta-container .logo {
    margin-top: -30px;
    margin-bottom: 30px;
}

/* TITLE */
.cta-container h2 {
    font-size: 22px;
    font-family: bold;
    color: var(--cor-preta);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
    padding: 0 100px 0 100px;
}

/* DESCRIPTION */
.cta-container p {
    font-size: 14px;
    font-family: medium;
    color: #555;
    max-width: 600px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

/* BUTTON */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 28px;
    background: linear-gradient(90deg, #2d6ea3, #1c3e5f);
    color: var(--cor-branca);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Medium';
    transition: 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* footer */

.rodape {
    background-color: var(--cor-branca);
    border-top: 2px solid var(--cor-azul);
}

/* Área superior do rodapé  */
.rodape-superior {
    padding: 60px 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}


/* Colunas de links  */
.rodape-colunas {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.rodape-coluna h4 {
    font-size: 22px;
    font-family: bold;
    color: var(--cor-azul);
    margin-bottom: 20px;
}

.rodape-coluna ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rodape-coluna ul li a {
    font-size: 15px;
    color: var(--cor-cinza);
    font-family: semibold;
    text-decoration: none;
    transition: color 0.2s;
}

.rodape-coluna ul li a:hover {
    color: var(--cor-azul);
}

/*  Redes Sociais */
.redes-sociais-icones {
    display: flex;
    gap: 20px;
    margin-top: 4px;
    margin-left: 20px;
}

.icone-social {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s, transform 0.2s;
}

.icone-social:hover {
    opacity: 0.8;
    transform: scale(1.08);
}

/* FAIXA MARQUEE - TEXTO GRANDE  */
.rodape-marquee {
    background-color: var(--cor-branca);
    overflow: hidden;
    border-top: 2px solid var(--cor-azul);
    padding: 0;
    position: relative;
}

.marquee-faixa {
    display: flex;
    width: max-content;
    animation: deslizarTexto 25s linear infinite;
}

.marquee-texto {
    font-size: clamp(90px, 14vw, 160px);
    font-family: Anton-regular;
    color:#100D52;
    line-height: 1;
    padding: 10px 40px 10px 0;
    text-transform: uppercase;
    user-select: none;
}

@keyframes deslizarTexto {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* RESPONSIVIDADE */

@media (max-width: 900px) {
    .rodape-superior {
        padding: 40px 30px 30px;
    }

    .rodape-colunas {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .rodape-colunas {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rodape-superior {
        padding: 30px 20px;
        gap: 36px;
    }
}





/* RESPONSIVIDADE PROFISSIONAL MOBILE */

@media (max-width: 768px) {

    .container {
        grid-template-columns: 1fr;
        padding: 25px 16px;
        gap: 25px;
    }

    /* CARDS EM BAIXO */
    .conteudo-direita {
        margin-top: 0;
        gap: 16px;
    }

    /* CARDS PEQUENOS E PROFISSIONAIS */
    .card-missao,
    .card-visao,
    .card-valores {

        padding: 18px 16px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08);

    }

    .titulo-card {

        font-size: 18px;
        margin-bottom: 8px;
        margin-top: 5px;

    }

    .texto-card {

        font-size: 13px;
        line-height: 1.6;

    }

    /* BARRA SUPERIOR AJUSTADA */
    .barra-topo {

        left: 16px;
        right: 60%;
        height: 4px;

    }

    /* VALORES: DUAS COLUNAS */
    .lista-valores {

        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 10px;

    }

    .valor-tag {

        font-size: 12px;
        padding: 8px 6px;
        border-radius: 6px;

    }

    /* CONTEUDO TEXTO EMBAIXO */
    .cabecalho-sobre {

        margin-top: 10px;

    }

    .titulo-sobre {

        font-size: 16px;

    }

    .titulo-principal {

        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 15px;
        line-height: 1.4;

    }

    .paragrafo {

        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;

    }

    /* ESTATÍSTICAS MOBILE */
    .estatisticas {

        flex-direction: column;
        gap: 16px;
        margin-top: 20px;

    }

    .numero {

        font-size: 28px;

    }

    .legenda {

        font-size: 12px;

    }

}


/* MOBILE PEQUENO */
@media (max-width: 480px) {

    .container {

        padding: 20px 14px;

    }

    .titulo-card {

        font-size: 16px;

    }

    .texto-card {

        font-size: 12px;

    }

    .valor-tag {

        font-size: 11px;

    }

    .titulo-principal {

        font-size: 18px;

    }

    .paragrafo {

        font-size: 12px;

    }

}

/* RESPONSIVIDADE HERO */

/* MOBILE */
@media (max-width: 768px) {

    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        max-height: none;
        height: auto;
        overflow-x: hidden;
    }

    /* IMAGEM PRIMEIRO */
    .conteudo-img {
        order: -1;
        margin-bottom: 19px;
        margin-right: 50px;

    }

    .personagem {
        height: 320px;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
    }

    .conteudo-hero {
        margin-top: 0;
        max-width: 100%;
        width: 100%;
    }

    .conteudo-hero h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .conteudo-hero p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .conteudo-hero button {
        display: flex;
        padding: 14px 24px;
        font-size: 14px;
        margin: 0 auto  auto;
        margin-bottom: 40px;
    }
}


/* MOBILE PEQUENO */
@media (max-width: 480px) {

    .hero {
        padding: 30px 16px;
        overflow-x: hidden;
    }

    .personagem {
        height: 250px;
        margin-top: 50px;
        width: 100%;
        max-width: 100%;
    }

    .conteudo-img {
        width: 100%;
        max-width: 100%;
    }

    .conteudo-hero {
        width: 100%;
        max-width: 100%;
    }

    .conteudo-hero h1 {
        font-size: 20px;
        margin-top: -25px;
    }

    .conteudo-hero p {
        font-size: 14px;
    }
}


/* Sobre nós */

@media (max-width: 1024px) {

    .equipa-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media (max-width: 768px) {

    .equipa-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width: 480px) {

    .equipa-grid {
        grid-template-columns: 1fr;
    }

}



/* RESPONSIVIDADE SOMENTE ESCOLHER */


@media (max-width: 1024px) {

    .secao-escolher .escolher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}

@media (max-width: 768px) {

    .secao-escolher {
        padding: 50px 16px;
    }

    .secao-escolher .escolher-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 14px;

    }

    .secao-escolher .escolher-card {

        padding: 20px 12px;
        border-radius: 10px;

    }

    .secao-escolher .svg-iconss {

        width: 36px;

    }

    .secao-escolher .escolher-card h3 {

        font-size: 13px;
        margin-bottom: 8px;

    }

    .secao-escolher .escolher-card p {

        font-size: 11px;
        line-height: 1.5;
        padding: 0;

    }

    .titulo-secao {

        font-size: 26px;

    }

    .atendimento5 {

        margin-top: 18px;

    }

}

@media (max-width: 480px) {

    .secao-escolher .escolher-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 10px;

    }

    .secao-escolher .escolher-card {

        padding: 16px 10px;

    }

    .secao-escolher .svg-iconss {

        width: 30px;

    }

    .secao-escolher .escolher-card h3 {

        font-size: 12px;

    }

    .secao-escolher .escolher-card p {

        font-size: 10px;

    }

}

/* Nossos serviços */

/* TABLET */

@media (max-width: 992px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .secao-servicos {
        padding: 60px 20px;
    }

    .servicos-grid {
        grid-template-columns: 1fr; 
        margin-top: 60px;
    }

    .servico-card {
        padding: 60px 25px;
    }
}



/*BUTTON CTA */
/* TABLET */

@media (max-width: 992px) {
    .cta-container {
        padding: 50px 30px;
    }

    .cta-container h2 {
        padding: 0 30px;
        font-size: 20px;
    }
}


/* MOBILE */


@media (max-width: 768px) {

    .btn-cta {
        padding: 60px 15px;
    }

    .cta-container {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-container h2 {
        padding: 0; /* REMOVE padding lateral */
        font-size: 18px;
    }

    .cta-container p {
        font-size: 13px;
    }

    .cta-button {
        width: 100%; /* Botão ocupa largura toda */
        justify-content: center;
        padding: 16px 20px;
    }
}