:root {
    --nude-light: #FBF9F7;
    --nude-mid: #F2EBE6;
    --rose-gold: #C5A08E;
    --text-main: #4A4442;
    --text-muted: #827A77;
    --white: #FFFFFF;
    --damme-red: #8C0F2A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--nude-light);
    color: var(--text-main);
    line-height: 1.8;
}

h1, h2, h3, h4, em { font-family: 'Playfair Display', serif; font-weight: 700; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* Navbar Superior */
.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 100px; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--rose-gold); }
.btn-whatsapp { background: var(--rose-gold); color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.btn-whatsapp:hover { background: var(--text-main); }

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url("image-banner-damme.png") !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    background-color: #333; /* Isso ajuda a ver se a seção existe */
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.6), transparent); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.tagline { display: block; text-transform: uppercase; letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 20px; color: var(--rose-gold); }
.hero h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; }
.hero h1 em { font-weight: 400; font-style: italic; }
.hero p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; font-weight: 300; }
.hero-badges { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.badge { background: rgba(255,255,255,0.15); padding: 12px 20px; border-radius: 4px; font-size: 0.85rem; backdrop-filter: blur(10px); display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.2); }
.hero-btns { display: flex; gap: 20px; }
.btn-main { background: var(--rose-gold); color: white; padding: 20px 45px; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.btn-ghost { border: 2px solid white; color: white; padding: 18px 45px; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
.btn-main:hover { background: white; color: var(--rose-gold); }
.btn-ghost:hover { background: white; color: var(--text-main); }

/* Seções Gerais */
section { padding: 120px 0; }
.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 { font-size: 3rem; margin-bottom: 15px; }
.section-title h2 span { color: var(--rose-gold); font-style: italic; font-weight: 400; }
.section-title p { font-size: 1.1rem; color: var(--text-muted); }

/* Concept Section */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.concept-img { position: relative; }
.img-float { width: 100%; border-radius: 10px; box-shadow: 30px 30px 0 var(--nude-mid); }
.floating-card { position: absolute; bottom: -30px; right: 20px; background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); text-align: center; }
.floating-card strong { display: block; font-size: 2rem; color: var(--rose-gold); font-family: 'Playfair Display'; }
.concept-text .sub { color: var(--rose-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 15px; display: block; }
.concept-text h2 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 30px; }
.mini-features { margin-top: 40px; display: grid; gap: 30px; }
.m-feat { display: flex; gap: 20px; align-items: flex-start; }
.m-feat i { color: var(--rose-gold); width: 30px; height: 30px; flex-shrink: 0; }
.m-feat h4 { font-size: 1.3rem; margin-bottom: 5px; }

/* Safety Section */
.safety { background: var(--white); }
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.safety-card { text-align: center; padding: 50px 30px; background: var(--nude-light); border-radius: 8px; transition: 0.3s; }
.safety-card:hover { transform: translateY(-10px); background: var(--nude-mid); }
.safety-card i { width: 50px; height: 50px; color: var(--rose-gold); margin-bottom: 25px; }

/* Services Section */
.services-tabs { max-width: 800px; margin: 0 auto; }
.service-item { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--nude-mid); transition: 0.3s; }
.service-item:hover { padding-left: 20px; border-bottom-color: var(--rose-gold); }
.s-info h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--text-main); }
.s-info p { font-size: 0.95rem; color: var(--text-muted); }
.price { font-weight: 600; color: var(--rose-gold); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Franchise Box */
.franchise-box { background: var(--text-main); color: white; display: grid; grid-template-columns: 1.2fr 0.8fr; border-radius: 15px; overflow: hidden; }
.franchise-text { padding: 80px; }
.franchise-text .tag { color: var(--rose-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 20px; display: block; }
.franchise-text h2 { font-size: 3.5rem; color: white; margin-bottom: 30px; line-height: 1.1; }
.franchise-text h2 span { color: var(--rose-gold); font-style: italic; }
.benefit-list { list-style: none; margin: 30px 0; }
.benefit-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 300; }
.benefit-list i { color: var(--rose-gold); width: 18px; }
.btn-white { background: white; color: var(--text-main); padding: 20px 40px; text-decoration: none; display: inline-block; font-weight: 600; margin-top: 20px; transition: 0.3s; }
.btn-white:hover { background: var(--rose-gold); color: white; }
.franchise-img img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
footer { background: var(--nude-mid); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.footer-logo { height: 95px; margin-bottom: 25px; }
.footer-links h4, .footer-social h4 { margin-bottom: 25px; font-size: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: var(--text-muted); transition: 0.3s; }
.footer-links a:hover { color: var(--rose-gold); }
.social-icons { display: flex; gap: 20px; }
.social-icons a { color: var(--text-main); transition: 0.3s; }
.social-icons a:hover { color: var(--rose-gold); }
.footer-bottom { padding: 40px 0; text-align: center; font-size: 0.85rem; color: var(--text-muted); }

/* Animações */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsividade */
@media (max-width: 992px) {
    .grid-2, .franchise-box, .safety-grid, .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero h1 { font-size: 3rem; }
    .franchise-text { padding: 40px; }
    .nav-links { display: none; }
}

/* Playlist Section */
.playlist-section {
    background-color: var(--white);
    padding: 100px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Ajuste fino para mobile */
@media (max-width: 768px) {
    .playlist-section {
        padding: 60px 0;
    }
}