/* -------------------- RESET SIMPLES -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #2F2F2F;
    background-color: #FFFFFF;
}

/* -------------------- CORES BASE -------------------- */
/* 
Terracota rosada: #D29585
Rosa queimado:    #D1A39F
Nude rosado:      #F8ECEA
Grafite:          #2F2F2F
Branco:           #FFFFFF
*/

/* -------------------- HEADER / MENU -------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 8vw;
    border-bottom: 1px solid #F0E4E0;
    backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header nav a {
    text-decoration: none;
    font-size: 0.95rem;
    color: #444;
    position: relative;
}

.header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background-color: #D29585;
    transition: width 0.2s ease;
}

.header nav a:hover::after {
    width: 100%;
}

.btn-menu {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid #D29585;
    color: #D29585 !important;
}

.btn-menu:hover {
    background-color: #D29585;
    color: #fff !important;
}

/* -------------------- HERO -------------------- */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    padding: 4rem 8vw 5rem;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #F8ECEA 0%, #FFFFFF 50%, #F8ECEA 100%);
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    margin-bottom: 0.5rem;
}

.hero-text h3 {
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9C6C60;
    margin-bottom: 1.2rem;
}

.hero-text p {
    font-size: 1.05rem;
    max-width: 440px;
    margin-bottom: 1.8rem;
    color: #444;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.btn-primario,
.btn-secundario {
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    display: inline-block;
}

.btn-primario {
    background-color: #D29585;
    color: #fff;
    border: 1px solid #D29585;
}

.btn-primario:hover {
    filter: brightness(1.05);
}

.btn-secundario {
    border: 1px solid #D29585;
    color: #D29585;
    background-color: transparent;
}

.btn-secundario:hover {
    background-color: #F8ECEA;
}

.hero-img {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img img {
    width: 100%;
    max-width: 320px;
    border-radius: 200px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* Forma orgânica */
.shape {
    position: absolute;
    right: -10%;
    top: 10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 30% 20%, #D1A39F, #F8ECEA 60%);
    border-radius: 55% 45% 60% 40%;
    opacity: 0.5;
    z-index: 1;
}

/* -------------------- SEÇÕES GENÉRICAS -------------------- */
section {
    padding: 4rem 8vw;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* -------------------- SOBRE -------------------- */
.sobre {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 3rem;
    align-items: center;
}

.sobre-img img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.sobre-texto p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.sobre-texto blockquote {
    border-left: 3px solid #D29585;
    padding-left: 1rem;
    margin-top: 1rem;
    font-style: italic;
    color: #9C6C60;
}

/* -------------------- ABORDAGEM & SERVIÇOS -------------------- */
.abordagem,
.servicos {
    background-color: #FFF9F7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 1.6rem;
    border: 1px solid #F1DED7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #5C3A33;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* -------------------- DEPOIMENTOS -------------------- */
.depoimentos {
    background-color: #F8ECEA;
}

.depoimentos h2 {
    text-align: center;
}

.depo-container {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.depo {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 1.6rem;
    position: relative;
    border: 1px solid #E7C9C0;
}

.depo::before {
    content: "“";
    position: absolute;
    top: -1.2rem;
    left: 0.4rem;
    font-size: 4rem;
    color: #E1ADA1;
    opacity: 0.3;
}

.depo p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.depo span {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #9C6C60;
}

/* -------------------- CONTATO -------------------- */
.contato {
    background-color: #FFFFFF;
}

.contato h2 {
    text-align: center;
}

.contato > p {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    color: #555;
}

.contato-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: flex-start;
}

.form-contato {
    background-color: #FFF9F7;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #F1DED7;
}

.form-contato label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #444;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #E3C9C0;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-contato input:focus,
.form-contato textarea:focus {
    outline: none;
    border-color: #D29585;
    box-shadow: 0 0 0 1px rgba(210,149,133,0.2);
}

.form-contato button {
    width: 100%;
}

.contato-info {
    padding: 1rem;
}

.contato-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contato-info p {
    margin-bottom: 0.8rem;
    color: #555;
}

/* -------------------- RODAPÉ -------------------- */
.footer {
    background-color: #2F2F2F;
    color: #F8ECEA;
    text-align: center;
    padding: 1.5rem 8vw 2rem;
    font-size: 0.9rem;
}

.footer p + p {
    margin-top: 0.2rem;
}

/* -------------------- RESPONSIVO -------------------- */
@media (max-width: 900px) {
    .header {
        padding-inline: 5vw;
    }

    .header nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: left;
        row-gap: 2.5rem;
    }

    .hero-img {
        justify-content: flex-start;
    }

    .shape {
        right: -20%;
        top: 50%;
        width: 320px;
        height: 320px;
    }

    .sobre {
        grid-template-columns: 1fr;
    }

    .sobre-img {
        order: -1;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .depo-container {
        grid-template-columns: 1fr;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding-inline: 5vw;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 3rem;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .header nav {
        display: none; /* se quiser depois posso fazer menu mobile */
    }
}

.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 14px rgba(0,0,0,0.4);
}

.whatsapp-icon {
    margin-top: 2px;
}
