/* --- PALETA BLUSH & ROSE --- */
:root {
    --primary-pink: #e08fa8;
    --deep-rose: #b85c7a;
    --text-dark: #544249;
    --text-light: #8f7e85;
    --pink-glow: 0 10px 30px rgba(224, 143, 168, 0.25);
    --soft-border: 1px solid rgba(224, 143, 168, 0.2);
    --font-title: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* --- CONFIGURAÇÃO DO FUNDO (BODY) --- */
body {
    background-color: #fff9fb;
    background-image: 
        linear-gradient(to bottom, rgba(224, 143, 168, 0.1), rgba(255, 249, 251, 0.9)),
        url('fotos/fundo-site.jpeg'); 
    background-size: cover;
    background-position: center top; 
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    min-height: 100vh;
}

/* Tipografia */
h1, h2, h3 { font-family: var(--font-title); font-weight: 600; color: var(--text-dark); }
h1 {
    font-size: 4rem; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px;
    background: linear-gradient(to right, var(--text-dark), var(--deep-rose));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
h2 { font-size: 2.8rem; margin-bottom: 10px; }

.italic, .rose-text, .logo span {
    font-family: var(--font-title); font-style: italic; color: var(--primary-pink); font-weight: 400;
}

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 6%; position: fixed; width: 100%; z-index: 1000;
    background: rgba(255, 249, 251, 0.8); backdrop-filter: blur(8px);
    border-bottom: var(--soft-border);
}
.logo { font-size: 1.6rem; letter-spacing: 1px; color: var(--text-dark); }
.btn-whatsapp-top { color: var(--primary-pink); font-size: 1.8rem; transition: 0.3s; text-decoration: none; }
.btn-whatsapp-top:hover { color: var(--deep-rose); transform: scale(1.1); }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 0 6%; }
.hero-content { 
    max-width: 600px; 
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    padding: 45px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.hero p { font-size: 1.2rem; margin-bottom: 35px; }

/* Botões */
.btn-main {
    display: inline-block; padding: 18px 50px;
    background: linear-gradient(45deg, var(--primary-pink), var(--deep-rose));
    color: #fff; text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 50px; font-weight: 700; box-shadow: var(--pink-glow); transition: 0.4s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(224, 143, 168, 0.4); }

/* Seções e Cards */
.section { padding: 100px 6%; }
.bg-secondary { background-color: rgba(252, 238, 242, 0.5); backdrop-filter: blur(10px); }
.header-box { text-align: center; margin-bottom: 70px; }

.about-container, .location-container { 
    display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto;
}
.img-box, .location-img-box { width: 300px; height: 300px; position: relative; }
.img-box img, .location-img-box img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    border: 5px solid #fff; box-shadow: var(--pink-glow);
}
.location-img-box img { border-radius: 30px; height: 350px; } 

.text-box, .location-info {
    flex: 1; min-width: 300px; background: rgba(255, 255, 255, 0.85); padding: 50px;
    border-radius: 30px; border: var(--soft-border);
}
.address-row { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; color: var(--text-dark); font-weight: 600; }
.address-row i { color: var(--deep-rose); font-size: 1.2rem; }

.grid-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card {
    background: rgba(255, 255, 255, 0.85); padding: 45px 30px; text-align: center; border-radius: 20px; border: var(--soft-border);
}
.card i { font-size: 2.5rem; color: var(--deep-rose); margin-bottom: 25px; display: block; }
.card h3 { font-size: 1.4rem; margin-bottom: 15px; }

/* --- CARROSSEL 3D (PORTFÓLIO) --- */
.portfolioSwiper { 
    width: 100%; 
    padding-top: 50px; 
    padding-bottom: 80px; 
    transform-style: preserve-3d;
}
.portfolioSwiper .swiper-slide {
    width: 320px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 5px solid #fff;
    box-shadow: 0 15px 35px rgba(224, 143, 168, 0.2);
}
.portfolioSwiper .swiper-slide img {
    display: block; 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}
.portfolioSwiper .swiper-pagination-bullet { background: var(--primary-pink); opacity: 0.5; }
.portfolioSwiper .swiper-pagination-bullet-active { width: 25px; border-radius: 5px; opacity: 1; }

/* Footer */
footer { background: rgba(255,255,255,0.9); padding: 50px; text-align: center; border-top: var(--soft-border); }

/* --- RESPONSIVIDADE --- */
@media screen and (max-width: 900px) {
    body {
        background-attachment: scroll !important;
        background-position: center top !important;
        background-size: cover !important;
    }

    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .section { padding: 60px 5%; }
    .hero-content { padding: 30px; background: rgba(255, 255, 255, 0.85); }
    .about-container, .location-container { flex-direction: column; text-align: center; gap: 30px; }
    .img-box, .location-img-box { margin: 0 auto; }
    
    /* Diminui o card no celular */
    .portfolioSwiper .swiper-slide { width: 260px; height: 380px; }
}