/* ==========================
   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.2rem;
    font-weight: 500;
    color: #16324c;
    line-height: 1.6;
}
.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: 82%;
    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 {
.sobre-texto p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #2a3a48;
}
    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);
}


/* ==========================
   CONTATO
========================== */

.contato {
    padding: 90px 0;
    text-align: center;
    background: #faf8f4;
    margin-top: 0; /* remove afastamento extra */
}

.contato h2 {
    margin-bottom: 15px;
}

.contato p {
    margin-bottom: 12px;
}

.contato a {
    margin-top: 15px;
    display: inline-flex;
}
.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-grid {
    margin-bottom: 22px;
}

.instagram-link {
    margin-top: 10px;
}
.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) {

@media (max-width: 900px) {
    .sobre-texto p {
        margin-bottom: 18px;
    }
@media (max-width: 900px) {
    .sobre-texto p {
        margin-bottom: 20px;
    }
}
}
.sobre-image img {
    width: 90%;
}
.sobre-image img {
    width: 88%;
} 
   .hero-content,
    .sobre-content {
        flex-direction: column;
        gap: 35px;
    }

    .hero {
        padding: 100px 0 70px 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;
    }
.instagram-grid {
    grid-template-columns: 1fr;
}

.instagram-grid {
    grid-template-columns: 1fr;
}


    /* 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;
}
}

.instagram-preview {
    margin-top: 40px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.instagram-grid img {
    width: 100%;
    display: block;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    object-fit: cover;

    background: rgba(255,255,255,0.08);
    padding: px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


}
.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.instagram {
    background: #16324c;
    padding: 70px 0;
    text-align: center;
    color: white;
}
.instagram-preview {
    max-width: 580px;
    margin: 0 auto;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0;
}
.instagram-grid img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 20px;
}

.instagram {
    background: #16324c;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.instagram h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.instagram-subtitle {
    max-width: 650px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.instagram-preview {
    max-width: 580px;
    margin: 0 auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.instagram-grid img {
    width: 100%;
    display: block;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.instagram-grid img:hover {
    transform: scale(1.03);
}

.instagram-btn {
    display: inline-block;
    background: white;
    color: #16324c;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.instagram-btn:hover {
    opacity: 0.85;
}

.instagram-btn {
    display: inline-block;
    background: white;
    color: #16324c;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    margin-top: 10px;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.instagram-grid {
    gap: 8px;
    padding: 6px;
}

.instagram-preview {
    max-width: 100%;
    padding: 0 10px;
}

.instagram-grid img {
    transform: scale(0.92);
    object-fit: cover;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.instagram-grid {
    padding: 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.instagram-grid img {
    width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.instagram-grid img:hover {
    transform: none;
}

.instagram-grid img {
    transition: none !important;
}

.instagram-grid img:hover {
    transform: none !important;
    box-shadow: none !important;
}

.instagram-grid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    display: block;
}

.instagram h2 {
    margin-bottom: 10px;
}

.insta-sub {
    margin-bottom: 25px;
}

.instagram-grid {
    margin-bottom: 25px;
}

.instagram-cta {
    text-align: center;
    margin-top: 10px;
}

.instagram-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #16324c;
    color: white;

    padding: 12px 24px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;

    cursor: pointer;

    transition: 0.2s ease;
}

.instagram-cta a:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.instagram-cta {
    text-align: center !important;
    margin-top: 18px !important;
}

.instagram-cta a {
    display: inline-block !important;

    background: #16324c !important;
    color: #ffffff !important;

    padding: 14px 26px !important;
    border-radius: 10px !important;

    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;

    cursor: pointer !important;

    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s ease !important;
}

.instagram-cta a:hover {
    transform: translateY(-2px) !important;
    opacity: 0.95 !important;
}

section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.hero-description {
    margin-top: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 30px;
    padding: 16px 30px;

    background: #16324c;
    color: #ffffff;
    text-decoration: none;

    border-radius: 12px;

    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;

    transition: all 0.25s ease;

    border: 1px solid rgba(255,255,255,0.08);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #1c3f5c;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 30px;
    padding: 14px 26px;

    background: transparent;
    color: #16324c;

    border: 1px solid rgba(22, 50, 76, 0.35);
    border-radius: 10px;

    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2px;

    text-decoration: none;

    transition: all 0.25s ease;
}

.btn-editorial:hover {
    background: rgba(22, 50, 76, 0.06);
    border-color: rgba(22, 50, 76, 0.6);
    transform: translateY(-1px);
}

.sobre-texto p {
    margin-bottom: 18px;
}

/* ==========================
   FAQ (ACCORDION ESTILO LIMPO)
========================== */

.faq {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq h2 {
    font-size: 1.25rem;
    line-height: 1.3;
}

.faq-subtitle {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

/* cada pergunta */
.accordion details {
    background: #fff;
    border: 1px solid rgba(11,31,58,0.10);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 16px 18px;
}

/* título clicável */
.accordion summary {
    cursor: pointer;
    font-weight: 500;
    color: #0b1f3a;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

/* botão + */
.accordion summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.3rem;
    color: #0b1f3a;
}

/* botão - quando aberto */
details[open] summary::after {
    content: "-";
}

/* texto interno */
.accordion p {
    margin-top: 12px;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}


@media (max-width: 900px) {

    .instagram-grid {
        padding: 4px !important;
        gap: 6px !important;
        margin: 0 auto !important;
    }

    .instagram-preview {
        padding: 0 8px !important;
        max-width: 100% !important;
    }

    .faq h2 {
        font-size: 1.2rem !important;
    }

}

.contact-email {
  text-align: center;
  margin-top: 50px;   /* espaço abaixo do botão WhatsApp */
  margin-bottom: 30px;
}

/* frase */
.email-section-title {
  font-size: 0.95rem;
  color: #16324c;
  margin-bottom: 1px; /* 🔥 reduz o espaço com o e-mail */
  line-height: 1.3;
}

/* e-mail */
.email-line {
  margin-top: 0px; /* garante que não cria espaçamento extra */
}

.email-link {
  font-size: 1rem;
  color: #16324c;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.0; /* deixa mais “grudado” visualmente */
  display: inline-block;
}

.email-link:hover {
  text-decoration: underline;
}