/* ==== Variables y Diseño Base (Logo Rafa ML) ==== */
:root {
    --primary: #E61D1D; /* Rojo intenso del fondo del logo */
    --primary-hover: #C51515;
    --dark: #1A1F24; /* Color oscuro del escudo central */
    --dark-light: #2A3138;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #FDF9F1; /* Crema suave para contrastar cálido */
    --accent: #E5C29A; /* Tono beige/dorado del borde del escudo */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* ==== Utilidades ==== */
.w-100 { width: 100%; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-3 { margin-bottom: 30px; }
.highlight-red { color: var(--primary); }

/* ==== Botones ==== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 29, 29, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 29, 29, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.btn-outline-red {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-red:hover {
    background-color: var(--primary);
    color: var(--white);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ==== Navbar ==== */
.navbar {
    background-color: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-sub {
    font-weight: 400;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 2px;
}

/* ==== Hero Section ==== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: url('assets/images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 31, 36, 0.9) 0%, rgba(26, 31, 36, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 600px;
}

.badge {
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #DDDDDD;
    margin-bottom: 30px;
}

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

/* ==== Secciones Generales ==== */
.section-dark {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.section-dark h2, .section-dark p {
    color: var(--white);
}

.section-light {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

/* ==== Grid Layouts ==== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

/* ==== Card Feature (Platos Fuertes) ==== */
.card-feature {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.card-feature img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-feature-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-feature-content .desc {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-row .price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
}

.mini-menu {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.mini-menu li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    color: var(--dark);
    font-weight: 500;
}

.price-sm {
    color: var(--primary);
    font-weight: 700;
}

/* ==== Menús Columns ==== */
.menu-column {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary);
}

.column-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEE;
}

.header-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.column-header h3 {
    font-size: 1.8rem;
}

.column-header .subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.big-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-top: 10px;
}

.list-menu {
    list-style: none;
    margin-bottom: 20px;
}

.list-menu li {
    padding: 10px 0;
    border-bottom: 1px solid #F0F0F0;
    color: var(--text);
}

.list-menu li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-right: 8px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-list li::before {
    display: none;
}

.item-name {
    font-weight: 500;
}

.item-price {
    font-weight: 700;
    color: var(--dark);
}

.highlight-item {
    background-color: rgba(230, 29, 29, 0.05);
    padding: 10px !important;
    border-radius: 5px;
    border-bottom: none !important;
}

.highlight-item .item-price {
    color: var(--primary);
}

.mini-title {
    font-size: 1.2rem;
    margin: 15px 0 10px;
    color: var(--primary);
}

/* ==== Footer ==== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-contact h4 {
    color: var(--accent);
    margin-bottom: 10px;
}

.footer-contact p {
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* ==== Float WhatsApp ==== */
.float-ws {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.float-ws:hover {
    transform: scale(1.1);
}

/* ==== Responsive ==== */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}
