/* =========================================
   1. VARIÁVEIS E CONFIGURAÇÕES GERAIS
   ========================================= */
:root {
    --bg-color: #FAFAFA;
    --text-color: #1A1A1A;
    --accent-green: #00E676;
    --accent-blue: #2979FF;
    --accent-salmon: #FF8A80;
    --grad-main: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    --grad-tricolor: linear-gradient(90deg, var(--accent-green), var(--accent-blue), var(--accent-salmon));
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    animation: pageIn 0.8s ease-out;
    display: flex; flex-direction: column; min-height: 100vh;
}

@keyframes pageIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll Reveal Animation Classes (NOVO) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* =========================================
   2. BACKGROUND AESTHETIC
   ========================================= */
.bg-blob {
    position: fixed; border-radius: 50%; filter: blur(100px); opacity: 0.12; z-index: -1;
    animation: float 12s infinite alternate;
}
.blob-1 { top: -10%; left: -10%; width: 600px; height: 600px; background: var(--accent-green); }
.blob-2 { bottom: 0%; right: -10%; width: 500px; height: 500px; background: var(--accent-blue); }
.blob-3 { top: 40%; left: 20%; width: 300px; height: 300px; background: var(--accent-salmon); animation-delay: -5s; }
@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(40px, 60px); } }

/* =========================================
   3. NAVBAR
   ========================================= */
nav {
    position: fixed; top: 0; width: 100%; padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; backdrop-filter: blur(15px); background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02); height: 80px;
}
.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px; position: relative; z-index: 1002; white-space: nowrap; }
.logo span { color: var(--accent-blue); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 600; font-size: 0.9rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-color); }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 3px;
    background: var(--grad-tricolor); border-radius: 2px;
}

/* =========================================
   4. HERO BANNER
   ========================================= */
.hero-wrapper {
    margin-top: 130px; width: 100%; padding: 0 5%; margin-bottom: 3rem; position: relative;
}
.hero-banner-img {
    width: 100%; height: 500px; background-color: #eee;
    background-image: url('../img/1.png'); background-size: cover; background-position: center;
    border-radius: 20px; box-shadow: var(--shadow-soft); position: relative; overflow: hidden;
}

/* =========================================
   5. VIDEO SECTION
   ========================================= */
.video-section {
    width: 100%; max-width: 360px; margin: 0 auto 4rem auto; padding: 0; text-align: center;
}
.video-container {
    position: relative; padding-bottom: 179.3%; height: 0; overflow: hidden;
    border-radius: 20px; border: none; background: #000; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.video-container video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.video-label {
    margin-bottom: 1rem; font-weight: 700; background: var(--grad-tricolor);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-transform: uppercase; letter-spacing: 2px;
}

/* =========================================
   6. CONTEÚDO PRINCIPAL
   ========================================= */
main { flex: 1; padding: 0 5%; max-width: 1400px; margin: 0 auto; width: 100%; }

.section-header { text-align: center; margin-bottom: 3rem; } /* NOVO */
.section-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; } /* NOVO */
.section-header p { color: #777; max-width: 600px; margin: 0 auto; } /* NOVO */

.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 3rem; margin-bottom: 5rem; }
.hero-text { flex: 1; }
.hero-tag {
    font-size: 0.75rem; font-weight: 800; color: var(--accent-blue); text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 1rem; background: rgba(41, 121, 255, 0.05);
    display: inline-flex; padding: 6px 12px; border-radius: 50px;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; letter-spacing: -2px; margin-bottom: 1.5rem; }
.highlight-green { color: transparent; -webkit-text-stroke: 1px var(--accent-green); }
.highlight-blue { color: var(--accent-blue); } /* NOVO */
.highlight-salmon { color: var(--accent-salmon); font-style: italic; }

.cta-btn {
    padding: 0.8rem 2rem; font-size: 1rem; font-weight: 700; background: #111; color: white; border: none;
    cursor: pointer; border-radius: 50px; display: inline-flex; align-items: center; gap: 10px;
    transition: var(--transition); position: relative; overflow: hidden; z-index: 1;
}
.cta-btn::before {
    content: ''; position: absolute; top:0; left:0; width:0%; height:100%; background: var(--grad-tricolor); z-index: -1; transition: var(--transition);
}
.cta-btn:hover::before { width: 100%; }
.cta-btn:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-3px); }

