/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --bg: #080808;
            --surface: #121212;
            --text: #f0f0f0;
            --accent: #ffffff;
            --muted: #666666;
            --border: rgba(255,255,255,0.08);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-weight: 400;
            letter-spacing: -0.02em;
        }

        .serif { font-family: 'Playfair Display', serif; font-style: italic; }

        /* Utility */
        .container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
        .section-padding { padding: 120px 0; }
        .text-center { text-align: center; }
        .flex-between { display: flex; justify-content: space-between; align-items: center; }
        
        /* Buttons */
        .btn-minimal {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: black;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid white;
        }
        .btn-minimal:hover {
            background: transparent;
            color: white;
        }

        /* Header */
        header {
            position: fixed;
            top: 0; width: 100%;
            z-index: 100;
            padding: 30px 0;
            transition: 0.3s;
            mix-blend-mode: difference;
        }
        .logo { font-size: 1.2rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: white; }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('../images/4eaa78df1557f0ccebc2018f5ce37eca.jpg') center/cover;
            filter: brightness(0.6);
            transform: scale(1.1);
            animation: slowZoom 20s infinite alternate;
        }
        @keyframes slowZoom { to { transform: scale(1); } }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
        }
        .hero h1 {
            font-size: 5vw;
            line-height: 1.1;
            margin-bottom: 30px;
        }
        .hero p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 40px;
            font-weight: 200;
        }

        /* Intro Section */
        .intro { background: var(--bg); }
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .intro-text h2 { font-size: 3rem; margin-bottom: 30px; }
        .intro-text p { color: var(--muted); margin-bottom: 20px; font-size: 1.1rem; }
        .stat-row {
            display: flex;
            gap: 50px;
            margin-top: 40px;
            border-top: 1px solid var(--border);
            padding-top: 30px;
        }
        .stat-number { font-size: 2.5rem; font-weight: 200; display: block; }
        .stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }

        /* Services Horizontal Scroll */
        .services { overflow: hidden; }
        .services-wrapper {
            display: flex;
            gap: 2px;
            overflow-x: auto;
            padding-bottom: 20px;
            scrollbar-width: none; /* Firefox */
        }
        .services-wrapper::-webkit-scrollbar { display: none; }
        
        .service-card {
            min-width: 400px;
            height: 600px;
            position: relative;
            background: var(--surface);
            transition: 0.3s;
            cursor: pointer;
            overflow: hidden;
            group: hover;
        }
        .service-card img {
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transition: 0.5s;
        }
        .service-card:hover img { opacity: 0.3; transform: scale(1.05); }
        .service-info {
            position: absolute;
            bottom: 40px; left: 40px;
            z-index: 2;
        }
        .service-num { font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; display: block; }
        .service-title { font-size: 2rem; margin-bottom: 10px; }
        .service-desc { 
            max-height: 0; overflow: hidden; transition: 0.5s; 
            color: rgba(255,255,255,0.7); font-size: 0.9rem;
        }
        .service-card:hover .service-desc { max-height: 100px; margin-top: 10px; }

        /* Comparison Slider (Refined) */
        .comparison { background: var(--surface); }
        .comp-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }
        .comp-img {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
        }
        .comp-after {
            background-image: url('../images/a32b7c6046e8d510dd5861358317c62a.jpg');
        }
        .comp-before {
            background-image: url('../images/a32b7c6046e8d510dd5861358317c62a.jpg');
            width: 50%;
            border-right: 1px solid white;
            filter: grayscale(100%) contrast(1.2) brightness(0.8); /* Simulated "Before" */
        }
        .comp-handle {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 60px; height: 60px;
            border: 1px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: ew-resize;
            backdrop-filter: blur(5px);
            z-index: 10;
        }

        /* Configurator (Clean) */
        .configurator { background: var(--bg); }
        .config-ui {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            border: 1px solid var(--border);
            padding: 40px;
        }
        .config-sidebar h3 { font-size: 1.5rem; margin-bottom: 30px; }
        .config-step { margin-bottom: 40px; }
        .config-step-title { 
            font-size: 0.8rem; text-transform: uppercase; color: var(--muted); margin-bottom: 15px; 
            display: flex; justify-content: space-between;
        }
        .radio-group { display: flex; flex-direction: column; gap: 10px; }
        .radio-option {
            display: flex;
            align-items: center;
            padding: 15px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: 0.2s;
        }
        .radio-option:hover, .radio-option.active {
            background: white;
            color: black;
            border-color: white;
        }
        .radio-option span { flex: 1; }
        .radio-price { font-size: 0.9rem; opacity: 0.6; }

        .config-preview {
            background: var(--surface);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            text-align: center;
        }
        .total-price { font-size: 4rem; font-weight: 200; margin: 20px 0; }
        .config-features { display: flex; gap: 20px; margin-bottom: 40px; }
        .feature-badge { 
            padding: 5px 15px; border: 1px solid var(--border); font-size: 0.8rem; border-radius: 20px; 
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 80px 0;
            font-size: 0.9rem;
            color: var(--muted);
        }
        .footer-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
        .footer-col h4 { color: white; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a { color: var(--muted); text-decoration: none; transition: 0.2s; }
        .footer-col a:hover { color: white; }

        @media (max-width: 768px) {
            /* Global Mobile Adjustments */
            html, body { overflow-x: hidden; width: 100%; }
            .container { padding: 0 20px; width: 100%; }
            .section-padding { padding: 80px 0; }
            img { max-width: 100%; height: auto; }
            
            /* Typography */
            h1 { font-size: 3rem !important; word-wrap: break-word; }
            h2 { font-size: 2rem !important; }
            p { font-size: 1rem !important; }
            
            /* Header */
            header { padding: 20px 0; background: rgba(8,8,8,0.95); backdrop-filter: blur(10px); }
            .logo { font-size: 1rem; }
            .btn-minimal { padding: 10px 15px; font-size: 0.7rem; }

            /* Hero */
            .hero h1 { 
                font-size: 2.2rem !important; 
                margin-bottom: 15px; 
                line-height: 1.2;
            }
            .hero p { 
                font-size: 0.9rem; 
                margin-bottom: 25px; 
                max-width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
            
            /* Intro */
            .intro-grid { grid-template-columns: 1fr; gap: 40px; }
            .stat-row { gap: 20px; justify-content: space-between; flex-wrap: wrap; }
            .stat-number { font-size: 2rem; }
            .intro-text { text-align: center; }
            
            /* Services */
            .service-card { 
                min-width: 85vw; 
                height: 450px; 
                margin-right: 10px;
            }
            .service-title { font-size: 1.5rem; }
            .service-desc { max-height: 100px; margin-top: 10px; opacity: 1; color: rgba(255,255,255,0.9); } 
            .service-card img { opacity: 0.4; }
            
            /* Ritual */
            .ritual-grid { 
                display: flex;
                flex-direction: row;
                gap: 20px;
                overflow-x: auto;
                padding-bottom: 20px;
                scroll-snap-type: x mandatory;
                /* Edge-to-edge effect */
                margin-right: -20px;
                padding-right: 20px;
                scrollbar-width: none;
            }
            .ritual-grid::-webkit-scrollbar { display: none; }

            .ritual-step { 
                min-width: 74vw;
                scroll-snap-align: start;
                padding-top: 20px;
                width: 74;
                flex-shrink: 0;
            }
            
            /* Fix for flex-between in Ritual vs Header */
            .ritual-header { 
                flex-direction: column; 
                align-items: flex-start; 
                gap: 20px; 
                margin-bottom: 40px;
            }
            .ritual-intro-text { 
                text-align: left; 
                max-width: 100%; 
            }
            
            /* Comparison */
            .comp-container { height: 350px; }
            
            /* Configurator */
            .config-ui { 
                display: flex;
                flex-direction: column;
                padding: 0;
                border: none;
                gap: 0;
            }
            .config-sidebar {
                padding: 20px;
                background: var(--surface);
                border: 1px solid var(--border);
                border-bottom: none;
            }
            .config-preview {
                padding: 30px 20px;
                border: 1px solid var(--border);
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .radio-group { gap: 8px; }
            .radio-option { padding: 12px; }
            
            /* Make the first step (Category) side-by-side */
            .config-step:first-of-type .radio-group {
                flex-direction: row;
            }
            .config-step:first-of-type .radio-option {
                flex: 1;
                justify-content: center;
                text-align: center;
                flex-direction: column;
                gap: 5px;
            }
            .config-step:first-of-type .radio-price {
                font-size: 0.7rem;
            }

            .total-price { font-size: 2.5rem; }
            .config-features { flex-direction: column; gap: 10px; }
            
            /* Brands */
            .brands-flex { gap: 30px; justify-content: center; }
            .brand-item { font-size: 1rem; }
            
            /* Testimonials */
            .quote-text { font-size: 1.2rem; }
            
            /* Footer */
            .footer-flex { flex-direction: column; gap: 40px; }
            .footer-col { width: 100%; text-align: center; }
            .footer-col p { margin: 0 auto; }
            
            /* FAQ */
            .faq-question { font-size: 0.95rem; }
        }

        /* New Sections CSS */
        
        /* The Ritual */
        .ritual-section { background: var(--bg); border-top: 1px solid var(--border); }
        .ritual-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .ritual-step {
            position: relative;
            padding-top: 20px;
            border-top: 1px solid var(--muted);
            transition: 0.3s;
        }
        .ritual-step:hover { border-color: white; }
        .ritual-num { font-size: 0.8rem; color: var(--muted); margin-bottom: 15px; display: block; }
        .ritual-title { font-size: 1.2rem; margin-bottom: 10px; color: white; }
        .ritual-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
        
        .ritual-intro-text {
            color: var(--muted);
            max-width: 300px;
            text-align: right;
        }

        /* Brands */
        .brands-section { background: var(--surface); padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .brands-flex {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            opacity: 0.5;
        }
        .brand-item { font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; color: white; }

        /* Testimonials */
        .testimonials { background: var(--bg); }
        .quote-card {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .quote-text {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-style: italic;
            line-height: 1.4;
            margin-bottom: 30px;
            color: #e0e0e0;
        }
        .quote-author {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--muted);
        }

        /* FAQ */
        .faq-section { background: var(--surface); }
        .faq-grid { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid var(--border); }
        .faq-question {
            padding: 25px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            transition: 0.3s;
        }
        .faq-question:hover { color: white; }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        .faq-item.active .faq-answer { max-height: 200px; padding-bottom: 25px; }
        .faq-icon { transition: 0.3s; }
        .faq-item.active .faq-icon { transform: rotate(45deg); }