/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #DBEAFE;
    background: #010f27;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 8%;

    background: rgba(24, 51, 95, 0.95);

    backdrop-filter: blur(10px);

    z-index: 1000;
}

.logo img {
    height: 108px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: rgb(249, 250, 252);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: 0.3s;
}

.menu a:hover {
    color: #d95a22;
}

/* HERO */

.hero {
    min-height: 100vh;

    background: transparent;

    color: rgb(250, 250, 252);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 200px 20px 40px;
}

.tag {
    background: rgba(255,255,255,0.15);

    padding: 10px 20px;

    border-radius: 999px;

    margin-bottom: 40px;
}

.hero h1 {
    font-size: 4rem;
    max-width: 900px;
    margin-bottom: 50px;
    line-height: 1.3;
}

.hero p {
    max-width: 700px;
    font-size: 1.2rem;
    color: #dbeafe;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #d95a22;
    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 10px;

    font-weight: bold;

    transition: .3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid white;

    color: white;

    text-decoration: none;

    padding: 15px 30px;

    border-radius: 10px;

    transition: .3s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* RESULTADOS */

.resultados {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;

    padding: 70px 20px;

    background: transparent;
}

.resultado {
    text-align: center;
}

.resultado h3 {
    font-size: 3rem;
    color: #d95a22;
}

.resultado p {
   color: #DBEAFE;

}

/* SEÇÕES */

.servicos,
.sobre,
.contato,
.depoimentos,
.faq {
    padding: 90px 20px;
}

.servicos {
    background: transparent;
    text-align: center;
}

.servicos h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.sobre h2,
.contato h2,
.depoimentos h2,
.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

/* CARDS */

.cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: white;

    width: 380px;
    min-height: 320px;

    padding: 35px;

    display: flex;
    flex-direction: column;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: .3s;
    color: #334155;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
    text-transform: uppercase;
    width: 100%;
    max-width: 100%;
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
}

.card p {
    color: #334155;
    font-size: 1rem;
    text-align: left;
    line-height: 1.7;
    margin-bottom:15px;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    word-spacing: normal;
}

/* SOBRE */

.sobre {
    text-align: center;
    background: transparent;
}
.sobre h2{
    color: white
}

.sobre p {
    max-width: 90%;
    margin: 0 auto;
    color: #DBEAFE;
    font-size: 1.15rem;
    line-height: 1.9;
    text-align: justify;
}

/* DEPOIMENTOS */

.depoimentos {
    background: transparent;
}

.depoimentos .card p {
    font-style: italic;
    text-align: left ;
    display: block ;
    width: 100%;
    padding: 0;
    word-spacing: normal;
}

.depoimentos .card span {
    color: #64748b;
}
.depoimentos h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #e7e9ee;
}

/* FAQ */

 .faq {
    width: 100%;
    background: transparent;
    color: white;
    padding: 90px 8%;
}

.faq-item {
    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.faq-item h3 {
    margin-bottom: 10px;
}

.faq-item p {
    color:#DBEAFE;
}

/* CONTATO */

.contato {
    background: transparent;
    color: white;
    text-align: center;
}

.contato form {
    display: flex;
    flex-direction: column;

    gap: 15px;

    max-width: 500px;

    margin: 40px auto 0;
}

.contato input {
    padding: 15px;

    border: none;

    border-radius: 10px;

    font-size: 1rem;
}

.contato button {
    background: #d95a22;

    color: white;

    border: none;

    border-radius: 10px;

    padding: 15px;

    font-weight: bold;

    cursor: pointer;

    transition: .3s;
}

.contato button:hover {
    opacity: .9;
}

/* RODAPÉ */

.footer {
    background: #d95a22;

    color: white;

    text-align: center;

    padding: 50px 20px;
}

.footer h3 {
    margin-bottom: 15px;
}

.footer p {
    color: #cbd5e1;
}

.footer-contato {
    margin: 25px 0;
}

.copyright {
    margin-top: 20px;
    opacity: .7;
}

/* RESPONSIVO */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .logo img {
        height: 55px;
    }

    .menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .menu a {
        font-size: 0.95rem;
    }

    .hero {
        padding: 140px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 350px;
    }

    .resultados {
        flex-direction: column;
        gap: 20px;
    }

    .resultado {
        width: 100%;
    }

    .servicos h2,
    .sobre h2,
    .contato h2,
    .depoimentos h2,
    .faq h2 {
        font-size: 2rem;
    }

    .contato form {
        width: 100%;
    }

    .contato input,
    .contato button {
        width: 100%;
    }

    .footer {
        padding: 40px 20px;
    }
}


html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}
/* FUNDADORES */

.socios {
    padding: 90px 20px;
    background: transparent;
    text-align: center;
}

.socios h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: white;
}

.socios .card {
    text-align: left;
}

.cargo {
    color: #d95a22;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.socios .card p {
    margin-bottom: 15px;
    color: #64748b;
}

.sobre .card p {
    color: #334155;
}


.foto-socio {
    width: 140px;
    height: 140px;

    border-radius: 50%;

    object-fit: cover;

    display: block;

    margin: 0 auto 20px;

    border: 4px solid #d95a22;
}
.foto-carla {
    object-fit: cover;
    object-position: center 65%;
    transform: scale(1.2);
}

/* CONFIGURAÇÃO ESPECÍFICA PARA A SEÇÃO COMO FUNCIONA */

.como-funciona-secao {
    padding: 90px 20px;
    background: transparent;
}

.como-funciona-secao h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: white;
}

/* Alinha todo o conteúdo interno dos cards no centro */
.como-funciona-cards .card {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start;
}

/* Garante o distanciamento correto abaixo do título do card */
.como-funciona-cards .card h3 {
    margin-bottom: 25px;
}

/* Força o texto descritivo a ficar centralizado */
.como-funciona-cards .card p {
    text-align: center;
    line-height: 1.6;
}
