/* --- Paleta de Cores e Variáveis --- */
:root {
    --bg-white: #ffffff;
    --bg-soft-pink: #fff0f5; /* Rosa bem clarinho para fundos */
    --primary-pink: #F59CBA; /* Rosa Bebê */
    --deep-pink: #F59CBA; /* Rosa mais forte para hover/detalhes */
    
    --gold: #d4af37;
    --gold-gradient: linear-gradient(135deg, #e6c86e 0%, #d4af37 100%);
    
    --text-dark: #333333;
    --text-gray: #666666;
    --shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.product-carousel {
    background: #f9f9f9;
}

.carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-track img {
    min-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn.prev {
    left: 15px;
}

.carousel-btn.next {
    right: 15px;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
img { max-width: 100%; height: auto; display: block; }

html { scroll-behavior: smooth; }

/* evita que âncoras fiquem escondidas atrás da navbar fixa */
header, section { scroll-margin-top: 100px; }

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden; /* evita pequenos overflows horizontais em mobile */
    -webkit-tap-highlight-color: transparent; /* remove o destaque amarelo em alguns navegadores móveis */
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--text-dark); }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- Utilitários --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.gold-text { color: var(--gold); font-weight: 700; }
.gold-text-shine {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pink-highlight { color: var(--deep-pink); }
.section-padding { padding: 80px 0; }

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    color: var(--text-dark);
    position: fixed!important;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    top: 0;
    left: 0;
    right: 0;
}

.logo { font-size: 1.5rem; font-weight: 700; font-family: 'Playfair Display', serif; letter-spacing: 1px; display: flex; align-items: center; }
.logo-symbol { color: var(--primary-pink); }
.logo-image { height: 80px; width: auto; display: block; }

.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { color: var(--text-dark); font-weight: 500; font-size: 0.9rem; }
.nav-links a:hover { color: var(--gold); }

.btn-nav {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--gold) !important;
}
.btn-nav:hover { background: var(--gold); color: white !important; }

.menu-toggle { display: none; cursor: pointer; padding: 8px; border-radius: 50%; }

/* --- Hero Section --- */
.hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(to right, #FFF5FA 50%, #FFE9F3 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.hero-text { flex: 1; max-width: 550px; }
.tag {
    background: var(--bg-soft-pink);
    color: var(--deep-pink);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.hero h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.hero p { color: var(--text-gray); margin-bottom: 30px; font-size: 1.1rem; line-height: 1.6; }

.cta-group { display: flex; gap: 15px; margin-bottom: 30px; }

.trust-badges { display: flex; gap: 20px; color: var(--text-gray); font-size: 0.9rem; }
.trust-badges i { color: var(--gold); margin-right: 5px; }

/* --- Botões --- */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary {
    background: var(--gold-gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6); }

.btn-outline {
    border: 2px solid var(--primary-pink);
    background: transparent;
    color: var(--deep-pink);
}
.btn-outline:hover { background: var(--bg-soft-pink); }

/* --- Formulário Hero --- */
.hero-form-wrapper { flex: 1; display: flex; justify-content: flex-end; }
.register-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 400px;
    border-top: 5px solid var(--primary-pink);
}
.register-card .open-cadastro { display: inline-block; margin: 8px auto 0; width: 260px; text-align: center; }
.register-card .open-cadastro .btn { padding: 10px 18px; }
@media (max-width: 768px) {
    .register-card { padding: 25px; }
    .register-card .open-cadastro { width: 100%; }
}

/* --- Modal de Cadastro --- */
.modal { display: none; position: fixed; inset: 0; align-items: center; justify-content: center; z-index: 2000; padding: 30px; }
.modal.active { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(2px); }
.modal-content { position: relative; z-index: 2; width: 100%; max-width: 900px; display: flex; align-items: center; justify-content: center; padding: 10px; }
.modal-card { max-width: 900px; width: 100%; padding: 36px; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #ffffff 100%); box-shadow: 0 12px 40px rgba(0,0,0,0.08); 
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
} 
.modal-close { position: absolute; right: 20px; top: 20px; background: transparent; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-dark); }
body.modal-open { overflow: hidden; }

.modal-subtitle { color: var(--text-gray); margin-top: 6px; margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-subtitle { font-size: 0.95rem; color: var(--text-dark); margin: 6px 0 10px; padding-bottom: 6px; border-bottom: 1px solid rgba(0,0,0,0.04); }
.form-actions { display: flex; justify-content: flex-end; margin-top: 12px; }
.req { color: var(--primary-pink); margin-left: 6px; font-weight: 700; }

.modal-card .input-group label { color: var(--text-gray); font-weight: 600; margin-bottom: 6px; }
.modal-card .input-group input, .modal-card .input-group select { background: #fbfbfb; border: 1px solid #eee; padding: 12px; border-radius: 10px; font-size: 0.95rem; }
.modal-card .input-group input:focus, .modal-card .input-group select:focus { border-color: var(--gold); box-shadow: 0 6px 20px rgba(212,175,55,0.08); }

@media (max-width: 1024px) {
    .modal-card { max-width: 720px; }
}

@media (max-width: 768px) {
    .modal { align-items: flex-start; padding-top: 20px; padding-bottom: 20px; }
    .modal-card { padding: 18px; border-radius: 12px; max-height: calc(100vh - 40px); overflow-y: auto; }
    .form-grid { grid-template-columns: 1fr; }
    .form-actions { justify-content: center; }
    .modal-card .input-group input, .modal-card .input-group select { font-size: 1rem; }
    .modal-close { right: 12px; top: 12px; }
    /* reduzir sombra dos botões em telas pequenas para evitar overflow visual */
    .btn-primary { box-shadow: none; }
}

.register-card h3 { font-size: 1.5rem; margin-bottom: 5px; }
.register-card p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 25px; }

.input-group { margin-bottom: 15px; }
.input-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--text-dark); }
.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
    background: #fdfdfd;
}
.input-group input:focus { border-color: var(--gold); background: white; }

