/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c08081; /* Rosa elegante baseado na sua marca */
    --secondary-color: #8e5e5f;
    --text-color: #333;
    --light-bg: #fdf6f6;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}
.logo span {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-nav:hover {
    background-color: var(--secondary-color);
}

/* Burger Menu (Mobile) */
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.6)), url('./img/hero-bg.jpeg'); /* Você precisará de uma imagem chamada hero-bg.jpg ou alterar aqui */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    background-color: var(--light-bg); /* Fallback se não tiver imagem */
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-main {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.3s;
}

.btn-main:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Padronização de Seções */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Sobre */
.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-text {
    flex: 1;
}
.about-image {
    flex: 1;
    text-align: center;
}
.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2 0px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Woman Section */
.woman-container {
    display: flex;
    flex-direction: row-reverse; /* Inverte ordem para imagem ficar a direita */
    align-items: center;
    gap: 50px;
}
.woman-content {
    flex: 1;
}
.woman-image {
    flex: 1;
}
.woman-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.woman-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
}

/* Placeholders para Imagens (Remover se colocar imagens reais) */
.img-placeholder {
    width: 100%;
    height: 300px;
    background-color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    border-radius: 10px;
}
.img-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Outros Serviços */
.other-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.mini-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    width: 200px;
    text-align: center;
}

/* Contato */
.contact-wrapper {
    display: flex;
    gap: 40px;
}
.contact-info {
    flex: 1;
}
.map {
    flex: 1;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
    transform: scale(1.1);
}

/* Responsivo (Mobile) */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 70px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-links li {
        opacity: 0;
        margin: 30px 0;
    }

    .burger {
        display: block;
    }
    
    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0px); }
    }

    .hero h2 { font-size: 2rem; }
    .about-container, .woman-container, .contact-wrapper { flex-direction: column; }
    .woman-container { flex-direction: column; } /* Garante ordem correta no mobile */
}