/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
/* --- VARIÁVEIS E RESET --- */
        :root {
            --primary: #005f73;      /* Azul Petróleo Profundo */
            --primary-light: #0a9396; /* Azul Petróleo Claro */
            --accent: #ee9b00;       /* Laranja Queimado/Ouro */
            --dark: #1b263b;         /* Azul Noite */
            --gray: #f4f6f8;         /* Cinza Claro Fundo */
            --text: #333333;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .btn, .nav-link { font-family: 'Montserrat', sans-serif; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 100px 0; }
        .bg-gray { background-color: var(--gray); }
        .text-center { text-align: center; }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        /* --- TOP BAR --- */
        .top-bar {
            background-color: var(--dark);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.85rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-info span { margin-right: 20px; }
        .top-info i { color: var(--accent); margin-right: 5px; }
        .social-icons a { color: var(--white); margin-left: 15px; transition: 0.3s; }
        .social-icons a:hover { color: var(--accent); }

        /* --- HEADER --- */
        header {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -1px;
        }
        
        .logo span { color: var(--accent); }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            transition: 0.3s;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: 0.3s;
        }

        .nav-link:hover::after { width: 100%; }
        .nav-link:hover { color: var(--primary); }

        .btn-nav {
            padding: 10px 25px;
            background-color: var(--primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .btn-nav:hover { background-color: var(--dark); }

        /* --- HERO --- */
        .hero {
            background: linear-gradient(rgba(0, 95, 115, 0.85), rgba(27, 38, 59, 0.8)), url('https://images.unsplash.com/photo-1570222094114-28a9d88a27e6?q=80&w=2071&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 85vh;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-tag {
            background-color: var(--accent);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: inline-block;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }

        .btn {
            display: inline-block;
            padding: 18px 40px;
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(238, 155, 0, 0.3);
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(238, 155, 0, 0.5);
            background-color: #ffaa00;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--white);
            box-shadow: none;
            margin-left: 15px;
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* --- FEATURES (ICONS) --- */
        .features-bar {
            background-color: var(--white);
            padding: 50px 0;
            margin-top: -50px;
            position: relative;
            z-index: 10;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            border-bottom: 1px solid #eee;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(10, 147, 150, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .feature-text h4 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 700; }
        .feature-text p { font-size: 0.9rem; color: #666; line-height: 1.4; }

        /* --- ABOUT --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-img {
            position: relative;
        }

        .about-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        .about-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            text-align: center;
        }

        .about-badge h3 { font-size: 2.5rem; color: var(--accent); font-weight: 800; line-height: 1; }
        .about-badge p { font-size: 0.9rem; font-weight: 700; color: var(--dark); text-transform: uppercase; }

        .about-content h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--dark); }
        .about-content p { margin-bottom: 20px; color: #555; }
        
        .check-list { list-style: none; margin-bottom: 30px; }
        .check-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); }
        .check-list i { color: var(--accent); }

        /* --- CATEGORIES --- */
        .cat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .cat-card {
            position: relative;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            group: cat;
        }

        .cat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .cat-card:hover img { transform: scale(1.1); }

        .cat-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 30px;
            color: white;
        }

        .cat-overlay h3 { font-size: 1.5rem; margin-bottom: 5px; }
        .cat-overlay p { font-size: 0.9rem; opacity: 0.8; }

        /* --- BRANDS --- */
        .brands-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            opacity: 0.6;
        }
        
        .brand-item { font-size: 1.5rem; font-weight: 800; color: var(--dark); text-transform: uppercase; letter-spacing: 2px; }

        /* --- TESTIMONIALS --- */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-card::before {
            content: '\201C';
            font-size: 5rem;
            color: rgba(238, 155, 0, 0.2);
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: serif;
        }

        .stars { color: var(--accent); margin-bottom: 15px; }
        .t-text { font-style: italic; color: #555; margin-bottom: 20px; }
        .t-author { font-weight: 700; color: var(--primary); }

        /* --- CTA STRIP --- */
        .cta-strip {
            background: var(--primary);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a9396' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM36 0V4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-strip h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .cta-strip p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

        /* --- FOOTER --- */
        footer {
            background-color: var(--dark);
            color: #aaa;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #aaa; text-decoration: none; transition: 0.3s; }
        .footer-links a:hover { color: var(--accent); padding-left: 5px; }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            /* Geral */
            .section { padding: 60px 0; }
            .section-title { font-size: 2rem; }
            
            /* Topo e Nav */
            .top-bar { display: none; }
            .nav-menu { display: none; }
            .logo { font-size: 1.5rem; }
            .btn-nav { padding: 8px 15px; font-size: 0.8rem; }

            /* Hero Otimizado */
            .hero {
                min-height: auto;
                padding: 140px 0 80px; /* Mais espaço topo por causa do header fixo */
                background-attachment: scroll; /* Melhor performance mobile */
                text-align: center;
                background-position: 70% center; /* Ajuste foco imagem */
            }

            .hero h1 { 
                font-size: 2.4rem; 
                line-height: 1.2;
                margin-bottom: 20px;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .hero-content div {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .hero .btn, .hero .btn-outline {
                display: block;
                width: 100%;
                margin: 0;
                padding: 15px;
            }

            /* Features */
            .features-bar {
                margin-top: 0;
                padding: 40px 0;
            }
            
            .features-grid { gap: 20px; }
            .feature-item { flex-direction: column; text-align: center; }
            .feature-text h4 { margin-top: 10px; }

            /* Sobre */
            .about-grid { 
                grid-template-columns: 1fr; 
                gap: 40px;
            }

            .about-badge { 
                right: 50%;
                transform: translateX(50%);
                bottom: -30px;
                width: 80%;
                padding: 15px;
            }

            .about-content { margin-top: 40px; text-align: center; }
            .check-list li { justify-content: center; }

            /* Coleções */
            .cat-card { height: 250px; }

            /* Footer */
            .footer-grid { 
                grid-template-columns: 1fr; 
                text-align: center;
                gap: 30px;
            }
            
            .footer-links a:hover { padding-left: 0; color: var(--accent); }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 35px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: 0.3s;
        }
        
        .whatsapp-float:hover { transform: scale(1.1); }

        /* --- MODAL VITRINE (PREMIUM) --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(27, 38, 59, 0.85); /* Dark Blue Overlay */
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: var(--white);
            width: 100%;
            max-width: 1100px;
            max-height: 90vh;
            border-radius: 30px;
            overflow-y: auto;
            position: relative;
            padding: 50px;
            transform: scale(0.95) translateY(20px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        /* Scrollbar customizada para o modal */
        .modal-content::-webkit-scrollbar { width: 8px; }
        .modal-content::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
        .modal-content::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
        .modal-content::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        .close-modal {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 40px;
            height: 40px;
            background: #f0f0f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--dark);
            cursor: pointer;
            transition: 0.3s;
            z-index: 10;
        }

        .close-modal:hover { 
            background: var(--accent); 
            color: white; 
            transform: rotate(90deg);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .modal-header h2 {
            font-size: 2.2rem;
            color: var(--primary);
            font-weight: 800;
            letter-spacing: -1px;
        }
        
        .modal-header::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: 0.4s;
            border: 1px solid #f0f0f0;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: transparent;
        }

        .product-img-container {
            height: 250px;
            width: 100%;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* ou contain dependendo da imagem */
            transition: transform 0.6s;
            mix-blend-mode: multiply; /* Ajuda se o fundo da imagem não for perfeitamente branco */
        }

        .product-card:hover .product-img {
            transform: scale(1.08);
        }

        .product-info {
            padding: 25px;
            text-align: center;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }

        .product-price {
            color: var(--accent);
            font-weight: 800;
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: block;
        }

        .btn-product {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0, 95, 115, 0.2);
        }

        .btn-product:hover {
            background: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Responsivo Modal */
        @media (max-width: 768px) {
            .modal-content { padding: 30px 20px; }
            .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
            .product-img-container { height: 180px; }
            .modal-header h2 { font-size: 1.8rem; }
        }