.btn-submit {
    width: 100%;
    background: var(--deep-pink);
    color: white;
    margin-top: 10px;
}
.btn-submit:hover { background: #c2185b; }

.secure-msg { display: block; text-align: center; margin-top: 15px; font-size: 0.75rem; color: #999; }

/* --- Vantagens --- */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}
.feature-card:hover { border-color: var(--primary-pink); transform: translateY(-5px); box-shadow: var(--shadow); }

.icon-box {
    width: 70px; height: 70px;
    background: var(--bg-soft-pink);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem; color: var(--deep-pink);
}
.feature-card h3 { margin-bottom: 15px; font-size: 1.2rem; }
.feature-card p { font-size: 0.95rem; color: var(--text-gray); line-height: 1.6; }

/* --- Catalogo Banner --- */
.catalog-banner {
    background: url('https://images.unsplash.com/photo-1589128777073-263566ce5d98?q=80&w=1000&auto=format&fit=crop') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

@media (max-width: 768px) {
    .catalog-banner { height: 260px; }
    .catalog-banner .content h2 { font-size: 2rem; }
}
.overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(245, 156, 186, 0.5); }
.content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.content h2 { color: white; font-size: 3rem; margin-bottom: 15px; margin-top: 0; }
.content p { color: white; font-size: 1.1rem; margin-bottom: 0; }
.btn-white { background: white; color: var(--text-dark); padding: 12px 35px; border-radius: 30px; font-weight: 700; display: inline-block; }
.btn-white:hover { background: #F59CBA; color: white; transition: all 0.3s ease; }

/* --- Sobre --- */
.about-flex { display: flex; align-items: center; gap: 50px; }
.about-text { flex: 1; }
.about-text h3 { font-size: 2rem; margin-bottom: 20px; position: relative; display: inline-block; }
.about-text h3::after { content:''; display: block; width: 50%; height: 3px; background: var(--gold); margin-top: 5px; }
.about-text p { margin-bottom: 25px; line-height: 1.8; color: var(--text-gray); }
.link-gold { color: var(--gold); font-weight: 700; border-bottom: 1px solid var(--gold); }

.about-img { flex: 1; }
.about-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--bg-soft-pink); }

