/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #faf8f4;
    color: #23303d;
    line-height: 1.8;
}

/* ==========================
   CONTAINER
========================== */

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ==========================
   HERO
========================== */

.hero {
    padding: 90px 0 60px 0;
    background: #faf8f4;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1.05;
}
.hero-text {
    padding-top: 10px;
}
.logo-completo {
    width: 380px;
    max-width: 100%;
}

/* ==========================
   BRAND (LOGO + NOME)
========================== */

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.logo {
    width: 120px;
    margin-left: -40px;
}

.logo-completo {
    width: 600px;
    max-width: 100%;
    display: block;
}


/* ==========================
   RESTO DO HERO
========================== */

.hero-description {
    font-size: 1.15rem;
    font-weight: 600;
    color: #16324c;

    margin-top: 35px;
    margin-bottom: 25px;
}
.hero-image {
    flex: 0.69;
    margin-top: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

/* ==========================
   BOTÃO
========================== */

.btn-primary {
    display: inline-block;
    margin-top: 30px;
    background: #16324c;
    color: white;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 10px;
    transition: .3s;
}

.btn-primary:hover {
    opacity: .9;
}

/* ==========================
   FRASE DE IMPACTO
========================== */

.frase-impacto {
    background: #16324c;
    padding: 70px 0;
    margin-top: -10px;
}

.frase-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.frase-item {
    flex: 1;
    text-align: center;
    color: white;
}

.frase-item svg {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    stroke-width: 1.8;
}

.frase-item p {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* ==========================
   SOBRE
========================== */

.sobre {
    padding: 120px 0;
    background: #ffffff;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 35px;
}

.sobre-image,
.sobre-texto {
    flex: 1;
}

.sobre-image img {
    width: 72%;
    max-width: 3900px;
    margin: 0 auto;
    display: block;
    border-radius: 30px;
}
.sobre-texto h2 {
    color: #16324c;
    font-size: 2rem;
    margin-bottom: 30px;
}

.sobre-texto p {
    margin-bottom: 18px;
}

/* ==========================
   DEMANDAS
========================== */

.demandas {
    padding: 89px 0;
    background: #16324c;
}

.demandas h2 {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    font-size: 2rem;
}

.demandas-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
}

.demanda-item {
    flex: 1;
    text-align: center;
}

.demanda-item svg {
    width: 38px;
    height: 38px;
    stroke-width: 1.8;
    color: white;
    margin-bottom: 15px;
}

.demanda-item span {
    display: block;
    font-size: 0.95rem;
    line-height: 1.4;
    color: white;
}

/* ==========================
   TERAPIA
========================== */

.terapia {
    padding: 130px 0;
    background: #ffffff;
}

.terapia h2 {
    text-align: center;
    color: #16324c;
    font-size: 2rem;
    margin-bottom: 60px;
}

.terapia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.terapia-grid h3 {
    color: #16324c;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.terapia-grid p {
    margin-bottom: 18px;
}

/* ==========================
   INSTAGRAM
========================== */

.instagram {
    padding: 70px 0;
    background: #16324c;
    color: white;
    text-align: center;
}

.instagram h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.instagram p {
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.instagram-user {
    font-weight: 600;
    font-size: 1.1rem;
}

#instagram-feed {
    margin-top: 40px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
}

/* ==========================
   BRASILEIROS NO EXTERIOR
========================== */

.exterior {
    padding: 90px 0;
    background: #ffffff;
}

.exterior h2 {
    text-align: center;
    color: #16324c;
    font-size: 2rem;
    margin-bottom: 30px;
}

.exterior p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
}


/* ==========================
   CONTATO
========================== */

.contato {
    padding: 130px 0;
    text-align: center;
    background: #faf8f4;
}

.contato h2 {
    color: #16324c;
    font-size: 2rem;
    margin-bottom: 25px;
}

.contato p {
    max-width: 700px;
    margin: 0 auto 18px auto;
}

/* ==========================
   RODAPÉ
========================== */

footer {
    background: #16324c;

    text-align: center;

    padding: 18px 20px;

    font-size: 14px;

    color: rgba(255,255,255,0.85);
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin: 0 8px;
    transition: 0.2s ease;
}

.footer-links a:hover {
    text-decoration: underline;
    color: white;
}

.divider {
    color: rgba(255,255,255,0.5);
}

/* ==========================
   LEGAL PAGES
========================== */

.legal-page {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #222;
}

.legal-page h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-page p {
    margin-bottom: 15px;
}

.legal-page a {
    color: #222;
    text-decoration: underline;
}

/* ==========================
   LINK INSTAGRAM
========================== */

.instagram-link {
    margin-top: 35px;
}

.instagram-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;

    transition: 0.2s ease;
}

.instagram-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}

.instagram-link a:hover {
    opacity: 0.8;
}
/* ==========================
   RESPONSIVO
========================== */

@media (max-width: 900px) {

.sobre-image img {
    width: 90%;
}
.sobre-image img {
    width: 88%;
} 
   .hero-content,
    .sobre-content {
        flex-direction: column;
        gap: 35px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 2.3rem;
    }

    .frase-grid {
        flex-direction: column;
        gap: 40px;
    }

    .demandas-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 35px;
    }

    .demanda-item {
        min-width: 120px;
    }

    .terapia-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #instagram-feed {
        padding: 25px;
    }

    /* BRAND MOBILE */
/* BRAND MOBILE */
.brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.logo {
    width: 100px;
}

.logo-completo {
    width: 360px;
    margin-left: -15px;
}

.hero-image img {
    height: auto;
}
}