/* ============================================================
   SUMAQ GRILL — Inicio (Index) Styles
   ============================================================ */

/* ---- NAV ACTIONS ---- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* ---- HERO ---- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 92%;
    max-width: var(--max-width);
    color: var(--white);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(247, 181, 0, 0.15);
    border: 1px solid rgba(247, 181, 0, 0.3);
    color: var(--gold-light);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero p {
    max-width: 580px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(12px); }
}

/* ---- PRODUCTS ---- */
.section-products {
    padding: var(--space-4xl) 0;
}

.container {
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: var(--space-2xl);
}

.section-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ---- BENEFITS ---- */
.section-benefits {
    padding: var(--space-4xl) 0;
    background: var(--bg-section);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px 32px;
    text-align: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-base);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-1);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.8;
}

/* ---- PROMO BANNER ---- */
.promo-banner {
    padding: var(--space-3xl) 0;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    background: linear-gradient(135deg, var(--dark-1), var(--dark-3));
    border-radius: var(--radius-2xl);
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.promo-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(247, 181, 0, 0.08);
}

.promo-text {
    flex: 1;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.promo-text h2 {
    font-family: var(--font-display);
    font-size: 42px;
    margin: 20px 0 12px;
}

.promo-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.promo-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.old-price {
    font-size: 22px;
    color: var(--gray-3);
    text-decoration: line-through;
}

.new-price {
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
}

.promo-img {
    flex: 0 0 380px;
    position: relative;
    z-index: 1;
}

.promo-img img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: floatPromo 3s ease-in-out infinite;
}

@keyframes floatPromo {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}

/* ---- TESTIMONIALS ---- */
.section-testimonials {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--bg-body), var(--bg-section));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px 32px;
    text-align: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 48px;
    color: rgba(247, 181, 0, 0.12);
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(247, 181, 0, 0.2);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 15px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--gray-2);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-1);
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 13px;
    color: var(--red);
    font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 14px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .menu-toggle { display: flex; }
    .nav-search { display: none; }

    .hero-content { text-align: center; }
    .hero-buttons { justify-content: center; }

    .promo-content {
        flex-direction: column;
        padding: 40px 28px;
        text-align: center;
    }

    .promo-img { flex: none; max-width: 300px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 42px; }
    .hero-tag { font-size: 11px; padding: 8px 14px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .promo-text h2 { font-size: 28px; }
    .new-price { font-size: 32px; }
}