/* Botão Secundário (Borda) - NOVO */
.cta-btn.secondary {
    background: transparent; border: 2px solid #111; color: #111;
}
.cta-btn.secondary::before { background: #111; }
.cta-btn.secondary:hover { color: white; }

/* =========================================
   7. CARDS (CLEAN)
   ========================================= */
.hero-visuals { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.visual-card {
    background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-soft); text-align: center;
    border: none; display: flex; flex-direction: column; align-items: center; transition: var(--transition); position: relative;
}
.visual-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.visual-card i {
    font-size: 2.2rem; margin-bottom: 0.8rem; background: var(--grad-tricolor);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.visual-card h4 { font-weight: 700; margin-bottom: 0.2rem; }
.badge {
    position: absolute; top: 10px; right: 10px; background: var(--accent-salmon); color: white;
    font-size: 0.6rem; font-weight: 800; padding: 4px 10px; border-radius: 20px;
}

/* =========================================
   8. WHATSAPP & FOOTER
   ========================================= */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px; background: var(--grad-tricolor); color: white;
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); z-index: 999;
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s ease;
}
.whatsapp-float.show { opacity: 1; visibility: visible; transform: translateY(0); }
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

footer { background: white; padding: 3rem 5% 2rem; text-align: center; margin-top: auto; position: relative; }
footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--grad-tricolor); }
.footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.footer-logo { font-weight: 800; font-size: 1.2rem; }
.footer-logo span { color: var(--accent-green); }
.social-icons { display: flex; gap: 1rem; }
.social-icons a { color: #555; font-size: 1.3rem; transition: 0.3s; }
.social-icons a:hover { color: var(--accent-salmon); transform: translateY(-3px); }
.copyright { font-size: 0.75rem; color: #999; margin-top: 1.5rem; display: block; }

/* =========================================
   9. MOBILE MENU
   ========================================= */
.hamburger { display: none; cursor: pointer; z-index: 1002; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: #333; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
    position: fixed; top: 0; right: 0; width: 80%; max-width: 320px; height: 100vh; background: white; z-index: 1005;
    display: flex; flex-direction: column; padding: 4rem 2rem; gap: 2rem; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.active { transform: translateX(0); }
.close-menu { position: absolute; top: 25px; right: 25px; font-size: 1.8rem; cursor: pointer; color: #333; }
.mobile-menu a { font-size: 1.2rem; font-weight: 700; color: #333; border-bottom: 1px solid #f9f9f9; padding-bottom: 12px; }
.overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.4); z-index: 1004;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.overlay.active { opacity: 1; pointer-events: all; }

/* =========================================
   10. ESTILOS PÁGINA "SOBRE" & CARROSSEL
   ========================================= */

.about-hero { margin-bottom: 5rem; }

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.about-text h1 { margin-bottom: 1.5rem; }
.highlight-gradient {
    background: var(--grad-tricolor); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.bio-intro { font-size: 1.2rem; font-weight: 600; color: var(--text-color); margin-bottom: 1rem; }
.bio-desc { color: #666; margin-bottom: 2rem; text-align: justify; }

.stats-row {
    display: flex; gap: 3rem; border-top: 1px solid #eee; padding-top: 1.5rem;
}
.stat h3 { font-size: 2rem; font-weight: 900; color: var(--accent-blue); line-height: 1; }
.stat span { font-size: 0.8rem; color: #999; font-weight: 600; text-transform: uppercase; }

/* Moldura Foto Bio */
.about-img-wrapper { position: relative; }
.img-frame {
    width: 100%; height: 500px; border-radius: 20px; overflow: hidden;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.05);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-badge {
    position: absolute; bottom: 30px; left: -20px;
    background: white; padding: 10px 20px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); font-weight: 800;
    display: flex; gap: 10px; align-items: center;
}
.floating-badge i { color: var(--accent-green); }

/* --- CARROSSEL INFINITO (SLIDER) --- */
.partners-section {
    padding: 3rem 0; background: white; border-radius: 20px;
    box-shadow: var(--shadow-soft); text-align: center; overflow: hidden;
}
.partners-title { margin-bottom: 2rem; font-size: 1.5rem; color: #ccc; text-transform: uppercase; letter-spacing: 2px; }

.slider {
    height: 120px; margin: auto; overflow: hidden; position: relative; width: 100%;
}
/* Efeito de fade nas laterais do slider */
.slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
    content: ""; height: 100%; position: absolute; width: 100px; z-index: 2;
}
.slider::after {
    right: 0; top: 0; transform: rotateZ(180deg);
}
.slider::before { left: 0; top: 0; }

.slide-track {
    display: flex;
    /* Ajuste o width baseado no número de slides (ex: 12 slides * 200px) */
    width: calc(200px * 12);
    animation: scroll 30s linear infinite;
}

.slide {
    height: 100px; width: 200px; display: flex; align-items: center; justify-content: center; padding: 0 20px;
}
.slide img {
    max-width: 100%; max-height: 80px; filter: grayscale(100%); opacity: 0.5; transition: 0.3s;
}
.slide img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); } /* Ajuste: metade dos slides */
}

/* =========================================
   11. GALERIA & LOJA
   ========================================= */
.art-card {
    padding: 0 !important; overflow: hidden; display: flex; flex-direction: column; align-items: stretch;
    height: 100%; border: none; background: white; box-shadow: var(--shadow-soft); border-radius: 20px;
}
.img-container {
    width: 100%; height: 280px; position: relative; overflow: hidden;
    border-bottom: 3px solid transparent; border-image: var(--grad-tricolor) 1;
}
.img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.art-card:hover .img-container img { transform: scale(1.05); }
.overlay-card {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3);
    display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s;
}
.art-card:hover .overlay-card { opacity: 1; }
.overlay-btn {
    background: white; color: var(--text-color); padding: 12px 25px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; transform: translateY(20px); transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.art-card:hover .overlay-btn { transform: translateY(0); }
.overlay-btn:hover { color: var(--accent-blue); }
.card-info { padding: 1.5rem; text-align: left; }
.card-info h4 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-color); font-weight: 700;}
.card-info p { font-size: 0.85rem; color: #888; font-weight: 400; }
.shop-banner {
    background-image: url('../img/1.png'); color: white; padding: 3rem 2rem; border-radius: 25px;
    text-align: center; margin: 0 auto 4rem; max-width: 900px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); position: relative; overflow: hidden;
}
.shop-banner::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: var(--grad-tricolor);
}

