/* ============================================
   INDEX PAGE - ESTILOS PARA PÁGINA DE INICIO
   Paleta: #530705, #ed171f, #7e0a07, #151414, #fefefe
   ============================================ */

/* Hero Section */
.hero-section {
    background: #151414;
    padding: 0 2rem 5rem;
    padding-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 40%, rgba(237, 23, 31, 0.12), transparent 20%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease;
    padding-top: 3rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: scaleIn 0.8s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo {
    height: 180px;
    width: auto;
    max-width: 400px;
    filter: drop-shadow(0 10px 30px rgba(237, 23, 31, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fefefe;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fefefe 0%, rgba(254, 254, 254, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(254, 254, 254, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

/* Sección de Referencias */
.references-section {
    background: linear-gradient(180deg, #fefefe 0%, rgba(254, 254, 254, 0.95) 100%);
    padding: 4rem 2rem;
}

.references-content {
    max-width: 900px;
    margin: 0 auto;
}

.reference-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #151414;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.reference-text strong {
    color: #ed171f;
    font-weight: 700;
    font-size: 1.2em;
}

/* Sección de Testimonios */
.testimonials-section {
    background: linear-gradient(180deg, rgba(254, 254, 254, 0.95) 0%, #fefefe 100%);
    padding: 5rem 2rem;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #151414;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ed171f, #7e0a07);
    border-radius: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fefefe;
    border: 1px solid rgba(21, 20, 20, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(21, 20, 20, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ed171f, #7e0a07);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(237, 23, 31, 0.15);
    border-color: rgba(237, 23, 31, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(237, 23, 31, 0.1), rgba(126, 10, 7, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ed171f;
    border: 2px solid rgba(237, 23, 31, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    background: linear-gradient(135deg, rgba(237, 23, 31, 0.2), rgba(126, 10, 7, 0.2));
    border-color: rgba(237, 23, 31, 0.4);
    transform: scale(1.1);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #151414;
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1.2rem;
    color: rgba(21, 20, 20, 0.2);
    transition: all 0.3s ease;
}

.star.filled {
    color: #ed171f;
    text-shadow: 0 2px 4px rgba(237, 23, 31, 0.3);
}

.testimonial-date {
    font-size: 0.85rem;
    color: rgba(21, 20, 20, 0.6);
    font-weight: 400;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #151414;
    margin-bottom: 1rem;
    font-weight: 400;
}

.testimonial-source {
    display: inline-block;
    font-size: 0.85rem;
    color: rgba(237, 23, 31, 0.8);
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(237, 23, 31, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-source {
    background: rgba(237, 23, 31, 0.15);
    color: #ed171f;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo {
        height: 80px;
    }

    .references-section {
        padding: 3rem 1.5rem;
    }

    .reference-text {
        font-size: 1rem;
    }

    .testimonials-section {
        padding: 3rem 1.5rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Sección de Información del Restaurante */
.restaurant-info-section {
    background: linear-gradient(180deg, #fefefe 0%, rgba(254, 254, 254, 0.98) 100%);
    padding: 5rem 2rem;
}

.restaurant-info-container {
    max-width: 1400px;
    margin: 0 auto;
}

.restaurant-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #151414;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.restaurant-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ed171f, #7e0a07);
    border-radius: 2px;
}

.restaurant-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: #fefefe;
    border: 1px solid rgba(21, 20, 20, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(21, 20, 20, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }
.info-card:nth-child(4) { animation-delay: 0.4s; }

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ed171f, #7e0a07);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(237, 23, 31, 0.15);
    border-color: rgba(237, 23, 31, 0.2);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(237, 23, 31, 0.1), rgba(126, 10, 7, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed171f;
    border: 2px solid rgba(237, 23, 31, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, rgba(237, 23, 31, 0.2), rgba(126, 10, 7, 0.2));
    border-color: rgba(237, 23, 31, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.info-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #151414;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.info-card-text {
    font-size: 1rem;
    color: rgba(21, 20, 20, 0.7);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-card-text:last-child {
    margin-bottom: 0;
}

.info-card-text strong {
    color: #ed171f;
    font-weight: 700;
}

.horarios-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.horario-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.horario-dia {
    font-size: 0.95rem;
    color: rgba(21, 20, 20, 0.7);
    font-weight: 500;
}

.horario-hora {
    font-size: 1.1rem;
    color: #ed171f;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive - Información del Restaurante */
@media (max-width: 768px) {
    .restaurant-info-section {
        padding: 3rem 1.5rem;
    }

    .restaurant-info-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .restaurant-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem 1.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .info-card-title {
        font-size: 1.2rem;
    }
}
