/* CSS completo para Del Domo Gourmet */
body {
    font-family: 'Montserrat', sans-serif;
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='120' viewBox='0 0 160 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23808080' stroke-width='0.3' stroke-opacity='0.06'%3E%3Cpath d='M80 20 L140 60 L140 100 L80 120 L20 100 L20 60 Z'/%3E%3Cpath d='M80 40 L120 70 L120 90 L80 100 L40 90 L40 70 Z'/%3E%3Cpath d='M80 55 L100 70 L100 80 L80 85 L60 80 L60 70 Z'/%3E%3Cpath d='M20 60 L140 60'/%3E%3Cpath d='M40 90 L120 90'/%3E%3Cpath d='M80 20 L80 120'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-position: center;
    background-size: 160px 120px;
}

/* Navigation */
.nav-link {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: hsl(240, 10%, 3.9%);
    text-decoration: none;
}

.nav-link:hover {
    color: hsl(28, 34%, 35%);
}

.nav-link.active {
    color: hsl(28, 34%, 35%);
}

.nav-link-mobile {
    transition: all 0.3s ease;
    color: hsl(240, 10%, 3.9%);
    text-decoration: none;
}

.nav-link-mobile:hover {
    color: hsl(28, 34%, 35%);
}

.social-link {
    color: #808000;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: rgba(128, 128, 0, 0.8);
    transform: scale(1.1);
}

/* Hero Section */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    filter: brightness(0.4);
    max-width: 2000px;
    margin: 0 auto;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-image {
    transform: scale(1.1);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: hsl(28, 34%, 35%);
    width: 16px;
    border-radius: 8px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: hsl(28, 34%, 35%);
    color: hsl(0, 0%, 98%);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid hsl(28, 34%, 35%);
    font-size: 16px;
    width: 100%;
}

.btn-primary:hover {
    background-color: hsl(28, 34%, 30%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: transparent;
    color: white;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
    font-size: 16px;
    width: 100%;
}

.btn-outline:hover {
    background-color: white;
    color: hsl(28, 34%, 35%);
    transform: translateY(-1px);
}

@media (min-width: 640px) {
    .btn-primary,
    .btn-outline {
        width: auto;
        font-size: 18px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-800 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* Product Images */
.product-image-container {
    transition: transform 0.3s ease;
}

.product-image-container:hover {
    transform: translateY(-4px);
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}