/* =========================
   VARIABLES
========================= */
:root {
    --red: #e50909;
    --red-dark: #8d0000;
    --orange: #ffae00;
    --orange-light: #ffc400;
    --black: #050505;
    --black-soft: #0d0d0d;
    --white: #ffffff;
    --gray: #bdbdbd;
    --card: rgba(15, 15, 15, 0.88);
}

/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: radial-gradient(circle at top, rgba(229, 9, 9, 0.15), transparent 40%), #050505;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

/* =========================
   FONDO
========================= */
.background {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.88)), url("img/fondo1.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.13), transparent 35%),
        linear-gradient(to bottom, transparent, #050505 90%);
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 174, 0, 0.2);
    z-index: 1000;
}

.logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 0.85;
}

.logo span {
    display: block;
    color: white;
}

.logo strong {
    display: block;
    color: var(--red);
    font-size: 34px;
}

.navbar nav {
    display: flex;
    gap: 35px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar nav a:hover,
.navbar nav a:focus {
    color: var(--orange);
    outline: none;
}

.btn-whatsapp {
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(229, 9, 9, 0.25);
}

.btn-whatsapp:hover {
    background: var(--orange);
    color: black;
    transform: translateY(-2px);
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 8% 80px;
}

.hero-content {
    max-width: 650px;
}

.small-title {
    display: inline-block;
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(80px, 12vw, 170px);
    line-height: 0.78;
    letter-spacing: 3px;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero p {
    max-width: 580px;
    color: #ddd;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px 27px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 8px 30px rgba(229, 9, 9, 0.3);
}

.btn-primary:hover {
    background: var(--orange);
    color: black;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(0, 0, 0, 0.35);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* =========================
   SECCIONES
========================= */
.section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 110px 6%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.section-title h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 65px;
    letter-spacing: 2px;
    margin-top: 8px;
}

.section-title h2 b {
    color: var(--red);
}

.section-title p {
    color: #aaa;
}

/* =========================
   PRODUCTOS
========================= */
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 20px;
    min-height: 270px;
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 174, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 174, 0, 0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 35px;
    letter-spacing: 1px;
    margin: 5px 0;
}

.product-info p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    flex: 1;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 174, 0, 0.12);
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    align-self: flex-start;
}

.tag.red {
    background: rgba(229, 9, 9, 0.15);
    color: #ff4040;
}

.price {
    color: var(--orange);
    font-size: 30px;
    font-weight: 800;
    margin: 5px 0;
}

.old-price {
    color: #777;
    text-decoration: line-through;
    font-size: 13px;
    margin-top: 5px;
}

.product-info small {
    color: #5ee05e;
    display: block;
    margin-bottom: 10px;
}

.order-button {
    display: inline-block;
    background: white;
    color: black;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.order-button:hover {
    background: var(--orange);
}

/* =========================
   COMBOS
========================= */
.combos-section {
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.7));
    border-radius: 30px;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.combo-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.35s ease;
}

.combo-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 9, 9, 0.5);
}

.combo-card.special {
    border-color: rgba(255, 174, 0, 0.45);
    box-shadow: 0 0 30px rgba(255, 174, 0, 0.06);
}

.combo-image {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    background: rgba(255, 174, 0, 0.05);
}

.combo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.combo-card:hover .combo-image img {
    transform: scale(1.05);
}

.combo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.combo-header span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
}

.combo-header strong {
    color: var(--orange);
    font-size: 22px;
}

.combo-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.combo-card ul {
    list-style: none;
    color: #aaa;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 20px;
}

.combo-card li::first-letter {
    color: var(--orange);
}

.combo-card > a {
    display: block;
    text-align: center;
    background: var(--red);
    color: white;
    text-decoration: none;
    padding: 11px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.combo-card > a:hover {
    background: var(--orange);
    color: black;
}

/* =========================
   ARROZ CHINO
========================= */
.rice-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
        url("img/Diseño\ sin\ título.png");
    background-size: cover;
    background-position: center;
}

.rice-content {
    max-width: 700px;
}

.rice-content > span {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.rice-content h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 70px;
    line-height: 0.9;
    margin: 15px 0;
}

.rice-content h2 strong {
    display: block;
    color: var(--orange);
}

.rice-content p {
    color: #ccc;
    margin-bottom: 30px;
}

/* =========================
   CONTACTO
========================= */
.contact-section {
    padding: 100px 6%;
}

.contact-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 30px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(229, 9, 9, 0.16), rgba(255, 174, 0, 0.08));
    border: 1px solid rgba(255, 174, 0, 0.2);
}

.contact-box > span {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.contact-box h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 55px;
    margin: 10px 0;
}

.contact-box p {
    color: #aaa;
    margin-bottom: 30px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    background: #20c763;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.whatsapp-button strong {
    font-size: 18px;
}

.whatsapp-button:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 35px rgba(32, 199, 99, 0.25);
}

/* =========================
   INFORMACIÓN DE CONTACTO - VISÍTANOS
========================= */
.contact-info {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 174, 0, 0.2);
}

.visit-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    color: var(--orange);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-info .address {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.contact-info .address .reference {
    display: block;
    color: var(--orange);
    font-size: 15px;
    font-weight: 400;
    margin-top: 3px;
    opacity: 0.9;
}

.contact-info .hours {
    color: #4fc3f7;
    font-size: 18px;
    font-weight: 600;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #030303;
}

.footer-logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 35px;
}

.footer-logo span {
    color: var(--red);
}

footer p {
    color: #888;
    font-size: 13px;
    margin-top: 8px;
}

footer .copyright {
    color: #444;
    margin-top: 25px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .navbar nav {
        display: none;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .combo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-image {
        width: 100%;
        max-width: 200px;
        height: 200px;
    }

    .tag {
        align-self: center;
    }

    .order-button {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0 20px;
    }

    .btn-whatsapp {
        padding: 10px 15px;
        font-size: 11px;
    }

    .hero {
        padding: 130px 25px 70px;
    }

    .hero h1 {
        font-size: 90px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .section {
        padding: 80px 20px;
    }

    .section-title h2 {
        font-size: 50px;
    }

    .combo-grid {   
        grid-template-columns: 1fr;
    }

    .rice-content h2 {
        font-size: 55px;
    }

    .contact-box h2 {
        font-size: 45px;
    }

    .combo-image {
        height: 150px;
    }

    .visit-title {
        font-size: 26px;
    }

    .contact-info .address {
        font-size: 15px;
    }

    .contact-info .hours {
        font-size: 15px;
    }
}
