:root {
    --primary: #367b9a;
    --primary-dark: #245064;
    --accent: #e3e5e9;
    --text-main: #535353;
    --white: #ffffff;
    --bg-light: #f8f7f4;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    background-color: var(--white);
}
.allcontent {
    position: relative;
    z-index: 1;
}

/* ================= HEADER ================= */
.menu {
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: var(--primary);
    height: 80px;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.menu-objetos {
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo_home {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nome {
    margin-left: 12px;
    color: var(--white);
    font-family: "Merriweather", serif;
}

.nome h1 { font-size: 1.4rem; }
.nome p { font-size: 0.8rem; opacity: 0.9; }

.menu-list {
    list-style: none;
    display: flex;
    gap: 8px;
}

.menu-list a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    padding: 10px 16px;
    position: relative;
    transition: var(--transition);
}

.menu-list a:hover {
    color: var(--primary-dark);
}

.action {
    border: 1px solid var(--accent);
    color: var(--primary);
    border-radius: 10px;
}

.action-mb {
    display: none;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* ================= HERO ================= */
.main {
    min-height: 90vh;
    margin-top: 80px;
    padding: 0 10%;
    display: flex;
    align-items: center;
    background: white;
}

.main h1 {
    font-family: "Merriweather", serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--primary);
    max-width: 700px;
}

.main p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px 0 30px;
}

.chamado {
    border: none;
    cursor: pointer;
    padding: 16px 38px;
    border-radius: 50px;
    background: var(--primary);
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    transition: var(--transition);
}

.chamado:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.main {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}
.content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}
.butterflies {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.butterflies-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.butterflies-layer span {
    position: absolute;
    font-size: clamp(16px, 2vw, 32px);
    opacity: 0.18;
    filter: hue-rotate(180deg) blur(0.5px);
    animation: fly linear infinite;
}

/* Borboleta */
.butterflies::before,
.butterflies::after {
    content: "🦋";
    position: absolute;
    font-size: 32px;
    opacity: 0.15;
    filter: blur(0.3px);
    animation: fly 18s linear infinite;
}

.butterflies::after {
    font-size: 22px;
    opacity: 0.12;
    left: 60%;
    animation-duration: 25s;
}

/* Animação suave */
@keyframes fly {
    from {
        transform: translateY(110vh) translateX(0) rotate(0deg);
    }
    to {
        transform: translateY(-20vh) translateX(80px) rotate(360deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    .butterflies-layer,
    .petals-layer,
    .breathing {
        animation: none !important;
    }
}
.petals-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.petals-layer span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(180, 200, 255, 0.4);
    border-radius: 50% 0 50% 50%;
    transform: rotate(45deg);
    animation: petals-fall linear infinite;
}

@keyframes petals-fall {
    from {
        transform: translateY(-10vh) rotate(0deg);
    }
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}
.fade-slide {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlide 1.6s ease forwards;
}

@keyframes fadeSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.breathing {
    animation: breathing 4s ease-in-out infinite;
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
}

/* ================= SOBRE ================= */
.sobre {
    padding: 100px 10%;
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
}

.sobre div { flex: 1; }

.sobre img {
    max-width: 480px;
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.sobre h2 {
    font-size: 2.4rem;
    font-family: "Merriweather", serif;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ================= DEMANDAS ================= */
.demandas {
    padding: 100px 5%;
    text-align: center;
    background-color: white;
}

.demandas h2 {
    font-size: 2.4rem;
    font-family: "Merriweather", serif;
    color: var(--primary);
}
.demandas-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin-inline: auto;
}
.demanda_1,
.demanda_2,
.demanda_3 {
    background: white;
    padding: 40px;
    border-radius: 22px;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.demanda_1:hover,
.demanda_2:hover,
.demanda_3:hover {
    transform: translateY(-12px) scale(1.02);
}
.texto {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

/* ================= FAQ ================= */
.FAQ {
    padding: 100px 0;
    background: var(--bg-light);
}

.FAQ h2 {
    text-align: center;
    font-family: "Merriweather", serif;
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 0 20px;
}

.faq {
    list-style: none;
}

.faq li label {
    padding: 16px;
    border-radius: 12px;
    display: block;
    cursor: pointer;
    margin-bottom: 10px;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.faq li label:hover {
    background: #f0f0f0;
}

.faq input {
    display: none;
}

.faq .resposta {
    color: var(--primary);
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq input:checked + label + .resposta {
    max-height: 300px;
    padding: 16px;
}

/* ================= CONTATO ================= */
/* Configurações da Divisória SVG */
.divisoria-svg {
    overflow: hidden;
    line-height: 0;
    background-color: #f8f7f4;
}

.divisoria-svg svg {
    height: 60px;
    width: 100%;
    fill: #c7dad4; /* Mesma cor de fundo da section-form */
}

/* Seção Principal */
.section-form {
    background-color: #c7dad4;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.container-form {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 40px;
    padding: 50px;
    display: grid;
    /* Grid de 3 colunas: Imagem(25%), Texto(35%), Form(40%) */
    grid-template-columns: 0.8fr 1.2fr 1.5fr; 
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Coluna da Imagem */
.contato-col-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 10px 10px 0px var(--primary); /* Detalhe moderno */
}

/* Coluna de Informações */
.contato-col-info .subtitulo {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.contato-col-info h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
}

.contato-col-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.lista-contatos {
    list-style: none;
}

.lista-contatos li {
    margin-bottom: 15px;
}

.lista-contatos a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.lista-contatos a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.lista-contatos i {
    font-size: 1.2rem;
}

/* Coluna do Formulário */
.formulario {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formulario input, 
.formulario textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 15px;
    background-color: #fafafa;
    font-family: inherit;
    transition: all 0.3s ease;
}

.formulario input:focus, 
.formulario textarea:focus {
    border-color: var(--primary);
    background-color: #fff;
    outline: none;
}

.inline-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.formulario textarea {
    height: 120px;
    resize: none;
}

.btn-enviar {
    background-color: var(--primary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-enviar:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(54, 123, 154, 0.2);
}

/* Responsividade */
@media (max-width: 1024px) {
    .container-form {
        grid-template-columns: 1fr; /* Tudo em uma coluna no tablet/mobile */
        padding: 30px;
        text-align: center;
    }

    .contato-col-img img {
        height: 300px;
        max-width: 300px;
        margin: 0 auto;
    }

    .lista-contatos a {
        justify-content: center;
    }

    .inline-fields {
        grid-template-columns: 1fr;
    }
}

/* ================= FOOTER ================= */
.footer {
    background: var(--primary);
    padding: 60px 20px 30px;
    text-align: center;
    color: #ccc;
    position: sticky;
    bottom: 0;
}

/* Ícones sociais */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #7aaedc; /* azul suave terapêutico */
    color: #fff;
    transform: translateY(-4px);
}

/* Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Copyright */
.footer-copy {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: white;
}

.footer-copy span {
    display: block;
    margin-top: 6px;
    color: white;
}
/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .container-form {
        grid-template-columns: 1fr;
    }

    .menu-list {
        position: absolute;
        top: 80px;
        right: 0;
        background: var(--primary);
        width: 100%;
        display: none;
        flex-direction: column;
    }

    .menu-list.menu-open {
        display: flex;
    }

    .action-mb {
        display: block;
        text-align: center;
    }

    .menu-list li {
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    .sobre{
        display: flex;
        flex-direction: column;
    }
    .demandas{
        padding: 4% 12%;
    }
    .texto{
        font-size: 12px;
    }
    .contato-col-img img{
        height: 450px;
    }
}
