:root {
    --color-primary: #f59e0b;
    --color-primary-dark: #e06a09;
    --color-secondary: #f59e0b;
    --color-accent: #ea580c;
    --color-background: #f3f4f6;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-white: #ffffff;
    --transition-speed: 0.3s;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background-color: black;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(11, 48, 109, 0.3);
    z-index: 1000;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    transition: color var(--transition-speed);
}

.logo:hover {
    color: #e5ff00;
    cursor: pointer;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--color-primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.hamburger-menu.active .hamburger-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-menu.active .hamburger-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Navigation */
.nav {
    display: flex;
    gap: 1rem;
    transition: all 0.5s ease;
}

.nav-link {
    color: white;
    font-size: 19px;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-3px);
}

.nav-link:hover::after {
    width: 80%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #3b82f6;
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .hamburger-menu {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.5s ease;
        z-index: 1001;
        padding: 2rem 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .header-actions .botao {
        display: none;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease, transform 5s ease;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 3;
    opacity: 0; /* Para animação GSAP */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1:hover {
    color: var(--color-primary);
}

.hero p {
    font-size: 1.25rem;
    color: #e5ff00;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--color-primary);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 6px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: wheel 1.5s infinite;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.arrow-down {
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Media Queries para a seção Hero */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

.btn-primary {
    text-decoration: none;
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    border-color: var(--color-primary-dark);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #444, #666);
    position: relative;
    color: white;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products .section-title {
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products .product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.products .product-card:nth-child(2) {
    animation-delay: 0.3s;
}

.products .product-card:nth-child(3) {
    animation-delay: 0.5s;
}

.products .product-card:nth-child(4) {
    animation-delay: 0.7s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: var(--color-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.badge.bestseller {
    background-color: #ff6b00;
}

.badge.new {
    background-color: #4CAF50;
}

.badge.hot {
    background-color: #f44336;
}

.badge.sale {
    background-color: #E91E63;
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 1rem;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.price {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: block;
}

.products-cta {
    text-align: center;
    margin-top: 2rem;
}

.products-cta p {
    color: #ddd;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .product-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .products {
        padding: 4rem 0;
    }
}

/* Página de Produtos Específica */
.products-page {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #222, #444);
    position: relative;
    overflow: hidden;
}

.products-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.products-page .container {
    position: relative;
    z-index: 1;
}

.products-page .section-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.products-page .product-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: none;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s;
}

.products-page .product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.products-page .product-image {
    height: 220px;
    border-bottom: 3px solid var(--color-primary);
}

.products-page .product-image img {
    object-fit: contain;
    padding: 10px;
    transform: none;
    transition: all 0.4s ease;
}

.products-page .product-card:hover .product-image img {
    transform: none;
    filter: brightness(1.05) contrast(1.05);
}

.products-page .product-info {
    background: white;
    padding: 1.8rem;
    border-radius: 0 0 0.5rem 0.5rem;
    position: relative;
}

.products-page .product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 700;
}

.products-page .product-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    min-height: 40px;
}

.products-page .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e06a09;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.products-page .price::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 5px;
}

.products-page .add-to-cart {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.products-page .add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.products-page .add-to-cart:hover::before {
    left: 100%;
}

.products-page .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    transform: rotate(5deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Efeito fade-in para a página de produtos */
.products-page .product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.5s;
}

.products-page .product-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.products-page .product-card:hover {
    transform: translateY(-15px);
}

@media (max-width: 768px) {
    .products-page {
        padding: 7rem 0 3rem;
    }
    
    .products-page .section-title {
        font-size: 2.3rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #222;
    color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #333;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-primary);
    opacity: 0.1;
    transition: height 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: color 0.2s, transform 0.2s;
}

.service-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--color-background);
}

.about-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--color-text);
}

.about p {
    margin-bottom: 2rem;
    color: var(--color-text);
}

.features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.feature span {
    color: var(--color-text);
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #111;
    color: white;
}

.contact h2 {
    margin-bottom: 3rem;
    text-align: center;
    color: white;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-form {
    background-color: #222;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #444;
    background-color: #333;
    color: white;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.375rem;
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-form button:hover {
    background-color: var(--color-primary-dark);
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: white;
}

.carton {
    font-size: 25px;
}

.footer-section p,
.footer-section ul {
    color: var(--color-text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: white;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--color-primary);
    transform: translateY(-5px);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    color: var(--color-text-light);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #222;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* Painel Lateral de Carrinho */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: #222;
    z-index: 1500;
    padding: 1.5rem;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #444;
}

.cart-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-cart:hover {
    color: var(--color-primary);
}

.cart-content {
    margin-bottom: 1.5rem;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.cart-items {
    display: grid;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background-color: #333;
    border-radius: 0.5rem;
    position: relative;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 0.25rem;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--color-primary);
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1.25rem;
    transition: color 0.2s, transform 0.2s;
}

.cart-item-remove:hover {
    color: #ff1a1a;
    transform: scale(1.2);
}

.cart-empty-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    color: var(--color-text-light);
    text-align: center;
}

.cart-empty-message i {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-total {
    padding: 1rem 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin-bottom: 1.5rem;
}

.cart-total p {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
}

.total-value {
    color: var(--color-primary);
}

.payment-options {
    margin-bottom: 1.5rem;
}

.payment-options h4 {
    color: white;
    margin-bottom: 1rem;
}

.payment-selector {
    display: grid;
    gap: 0.75rem;
}

.payment-selector label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: #333;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.payment-selector label:hover {
    background-color: #444;
}

.payment-selector input {
    margin: 0;
}

.payment-selector span {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-selector i {
    color: var(--color-primary);
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cart-actions button {
    width: 100%;
}

/* Media queries para o carrinho em telas menores */
@media (max-width: 500px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .product-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Página de Produtos ===== */
.products-page {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    position: relative;
    overflow: hidden;
}

.products-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/pattern-light.png');
    background-size: 300px;
    opacity: 0.1;
    pointer-events: none;
}

.products {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background-color: #ff6b00;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
}

.badge.bestseller {
    background-color: #ff6b00;
}

.badge.new {
    background-color: #4CAF50;
}

.badge.hot {
    background-color: #f44336;
}

.badge.sale {
    background-color: #E91E63;
}

.badge.premium {
    background-color: #9C27B0;
}

.badge.featured {
    background-color: #3F51B5;
}

.product-image {
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 20px;
    overflow: hidden;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.product-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 15px;
    display: block;
}

.add-to-cart {
    display: inline-block;
    background-color: #ff6b00;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.add-to-cart:hover {
    background-color: #e06a09;
    transform: scale(1.05);
}

.products-title {
    text-align: center;
    margin-bottom: 10px;
}

.products-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-weight: normal;
    font-size: 1.1rem;
}

/* Responsividade para a página de produtos */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .products {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-image {
        height: 180px;
    }
}

/* ===== Carrinho Lateral ===== */

/* ===== Página de Serviços ===== */
.services-page {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

.services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNMTAgMTBjMC0yLjIxIDEuNzktNCA0LTRzNCAxLjc5IDQgNC0xLjc5IDQtNCA0LTQtMS43OS00LTR6bTYgMTJjMC0yLjIxIDEuNzktNCA0LTRzNCAxLjc5IDQgNC0xLjc5IDQtNCA0LTQtMS43OS00LTR6bS02IDEyYzAtMi4yMSAxLjc5LTQgNC00czQgMS43OSA0IDQtMS43OSA0LTQgNC00LTEuNzktNC00eiIgZmlsbD0iIzQ0NDQ0NCIgZmlsbC1vcGFjaXR5PSIwLjEiIC8+PC9zdmc+');
    background-size: 300px;
    opacity: 0.1;
    pointer-events: none;
}

.services-page .section-title {
    color: white;
    margin-bottom: 1rem;
}

.services-page .section-subtitle {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
}

.services-page .service-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.services-page .service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.services-page .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.services-page .service-card p {
    color: #ddd;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-details {
    margin: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.service-feature:last-child {
    margin-bottom: 0;
}

.service-feature i {
    color: var(--color-primary);
    margin-right: 10px;
}

.service-feature span {
    color: #eee;
}

.service-price {
    margin: 1.5rem 0;
    font-weight: bold;
}

.service-price p {
    color: white !important;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.service-advantages {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-advantages h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.advantage-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-right: 1rem;
    min-width: 50px;
    text-align: center;
}

.advantage-content h4 {
    margin-top: 0;
    color: white;
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: #ccc;
    margin-bottom: 0;
}

.cta-section {
    margin-top: 4rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 10px;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .services-page {
        padding: 6rem 0 3rem;
    }
    
    .services-page .section-title {
        font-size: 2.3rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Efeito fade-in para os cards */
.services-page .service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s, transform 0.5s;
}

.services-page .service-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.service-card .btn-primary {
    position: relative;
    overflow: hidden;
}

.service-card .btn-primary:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.service-card .btn-primary:hover:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