/* =========================================
   12. NOVAS SEÇÕES DA HOME (PROCESSO, STATS, DEPOIMENTOS)
   ========================================= */

/* --- Processo --- */
.process-section { margin-bottom: 5rem; }
.process-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.step-card {
    background: white; padding: 2.5rem 1.5rem; border-radius: 20px; box-shadow: var(--shadow-soft);
    text-align: center; border: 1px solid rgba(0,0,0,0.02); transition: var(--transition);
}
.step-card:hover { transform: translateY(-5px); border-color: var(--accent-green); }
.step-icon {
    width: 70px; height: 70px; background: rgba(0, 230, 118, 0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
    font-size: 1.5rem; color: var(--accent-green);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: #666; }

/* --- Stats Banner --- */
.stats-banner {
    width: 100%; background: var(--grad-main); padding: 4rem 5%; margin-bottom: 5rem;
    display: flex; justify-content: space-around; align-items: center; color: white;
    text-align: center; box-shadow: 0 10px 30px rgba(41, 121, 255, 0.2);
}
.stat-item i { font-size: 2rem; margin-bottom: 0.5rem; opacity: 0.8; }
.stat-item h3 { font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 0.2rem; }
.stat-item span { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* --- Depoimentos --- */
.testimonials-section { margin-bottom: 6rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.testimonial-card {
    background: white; padding: 2.5rem; border-radius: 20px 20px 20px 0;
    box-shadow: var(--shadow-soft); position: relative; border-left: 5px solid var(--accent-salmon);
}
.quote-icon { font-size: 2rem; color: #eee; position: absolute; top: 1.5rem; right: 1.5rem; }
.testimonial-card p { font-style: italic; color: #555; margin-bottom: 1.5rem; font-size: 1.05rem; }
.client-info strong { display: block; color: var(--text-color); }
.client-info span { font-size: 0.8rem; color: #999; }

/* --- Final CTA --- */
.final-cta { text-align: center; margin-bottom: 5rem; padding: 4rem 2rem; background: #fff; border-radius: 20px; box-shadow: var(--shadow-soft); }
.final-cta h2 { font-size: 2rem; margin-bottom: 1rem; }
.final-cta p { margin-bottom: 2rem; color: #666; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* =========================================
   13. MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero-banner-img { height: 200px; }
    .hero-content { flex-direction: column; text-align: left; gap: 2rem; }
    .hero-visuals { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
    h1 { font-size: 2.2rem; }
    .logo { font-size: 1.2rem; }
    .footer-content { flex-direction: column; gap: 1rem; }
    .img-container { height: 220px; }
    .shop-banner { padding: 2rem 1.5rem; }
    /* Ajuste Sobre Mobile */
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .img-frame { height: 350px; }
    .stats-row { justify-content: center; }
    
    /* NOVOS AJUSTES MOBILE */
    .process-steps, .testimonials-grid { grid-template-columns: 1fr; }
    .stats-banner { flex-direction: column; gap: 2rem; padding: 3rem 5%; }
}