/* ============================================
   HERO SECTION - CLUB DE LA HAMBURGUESA
   ============================================ */
/*
:root {
    --primary-red: #FF6B6B;
    --primary-coral: #FF8787;
    --secondary-black: #1a1a1a;
    --secondary-beige: #FFF8E7;
    --accent-white: #FFFFFF;
    --text-dark: #2d2d2d;
    --shadow-color: rgba(0, 0, 0, 0.2);
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-beige) 0%, #FFF5D6 100%);
    overflow: hidden;
    padding: 2rem 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 107, 107, 0.03) 35px, rgba(255, 107, 107, 0.03) 70px);
    pointer-events: none;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}


.hero-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    z-index: 1;
}


.hero-wrapper {
    position: relative;
    width: 100%;
    background: var(--accent-white);
    border-radius: 30px;
    box-shadow: 
        0 25px 60px var(--shadow-color),
        0 0 0 8px var(--primary-red),
        0 0 0 12px var(--secondary-black);
    overflow: hidden;
}


.hero-slides {
    position: relative;
    width: 100%;
    min-height: 500px;
}


.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    min-height: 500px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 248, 231, 0.3) 100%);
}


.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 107, 107, 0.3));
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-2deg);
    }
    75% {
        transform: translateY(-10px) rotate(2deg);
    }
}


.hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: 
        linear-gradient(45deg, var(--secondary-black) 25%, transparent 25%),
        linear-gradient(-45deg, var(--secondary-black) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--secondary-black) 75%),
        linear-gradient(-45deg, transparent 75%, var(--secondary-black) 75%);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 1;
    animation: rotateDecoration 20s linear infinite;
}

.hero-decoration-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.hero-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-direction: reverse;
    animation-duration: 15s;
}

@keyframes rotateDecoration {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.hero-info {
    text-align: center;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--accent-white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(255, 107, 107, 0.4),
        0 0 0 3px var(--accent-white),
        0 0 0 5px var(--secondary-black);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 20px rgba(255, 107, 107, 0.4),
            0 0 0 3px var(--accent-white),
            0 0 0 5px var(--secondary-black);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 12px 30px rgba(255, 107, 107, 0.6),
            0 0 0 3px var(--accent-white),
            0 0 0 5px var(--secondary-black);
    }
}


.hero-description {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
    text-shadow: 2px 2px 0 rgba(255, 107, 107, 0.1);
}

.hero-description strong {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-white);
    border: 4px solid var(--secondary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-black);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.hero-nav-btn:hover {
    background: var(--primary-red);
    color: var(--accent-white);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.hero-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}


.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 2rem 0;
    background: var(--secondary-beige);
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-white);
    border: 3px solid var(--secondary-black);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.hero-dot:hover {
    background: var(--primary-coral);
    transform: scale(1.3);
    border-color: var(--primary-red);
}

.hero-dot.active {
    background: var(--primary-red);
    width: 40px;
    border-radius: 7px;
    border-color: var(--secondary-black);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.5);
}


.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 0 2rem;
}

.btn-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 4px solid var(--secondary-black);
    min-width: 220px;
    box-shadow: 0 8px 25px var(--shadow-color);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero svg {
    transition: transform 0.3s ease;
}

.btn-hero:hover svg {
    transform: translateX(5px);
}

.btn-hero-menu {
    background: var(--accent-white);
    color: var(--secondary-black);
    border-color: var(--secondary-black);
}

.btn-hero-menu:hover {
    background: var(--secondary-black);
    color: var(--accent-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.4);
}

.btn-hero-whatsapp {
    background: #25D366;
    color: var(--accent-white);
    border-color: #25D366;
}

.btn-hero-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}


.hero-error-state,
.hero-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 3rem;
    text-align: center;
    background: var(--accent-white);
    border-radius: 30px;
    box-shadow: 
        0 25px 60px var(--shadow-color),
        0 0 0 8px var(--primary-red),
        0 0 0 12px var(--secondary-black);
}

.error-icon,
.empty-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.error-icon img,
.empty-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 107, 0.3));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-error-state p,
.hero-empty-state p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-retry {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--primary-red);
    color: var(--accent-white);
    border: 4px solid var(--secondary-black);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-retry:hover {
    background: var(--secondary-black);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 26, 26, 0.4);
}

 ============================================
   RESPONSIVE - TABLET
   ============================================ 

@media (min-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 3rem 2rem;
    }

    .hero-content {
        flex-direction: row;
        gap: 4rem;
        padding: 4rem 3rem;
        min-height: 600px;
    }

    .hero-visual {
        max-width: 550px;
    }

    .hero-info {
        text-align: left;
    }

    .hero-badge {
        font-size: 1rem;
        padding: 0.7rem 1.8rem;
    }

    .hero-description {
        font-size: 2.5rem;
    }

    .hero-buttons {
        margin-top: 4rem;
    }

    .hero-nav-btn {
        width: 70px;
        height: 70px;
    }

    .hero-prev {
        left: 30px;
    }

    .hero-next {
        right: 30px;
    }

    .hero-decoration-1 {
        width: 250px;
        height: 250px;
    }

    .hero-decoration-2 {
        width: 200px;
        height: 200px;
    }
}

============================================
   RESPONSIVE - DESKTOP
   ============================================ 

@media (min-width: 1024px) {
    .hero {
        padding: 4rem 2rem;
    }

    .hero-content {
        gap: 5rem;
        padding: 5rem 4rem;
    }

    .hero-visual {
        max-width: 600px;
    }

    .hero-description {
        font-size: 3rem;
    }

    .hero-nav-btn {
        opacity: 0.7;
    }

    .hero-nav-btn:hover {
        opacity: 1;
    }

    .hero-prev {
        left: 50px;
    }

    .hero-next {
        right: 50px;
    }

    .hero-decoration-1 {
        width: 300px;
        height: 300px;
        top: -80px;
        right: -80px;
    }

    .hero-decoration-2 {
        width: 250px;
        height: 250px;
        bottom: -60px;
        left: -60px;
    }

    .error-icon,
    .empty-icon {
        width: 250px;
        height: 250px;
    }
}

 ============================================
   RESPONSIVE - DESKTOP GRANDE
   ============================================ 

@media (min-width: 1400px) {
    .hero-content {
        gap: 6rem;
    }

    .hero-description {
        font-size: 3.5rem;
    }
}

 ============================================
   RESPONSIVE - MÓVIL
   ============================================ 

@media (max-width: 767px) {
    .hero {
        min-height: 85vh;
        padding: 1.5rem 1rem;
    }

    .hero-wrapper {
        border-radius: 20px;
        box-shadow: 
            0 15px 40px var(--shadow-color),
            0 0 0 5px var(--primary-red),
            0 0 0 8px var(--secondary-black);
    }

    .hero-slides {
        min-height: 400px;
    }

    .hero-content {
        gap: 2rem;
        padding: 2rem 1.5rem;
        min-height: 400px;
    }

    .hero-visual {
        max-width: 350px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1.5rem;
    }

    .hero-nav-btn {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .btn-hero {
        width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-width: 3px;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }

    .hero-dot.active {
        width: 32px;
    }

    .hero-decoration-1 {
        width: 150px;
        height: 150px;
        top: -30px;
        right: -30px;
    }

    .hero-decoration-2 {
        width: 120px;
        height: 120px;
        bottom: -20px;
        left: -20px;
    }

    .error-icon,
    .empty-icon {
        width: 150px;
        height: 150px;
    }
}

 ============================================
   RESPONSIVE - MÓVIL PEQUEÑO
   ============================================ 

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 1rem 0.5rem;
    }

    .hero-wrapper {
        border-radius: 15px;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        min-height: 350px;
    }

    .hero-visual {
        max-width: 280px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .hero-nav-btn {
        width: 45px;
        height: 45px;
    }

    .hero-prev {
        left: 5px;
    }

    .hero-next {
        right: 5px;
    }

    .btn-hero {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.6rem;
    }

    .btn-hero svg {
        width: 16px;
        height: 16px;
    }

    .hero-indicators {
        gap: 10px;
        padding: 1.5rem 0;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot.active {
        width: 28px;
    }

    .error-icon,
    .empty-icon {
        width: 120px;
        height: 120px;
    }
}
============================================
   ACCESIBILIDAD
   ============================================ 

.hero-nav-btn:focus,
.hero-dot:focus,
.btn-hero:focus {
    outline: 3px solid var(--primary-red);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-image,
    .hero-badge,
    .hero-decoration,
    .btn-hero,
    .hero-nav-btn,
    .hero-dot,
    .error-icon,
    .empty-icon {
        animation: none !important;
        transition: none !important;
    }
}*/
/* ANIMATIONS */
@keyframes flotar {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: url('../../img/web/fondo-hero-smash.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, .5);
    background-blend-mode: darken;

    container-type: inline-size;

    padding: 6.25rem 1.25rem 1.25rem;
}

/****************/
/* HERO CONTENT */
/****************/
.hero-content {
    display: inline-flex;
    flex-direction: column;
    gap: 1.25rem;

    background-color: var(--color-hero-content-bg);
    border-radius: 1.25rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 1.25rem;

    margin-bottom: 1.25rem;
}

.hero-img {
    width: 100%;
    max-width: 300px;
}

.hero-img img {
    display: block;

    width: 100%;
    height: auto;

    animation: flotar 3s ease-in-out infinite;
}

.hero-info {
    width: 100%;
    max-width: 300px;
}

.hero-info h1 {
    font-size: 1.875rem;
    font-weight: 500;

    color: var(--color-hero-content-title);
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);

    margin-bottom: 0.625rem;
}