/* --- Footer --- */
footer { background: #f9f9f9; padding: 60px 0 20px 0; text-align: center; border-top: 1px solid #eee; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.socials { margin-top: 20px; }
.socials a { color: var(--text-dark); margin: 0 10px; font-size: 1.2rem; }
.socials a:hover { color: var(--primary-pink); }
.copyright { margin-top: 40px; font-size: 0.8rem; color: #999; }

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
    .container { padding: 0 4%; }
    .hero h1 { font-size: 2.5rem; }
    .section-title h2 { font-size: 2rem; }
    .about-text h3 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    /* Navbar */
    .navbar { 
        padding: 12px 3%; 
        justify-content: center;
        position: relative;
    }
    .logo { 
        flex-shrink: 0;
        text-align: center;
    }
    .logo-image { height: 50px; }
    .nav-links { 
        display: none !important;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid #eee;
        z-index: 999;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex !important; }
    .nav-links a { 
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
        font-size: 1rem;
        color: var(--text-dark);
        transition: 0.3s;
    }
    .nav-links a:hover { 
        background: var(--bg-soft-pink);
        color: var(--deep-pink);
    }
    .nav-links .btn-nav {
        border: 2px solid var(--gold);
        background: transparent;
        color: var(--gold);
        padding: 12px 20px;
        margin-top: 10px;
    }
    .nav-links .btn-nav:hover {
        background: var(--gold);
        color: white;
    }
    .menu-toggle { 
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem; 
        color: var(--text-dark); 
        cursor: pointer;
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Hero */
    .hero { 
        background: var(--bg-soft-pink); 
        padding-top: 100px; 
        padding-bottom: 40px;
        min-height: auto;
    }
    .hero-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 25px;
    }
    .hero-text { 
        margin-bottom: 0; 
        max-width: 100%;
        width: 100%;
    }
    .hero h1 { font-size: 1.8rem; line-height: 1.3; }
    .hero p { font-size: 0.95rem; margin-bottom: 20px; }
    .cta-group { 
        flex-direction: column; 
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    .cta-group a { width: 100%; text-align: center; padding: 10px 20px; }
    .trust-badges { 
        flex-direction: column; 
        justify-content: center; 
        align-items: center;
        gap: 10px;
    }
    .tag { font-size: 0.7rem; padding: 4px 12px; }

    /* Form */
    .hero-form-wrapper { 
        justify-content: center;
        width: 100%;
        flex: 1;
    }
    .register-card { 
        max-width: 100%; 
        padding: 25px;
        width: 100%;
    }
    .register-card h3 { font-size: 1.2rem; }
    .register-card p { font-size: 0.85rem; }
    .input-group { margin-bottom: 12px; }
    .input-group label { font-size: 0.8rem; }
    .input-group input { 
        padding: 10px; 
        font-size: 16px;
        border-radius: 6px;
    }
    .btn-submit { 
        padding: 10px; 
        font-size: 0.9rem;
    }
    .secure-msg { font-size: 0.7rem; }

    /* Seções */
    .section-title { margin-bottom: 30px; }
    .section-title h2 { 
        font-size: 1.8rem; 
        margin-bottom: 10px;
    }
    .section-title p { font-size: 0.95rem; }
    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    .feature-card { 
        padding: 25px 15px;
        border-radius: 12px;
    }
    .icon-box { 
        width: 60px; 
        height: 60px; 
        font-size: 1.2rem; 
        margin-bottom: 15px;
    }
    .feature-card h3 { font-size: 1rem; margin-bottom: 10px; }
    .feature-card p { font-size: 0.9rem; }

    /* Catálogo */
    .catalog-banner { 
        height: 300px;
        padding: 20px;
    }
    .content { padding: 0 15px; }
    .content h2 { 
        font-size: 1.6rem; 
        margin-bottom: 10px;
    }
    .content p { 
        font-size: 0.95rem; 
        margin-bottom: 15px;
    }
    .btn-white { 
        padding: 10px 25px; 
        font-size: 0.9rem;
    }

    /* About */
    .about { padding: 40px 0; }
    .about-flex { 
        flex-direction: column-reverse; 
        gap: 25px;
    }
    .about-text h3 { 
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .about-text h3::after { width: 40%; }
    .about-text p { 
        font-size: 0.95rem; 
        margin-bottom: 15px;
        line-height: 1.6;
    }
    .about-img img { 
        box-shadow: 8px 8px 0 var(--bg-soft-pink); 
        border-radius: 12px;
    }

    /* Footer */
    footer { padding: 30px 0 10px 0; }
    .footer-logo { font-size: 1rem; margin-bottom: 8px; }
    footer p { font-size: 0.85rem; margin-bottom: 15px; }
    .socials { margin-top: 15px; }
    .socials a { margin: 0 6px; font-size: 0.95rem; }
    .copyright { 
        margin-top: 20px; 
        font-size: 0.65rem;
    }

    /* Utilitários */
    .container { padding: 0 4%; }
    .section-padding { padding: 40px 0; }
}

@media (max-width: 480px) {
    /* Navbar mobile small */
    .navbar { padding: 10px 3%; }
    .logo-image { height: 50px; }
    .menu-toggle { font-size: 1.3rem; }

    /* Hero - Ultra mobile */
    .hero { 
        padding-top: 70px; 
        padding-bottom: 30px;
    }
    .hero-text { max-width: 100%; }
    .hero h1 { font-size: 1.5rem; line-height: 1.3; }
    .hero p { font-size: 0.9rem; margin-bottom: 20px; }
    .tag { padding: 4px 12px; font-size: 0.7rem; }
    .cta-group { gap: 10px; }
    .cta-group a { padding: 10px 20px; font-size: 0.9rem; }
    .trust-badges { gap: 15px; font-size: 0.8rem; }

    /* Form - Compacto */
    .register-card { padding: 20px; border-top: 3px solid var(--primary-pink); }
    .register-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .register-card p { font-size: 0.85rem; margin-bottom: 15px; }
    .input-group { margin-bottom: 12px; }
    .input-group label { font-size: 0.8rem; margin-bottom: 4px; }
    .input-group input { padding: 8px; font-size: 16px; }
    .btn-submit { font-size: 0.9rem; }
    .secure-msg { font-size: 0.7rem; margin-top: 10px; }

    /* Seções - Mobile small */
    .section-title { margin-bottom: 30px; }
    .section-title h2 { font-size: 1.5rem; margin-bottom: 8px; }
    .section-title p { font-size: 0.9rem; }
    .features-grid { gap: 15px; }
    .feature-card { padding: 20px 12px; border-radius: 12px; }
    .icon-box { width: 55px; height: 55px; font-size: 1.1rem; margin-bottom: 15px; }
    .feature-card h3 { font-size: 0.95rem; margin-bottom: 10px; }
    .feature-card p { font-size: 0.85rem; line-height: 1.5; }

    /* Catálogo - Mobile */
    .catalog-banner { height: 250px; padding: 20px 0; }
    .content { padding: 0 15px; }
    .content h2 { font-size: 1.4rem; margin-bottom: 8px; }
    .content p { font-size: 0.9rem; margin-bottom: 15px; }
    .btn-white { padding: 8px 20px; font-size: 0.85rem; }

    /* About - Mobile */
    .about { padding: 40px 0; }
    .about-flex { gap: 20px; }
    .about-text h3 { font-size: 1.2rem; margin-bottom: 15px; }
    .about-text h3::after { width: 40%; }
    .about-text p { font-size: 0.9rem; margin-bottom: 15px; line-height: 1.6; }
    .about-img img { box-shadow: 8px 8px 0 var(--bg-soft-pink); border-radius: 12px; }

    /* Footer - Mobile */
    footer { padding: 30px 0 10px 0; }
    .footer-logo { font-size: 1rem; margin-bottom: 8px; }
    footer p { font-size: 0.85rem; margin-bottom: 15px; }
    .socials { margin-top: 15px; }
    .socials a { margin: 0 6px; font-size: 0.95rem; }
    .copyright { margin-top: 20px; font-size: 0.65rem; }

    /* Utilitários */
    .container { padding: 0 3%; }
    .section-padding { padding: 40px 0; }
}

/* Animations */
.fade-in-up { animation: fadeInUp 1s ease forwards; opacity: 0; }
.fade-in-right { animation: fadeInRight 1s ease forwards; opacity: 0; animation-delay: 0.3s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }