/* ======== 1. VARIÁVEIS E RESET ======== */
:root {
    /* Cores - Paleta Sofisticada (Minimalista) */
    --bg-body: #FFFFFF;
    --bg-light: #F8F8F8;
    --bg-dark: #121212;
    
    --text-main: #121212;
    --text-muted: #666666;
    --text-light: #999999;
    
    --accent-color: #C9A265; /* Gold/Bege Premium */
    --accent-hover: #B08D55;
    
    /* Tipografia */
    --font-display: 'Montserrat', sans-serif; /* Títulos */
    --font-body: 'Inter', sans-serif;        /* Texto */
    
    /* Estrutura */
    --container-width: 1200px;
    --radius: 4px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden; /* Previne scroll horizontal */
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ======== 2. UTILITÁRIOS ======== */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; }
.padding-0 { padding: 0; }
.bg-white { background: #fff; }
.bg-light { background: var(--bg-light); }
.bg-black { background: var(--bg-dark); color: white; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.max-800 { max-width: 800px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Botões */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: var(--font-display);
}

.btn-primary { background: var(--bg-dark); color: #fff; }
.btn-primary:hover { background: var(--accent-color); transform: translateY(-2px); }

.btn-outline { border: 1px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--bg-dark); }

.btn-gold { background: var(--accent-color); color: #fff; box-shadow: 0 10px 20px rgba(201, 162, 101, 0.3); }
.btn-gold:hover { background: var(--accent-hover); transform: translateY(-2px); }

.btn-large { padding: 1.2rem 3rem; font-size: 1rem; }

/* ======== 3. HEADER ======== */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}
.header.scrolled { padding: 0.8rem 0; box-shadow: var(--shadow); }

.header-container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }

.nav-desktop { display: none; gap: 2rem; }
.nav-desktop a { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; position: relative; }
.nav-desktop a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--accent-color); transition: var(--transition);
}
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn-header {
    display: none;
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    border: 1px solid var(--bg-dark); padding: 0.5rem 1.2rem; border-radius: var(--radius);
}
.btn-header:hover { background: var(--bg-dark); color: #fff; }

.menu-btn { font-size: 1.5rem; color: var(--bg-dark); }

/* ======== 4. HERO ======== */
.hero { height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 0; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 1; }

.hero-content { position: relative; z-index: 2; color: #fff; padding-top: 60px; }
.hero-tag { display: inline-block; background: var(--accent-color); padding: 0.3rem 0.8rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; border-radius: 2px; }

.hero h1 { font-size: 3rem; margin-bottom: 1.5rem; color: #fff; line-height: 1.1; }
.hero h1 strong { -webkit-text-stroke: 1px #fff; color: transparent; }
.hero p { font-size: 1.1rem; max-width: 500px; margin-bottom: 2.5rem; opacity: 0.9; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ======== 5. TICKER ======== */
.ticker-wrap { background: var(--bg-dark); color: #fff; padding: 0.8rem 0; overflow: hidden; white-space: nowrap; }
.ticker { display: inline-block; animation: ticker 25s linear infinite; }
.ticker-item { display: inline-block; padding: 0 2rem; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ======== 6. MANIFESTO (STATS) ======== */
.text-block h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.text-block p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }

.stats-row { display: flex; gap: 2rem; margin-top: 2rem; border-top: 1px solid #eee; padding-top: 2rem; }
.stat-item strong { display: block; font-size: 1.8rem; font-family: var(--font-display); color: var(--bg-dark); line-height: 1; }
.stat-item span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }

.image-block { position: relative; height: 500px; }
.img-main { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.floating-card {
    position: absolute; bottom: 30px; left: -30px;
    background: #fff; padding: 1.5rem; border-radius: var(--radius);
    box-shadow: var(--shadow); display: flex; align-items: center; gap: 1rem;
    max-width: 250px;
}
.floating-card i { color: var(--accent-color); font-size: 1.5rem; }
.floating-card p { font-size: 0.9rem; font-weight: 600; font-style: italic; margin: 0; }

/* ======== 7. STEPS ======== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.step-card { background: #fff; padding: 2rem; border-radius: var(--radius); transition: var(--transition); border: 1px solid transparent; }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #eee; }
.step-icon { width: 50px; height: 50px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--accent-color); font-size: 1.5rem; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ======== 8. CATEGORIES ======== */
.categories-grid { display: grid; grid-template-columns: 1fr; }
.cat-item { position: relative; height: 400px; overflow: hidden; display: block; }
.cat-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    transform: translateY(10px); transition: var(--transition);
}
.cat-overlay h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--bg-body);}
.cat-overlay span { font-size: 0.85rem; text-transform: uppercase; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; opacity: 0; transition: var(--transition); }

.cat-item:hover img { transform: scale(1.05); }
.cat-item:hover .cat-overlay { transform: translateY(0); }
.cat-item:hover .cat-overlay span { opacity: 1; }

/* ======== 9. FOUNDER ======== */
.founder-section { background: var(--bg-light); }
.founder-img img { border-radius: var(--radius); width: 100%; }
.founder-text { padding: 2rem 0; }
.founder-text h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.founder-text .lead { font-size: 1.2rem; font-style: italic; color: var(--text-main); margin-bottom: 1.5rem; font-family: var(--font-display); }
/* Ajuste da Assinatura: Maior e com menos espaço em cima */
.signature { height: 150px; margin-top: 0; opacity: 0.7; }

/* ======== 10. GALERIA MASONRY ======== */
.masonry-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; auto-rows: 200px;
}
.masonry-item { overflow: hidden; border-radius: var(--radius); position: relative; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.masonry-item:hover img { transform: scale(1.05); }

/* Classes auxiliares para masonry simples */
.h-1 { grid-row: span 1; }
.h-2 { grid-row: span 2; }

.center-btn { text-align: center; margin-top: 3rem; }
.center-btn .btn-outline { border-color: var(--bg-dark); color: var(--bg-dark); }
.center-btn .btn-outline:hover { background: var(--bg-dark); color: #fff; }

/* ======== 11. DEPOIMENTOS ======== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.review-card { background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid #eee; }
.review-card .stars { color: var(--accent-color); margin-bottom: 1rem; letter-spacing: 2px; }
.review-card p { font-style: italic; margin-bottom: 1.5rem; color: var(--text-muted); }
.author { display: flex; align-items: center; gap: 1rem; }
.author .avatar { width: 40px; height: 40px; background: var(--bg-dark); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.author span { font-weight: 600; font-size: 0.9rem; }

/* ======== 12. FAQ ======== */
.accordion { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; }
.accordion-header {
    width: 100%; padding: 1.2rem; text-align: left; background: #fff;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 1rem;
}
.accordion-body {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    padding: 0 1.2rem; background: #fff; color: var(--text-muted);
}
.accordion-item.active .accordion-body { padding-bottom: 1.2rem; max-height: 200px; }
.accordion-item.active .accordion-header i { transform: rotate(180deg); }

/* ======== 13. CTA VIP ======== */
.cta-section { background: var(--bg-dark); color: #fff; text-align: center; padding: 8rem 0; overflow: hidden; }
.cta-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #222 0%, #000 100%); opacity: 0.5;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-tag { color: var(--accent-color); font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; display: block; margin-bottom: 1rem; }
.cta-content h2 { font-size: 3rem; margin-bottom: 1.5rem; color: #fff; }
.cta-content p { font-size: 1.1rem; color: #ccc; margin-bottom: 3rem; }
.cta-form-fake { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.small-print { font-size: 0.8rem; color: #666; margin-top: 0.5rem; }

/* ======== 14. FOOTER ======== */
.footer { padding: 5rem 0 0; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #222; }
.footer-col h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-col h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; color: #666; }
.footer-col p { color: #999; margin-bottom: 1rem; }
.footer-col a { display: block; color: #ccc; margin-bottom: 0.8rem; }
.footer-col a:hover { color: var(--accent-color); }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a { font-size: 1.5rem; color: #fff; }

.footer-bottom { text-align: center; padding: 2rem 0; font-size: 0.85rem; color: #555; }

/* ======== 15. MOBILE MENU & FAB ======== */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: #fff; z-index: 200; transform: translateX(100%);
    transition: transform 0.4s ease; display: flex; flex-direction: column;
    justify-content: center; align-items: center; gap: 2rem;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a { font-size: 1.5rem; font-family: var(--font-display); font-weight: 700; color: var(--bg-dark); }
.mobile-menu .highlight { color: var(--accent-color); }
.close-menu { position: absolute; top: 2rem; right: 2rem; font-size: 2rem; }

.fab-whatsapp {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 60px; height: 60px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2rem; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 90; transition: var(--transition);
}
.fab-whatsapp:hover { transform: scale(1.1); }
.tooltip {
    position: absolute; right: 70px; background: #fff; color: #000;
    padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.8rem; font-weight: 600;
    box-shadow: var(--shadow); opacity: 0; transition: var(--transition); pointer-events: none;
    white-space: nowrap;
}
.fab-whatsapp:hover .tooltip { opacity: 1; right: 80px; }

/* ======== 16. ANIMATIONS ======== */
.animate-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* ======== 17. MEDIA QUERIES (RESPONSIVO) ======== */
/* Aqui ajustamos o comportamento da Galeria
   para mostrar o item extra apenas em telas maiores 
*/
.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }
    
    .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .masonry-grid { grid-template-columns: repeat(4, 1fr); auto-rows: 300px; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    
    .nav-desktop { display: flex; }
    .btn-header { display: inline-block; }
    .menu-btn { display: none; }
    
    .h-1 { grid-column: span 1; }
    .h-2 { grid-column: span 2; }
    
    .hero h1 { font-size: 4.5rem; }
}

@media (max-width: 767px) {
    .section { padding: 4rem 0; }
    .stats-row { flex-wrap: wrap; }
    .hero h1 { font-size: 2.8rem; }
    .floating-card { left: 10px; bottom: -20px; width: 90%; }
    .categories-grid { grid-template-columns: 1fr; }
    .cat-item { height: 250px; }
    .masonry-grid { grid-template-columns: 1fr 1fr; auto-rows: 200px; }
}