.hero-info h1 span {
    color: var(--color-hero-content-highlight);
    font-weight: 700;
}

.hero-info p {
    font-size: 1rem;
    font-weight: 400;

    color: var(--color-hero-content-subtitle);
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}

/****************/
/* HERO BUTTONS */
/****************/
.hero-buttons {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-buttons a {
    text-align: center;
}

.hero-buttons button,
.hero-buttons a {
    position: relative;
    
    font-size: 1rem;
    font-weight: 600;

    overflow: hidden;

    text-shadow: 0px 0px 3px rgba(0,0,0,0.2);
    
    border-radius: 3.125rem;

    backdrop-filter: blur(10px);

    padding: 0.625rem;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons button::before,
.hero-buttons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);

    transition: left 0.5s ease;
}

.hero-buttons button:hover::before,
.hero-buttons a:hover::before {
    left: 100%;
}

.btn-hero-whatsapp {
    background-color: var(--color-hero-content-whatsapp-bg);
    color: var(--color-hero-content-whatsapp-text);
    border: 3px solid var(--color-hero-content-whatsapp-border);
}

.btn-hero-whatsapp:hover {
    background-color: var(--color-hero-content-whatsapp-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-menu {
    background: var(--btn-primary-bg-gradient, var(--btn-primary-bg));
    color: var(--btn-primary-text);
    text-shadow: 0 0 3px var(--btn-primary-text-shadow);
    border: 3px solid var(--btn-primary-border);
    box-shadow: 0 0 10px var(--btn-primary-shadow);
}

.btn-hero-menu:hover {
    background-color: var(--btn-primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248, 92, 92, 0.5);
}

@media screen and (min-width: 425px) {
    .hero {
        padding: 7.5rem 1.25rem 1.25rem;
    }
}

@media screen and (min-width: 600px) {
    /* HERO CONTENT */
    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    /* HERO BUTTONS */
    .hero-buttons {
        flex-direction: row;
    }

    .hero-buttons button,
    .hero-buttons a {
        flex: 1;
    }
}

