/* Reset y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #FFC107;
    --dark-color: #1a1a1a;
    --light-color: #FFF8E7;
    --cream-color: #FFFAF0;
    --beige-color: #FFE8CC;
    --brown-color: #D2691E;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(255, 107, 53, 0.2);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--light-color) 0%, var(--beige-color) 100%);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Imágenes responsivas por defecto */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Mejoras táctiles para dispositivos móviles */
@media (hover: none) and (pointer: coarse) {
    .btn-primary, .btn-download, .nav-links a, .menu-item {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* Header y Navbar */
header {
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--beige-color) 100%);
    box-shadow: 0 5px 0px rgba(210, 105, 30, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--brown-color);
    border-top: 3px dashed var(--primary-color);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo en navbar - estático y elegante */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s;
    border: 3px solid var(--primary-color);
    box-shadow: 4px 4px 0px rgba(210, 105, 30, 0.3);
}

.logo-container:hover {
    background: var(--beige-color);
    border-color: var(--brown-color);
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 6px 6px 0px rgba(210, 105, 30, 0.4);
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    position: relative;
}

/* Estilos para logo en navbar */
.riko-nav {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Comic Sans MS', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 
        2px 2px 0px #000,
        -1px -1px 0px #000,
        1px -1px 0px #000,
        -1px 1px 0px #000,
        1px 1px 0px #000;
    position: relative;
}

.riko-nav-1 {
    color: var(--primary-color);
}

.riko-nav-2 {
    color: var(--accent-color);
}

.logo-icon-nav {
    font-size: 1.3rem;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
}

.logo-subtitle-nav {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    font-size: 0.55rem;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 10px;
    border: 2px solid #000;
    box-shadow: 1px 1px 0px #000;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* Estilos para logo en hero - con animaciones */
.riko {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Comic Sans MS', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 
        3px 3px 0px #000,
        -1px -1px 0px #000,
        1px -1px 0px #000,
        -1px 1px 0px #000,
        1px 1px 0px #000;
    position: relative;
}

.riko-1 {
    color: #f5f4f4;
    animation: bounce 2s infinite;
}

.riko-2 {
    color: var(--accent-color);
    animation: bounce 2s infinite 0.1s;
}

.logo-icon {
    font-size: 2rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    animation: rotate 3s infinite ease-in-out;
}

.logo-badge {
    position: absolute;
    top: -5px;
    right: -30px;
    background-color: #ff1744;
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 50%;
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
}

.logo-subtitle {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff1744;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 3px 15px;
    border-radius: 15px;
    border: 3px solid #000;
    box-shadow: 2px 2px 0px #000;
    white-space: nowrap;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    0%, 100% {
        transform: translateX(-50%) rotate(-15deg);
    }
    50% {
        transform: translateX(-50%) rotate(15deg);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 800;
    transition: all 0.3s;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    position: relative;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    font-family: 'Arial Black', sans-serif;
    background: var(--white);
    border: 3px solid transparent;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: var(--beige-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 3px 3px 0px rgba(210, 105, 30, 0.3);
}

.nav-links a::after {
    display: none;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.8rem;
    z-index: 1001;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    margin-top: -8px;
    transition: all 0.3s;
}

.hamburger:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--beige-color) 0%, var(--cream-color) 50%, var(--beige-color) 100%);
    color: var(--dark-color);
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    border-bottom: 5px dashed var(--brown-color);
    box-shadow: inset 0 0 100px rgba(255, 107, 53, 0.1);
}

.hero::before {
    content: '🍔🍟🌭🍕🥤';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s infinite ease-in-out;
}

.hero::after {
    content: '🍔🍟🌭🍕🥤';
    position: absolute;
    bottom: 20%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s infinite ease-in-out 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-logo {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-logo .logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.hero-logo .riko {
    font-size: 4rem;
}

.logo-icon-hero {
    font-size: 3rem;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(-15deg);
    animation: rotate 3s infinite ease-in-out;
}

.logo-subtitle-hero {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff1744;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 15px;
    border: 3px solid #000;
    box-shadow: 2px 2px 0px #000;
    white-space: nowrap;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

/* Buttons */
.btn-primary, .btn-download {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 4px solid var(--primary-color);
    box-shadow: 5px 5px 0px rgba(210, 105, 30, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 7px 7px 0px rgba(210, 105, 30, 0.5);
    background: var(--beige-color);
}

.btn-whatsapp {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: 4px solid #075E54;
    box-shadow: 5px 5px 0px rgba(7, 94, 84, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 7px 7px 0px rgba(7, 94, 84, 0.5);
}

.whatsapp-icon-btn {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    animation: pulse 2s infinite;
}

.btn-download {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    margin-bottom: 2rem;
    border: 4px solid var(--brown-color);
    font-weight: 900;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 0px rgba(210, 105, 30, 0.4);
}

.btn-download:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 7px 7px 0px rgba(210, 105, 30, 0.5);
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFE8CC 100%);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 107, 53, 0.03) 10px, rgba(255, 107, 53, 0.03) 20px);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 4rem;
    color: #D2691E;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 3px;
}

.menu-category {
    background: linear-gradient(135deg, #FFFAF0 0%, #FFF8E7 100%);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 15px 35px rgba(210, 105, 30, 0.25),
        inset 0 0 0 8px #FFFAF0,
        inset 0 0 0 12px #FF6B35;
    transition: all 0.3s;
    border: 4px dashed #D2691E;
    position: relative;
    overflow: visible;
}

.menu-category::before {
    content: '🍔';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 3.5rem;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
    animation: bounce 2s infinite;
    z-index: 10;
}

.menu-category:nth-child(odd)::before {
    content: '🌭';
}

.menu-category:nth-child(3n)::before {
    content: '🍟';
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.menu-category:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 
        0 20px 45px rgba(210, 105, 30, 0.35),
        inset 0 0 0 8px #FFFAF0,
        inset 0 0 0 12px #FFC107;
}

.menu-category h3 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Impact', 'Arial Black', sans-serif;
    border-bottom: 4px solid #D2691E;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px rgba(255, 107, 53, 0.3);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .menu-items {
        grid-template-columns: 1fr;
    }
}

.menu-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s;
    background: #FFFFFF;
    border: 3px solid #FF6B35;
    position: relative;
    box-shadow: 5px 5px 0px rgba(210, 105, 30, 0.3);
}

.menu-item::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px dashed #FFC107;
    border-radius: 15px;
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 8px 8px 0px rgba(210, 105, 30, 0.4);
    border-color: #D2691E;
}

.item-info {
    margin-bottom: 1rem;
}

.item-info h4 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
    line-height: 1.3;
}

.item-info p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FF6B35;
    text-align: right;
    font-family: 'Impact', 'Arial Black', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #FFE8CC 0%, #FFFAF0 100%);
    border: 3px solid #FF6B35;
    box-shadow: 3px 3px 0px rgba(210, 105, 30, 0.3);
    align-self: flex-end;
    width: 100%;
    text-shadow: 1px 1px 0px rgba(255, 193, 7, 0.5);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--beige-color) 100%);
    text-align: center;
    position: relative;
    border-top: 5px dashed var(--brown-color);
    border-bottom: 5px dashed var(--brown-color);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 107, 53, 0.02) 15px, rgba(255, 107, 53, 0.02) 30px);
    pointer-events: none;
}

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--brown-color);
    text-shadow: 3px 3px 0px rgba(255, 107, 53, 0.3);
    font-weight: 900;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-section > .container > p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--dark-color);
    line-height: 1.8;
    font-weight: 500;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.feature {
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s;
    background: var(--white);
    border: 4px solid var(--primary-color);
    box-shadow: 6px 6px 0px rgba(210, 105, 30, 0.3);
    position: relative;
}

.feature::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px dashed var(--accent-color);
    border-radius: 20px;
    pointer-events: none;
}

.feature:hover {
    transform: translateY(-10px) rotate(-2deg);
    border-color: var(--brown-color);
    box-shadow: 8px 8px 0px rgba(210, 105, 30, 0.4);
}

.feature .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(3px 3px 5px rgba(255, 107, 53, 0.3));
}

.feature h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
}

.feature p {
    color: var(--dark-color);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--beige-color) 0%, var(--cream-color) 100%);
    text-align: center;
    border-top: 5px dashed var(--brown-color);
}

.contact-section h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--brown-color);
    text-shadow: 3px 3px 0px rgba(255, 107, 53, 0.3);
    font-weight: 900;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.contact-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 6px 6px 0px rgba(210, 105, 30, 0.3);
    border: 4px solid var(--primary-color);
    transition: all 0.3s;
    position: relative;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px dashed var(--accent-color);
    border-radius: 20px;
    pointer-events: none;
}

.contact-item:hover {
    border-color: var(--brown-color);
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 8px 8px 0px rgba(210, 105, 30, 0.4);
}

.contact-item .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(3px 3px 5px rgba(255, 107, 53, 0.3));
}

.contact-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'Arial Black', sans-serif;
}

.contact-item p {
    color: var(--dark-color);
    line-height: 1.8;
    font-weight: 500;
}

.contact-item strong {
    color: var(--primary-color);
    font-weight: 900;
}

/* WhatsApp Link */
.whatsapp-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 8px;
    border: 2px solid #25D366;
}

.whatsapp-link:hover {
    color: #ffffff;
    background: #25D366;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon-img {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-block;
    filter: brightness(0) saturate(100%) invert(82%) sepia(41%) saturate(1059%) hue-rotate(353deg) brightness(101%) contrast(105%);
    animation: pulse 2s infinite;
}

.whatsapp-link:hover .whatsapp-icon-img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* Social Links Styles */
.social-link {
    display: inline-block;
    color: #FF6B35;
    font-weight: 600;
    text-decoration: none;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #FFC107;
    transform: translateX(5px);
}

.social-link.instagram:hover {
    color: #E1306C;
}

.social-link.facebook:hover {
    color: #1877F2;
}

/* Google Maps Container */
.map-container {
    margin-top: 3rem;
    padding: 0 1rem;
}

.map-container iframe {
    border: 3px solid var(--primary-color);
    transition: all 0.3s;
}

.map-container iframe:hover {
    border-color: var(--accent-color);
    transform: scale(1.01);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4) !important;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pantallas grandes (>1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .section-header h2 {
        font-size: 4.5rem;
    }

    .hero-content h2 {
        font-size: 4rem;
    }

    .menu-category h3 {
        font-size: 3.5rem;
    }
}

/* Responsive Design */
/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .menu-category {
        padding: 2rem;
    }

    .menu-items {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .about-section h2,
    .contact-section h2 {
        font-size: 3rem;
    }

    .feature {
        padding: 2rem;
    }
}

/* Tablets pequeños y móviles horizontal */
@media (max-width: 900px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .nav-links a {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Tablets y móviles horizontal */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 75%;
        max-width: 320px;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        gap: 0;
        padding: 2rem 0;
        display: flex;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        padding: 1rem 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        margin: 0 1rem;
        padding: 1rem;
    }

    .hero {
        padding: 130px 0 80px;
        margin-top: 70px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .hero-logo .riko {
        font-size: 3rem;
    }

    .logo-icon-hero {
        font-size: 2.5rem;
    }

    .logo-subtitle-hero {
        font-size: 0.8rem;
        padding: 4px 15px;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn-primary, .btn-download, .btn-whatsapp {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .menu-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .menu-category h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .menu-category::before {
        font-size: 2.5rem;
        top: -20px;
        right: 20px;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .menu-item {
        padding: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .item-info h4 {
        font-size: 1.2rem;
    }

    .item-info p {
        font-size: 0.95rem;
    }

    .price {
        font-size: 1.8rem;
        margin-top: 1rem;
        align-self: flex-end;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    /* Galería */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    /* Sobre nosotros */
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .about-section h2,
    .contact-section h2 {
        font-size: 2.5rem;
    }

    .about-section > .container > p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .feature {
        padding: 2rem;
    }

    .feature .icon {
        font-size: 3.5rem;
    }

    .feature h4 {
        font-size: 1.4rem;
    }

    /* Contacto */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 2rem;
    }

    .contact-item .icon {
        font-size: 3.5rem;
    }

    .contact-item h4 {
        font-size: 1.3rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1rem;
    }

    .whatsapp-link {
        display: block;
        text-align: center;
        margin: 1rem auto;
        max-width: 250px;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar .container {
        flex-direction: initial;
        padding: 0 15px;
    }

    .nav-links {
        width: 85%;
        max-width: 100%;
    }

    .hero {
        padding: 100px 0 60px;
        margin-top: 65px;
    }

    .hero::before,
    .hero::after {
        font-size: 2rem;
        opacity: 0.08;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-logo .riko {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .logo-icon-hero {
        font-size: 1.8rem;
        top: -18px;
    }

    .logo-subtitle-hero {
        font-size: 0.6rem;
        padding: 3px 10px;
        bottom: -22px;
        letter-spacing: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-primary, .btn-download, .btn-whatsapp {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 90%;
        max-width: 280px;
    }

    .whatsapp-icon-btn {
        width: 20px;
        height: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .menu-section {
        padding: 50px 0;
    }

    .menu-category {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }

    .menu-category h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .menu-category::before {
        font-size: 2rem;
        top: -15px;
        right: 15px;
    }

    .menu-items {
        gap: 1rem;
    }

    .menu-item {
        padding: 1rem;
        border-radius: 15px;
    }

    .item-info h4 {
        font-size: 1.1rem;
    }

    .item-info p {
        font-size: 0.85rem;
    }

    .price {
        font-size: 1.5rem;
        padding: 0.4rem 1rem;
    }

    /* Logo en navbar */
    .logo-container {
        padding: 0.6rem 1rem;
        border-radius: 15px;
    }

    .riko-nav {
        font-size: 1.2rem;
        letter-spacing: -0.5px;
    }

    .logo-subtitle-nav {
        font-size: 0.4rem;
        padding: 2px 6px;
        bottom: -10px;
        letter-spacing: 0.5px;
    }

    .logo-icon-nav {
        font-size: 0.9rem;
        top: -8px;
    }

    /* Galería */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-placeholder,
    .gallery-overlay {
        padding: 2rem 1rem;
    }

    .gallery-icon {
        font-size: 3rem;
    }

    .gallery-placeholder p,
    .gallery-overlay p {
        font-size: 1rem;
    }

    /* Carrusel */
    .carousel-container {
        padding: 0 40px;
    }

    .carousel-btn {
        font-size: 1.2rem;
        padding: 0.5rem 0.7rem;
        width: 35px;
        height: 35px;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .social-links-footer a {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    /* About section */
    .about-section {
        padding: 50px 0;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section > .container > p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .feature {
        padding: 1.5rem;
    }

    .feature .icon {
        font-size: 3rem;
    }

    .feature h4 {
        font-size: 1.2rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    /* Contact section */
    .contact-section {
        padding: 50px 0;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-item .icon {
        font-size: 3rem;
    }

    .contact-item h4 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .whatsapp-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .whatsapp-icon-img {
        width: 20px;
        height: 20px;
    }
}

/* Móviles muy pequeños (iPhone SE, etc.) */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }

    .hero-logo .riko {
        font-size: 1.8rem;
    }

    .logo-icon-hero {
        font-size: 1.5rem;
        top: -15px;
    }

    .logo-subtitle-hero {
        font-size: 0.5rem;
        padding: 2px 8px;
        bottom: -18px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .menu-category h3 {
        font-size: 1.2rem;
    }

    .item-info h4 {
        font-size: 1rem;
    }

    .item-info p {
        font-size: 0.8rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .riko-nav {
        font-size: 1rem;
    }

    .logo-subtitle-nav {
        font-size: 0.35rem;
        padding: 1px 5px;
    }

    .btn-primary, .btn-download, .btn-whatsapp {
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }

    .whatsapp-icon-btn {
        width: 18px;
        height: 18px;
    }

    /* About section */
    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section > .container > p {
        font-size: 0.9rem;
    }

    .feature {
        padding: 1.2rem;
    }

    .feature .icon {
        font-size: 2.5rem;
    }

    .feature h4 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.85rem;
    }

    /* Contact section */
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item .icon {
        font-size: 2.5rem;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .whatsapp-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

    .whatsapp-icon-img {
        width: 18px;
        height: 18px;
    }

    /* Footer */
    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .social-links-footer a {
        font-size: 1.1rem;
        width: 36px;
        height: 36px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Dispositivos móviles en modo landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 50px;
    }

    .hero-logo {
        margin-bottom: 1rem;
    }

    .hero-logo .riko {
        font-size: 2rem;
    }

    .logo-icon-hero {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .btn-primary, .btn-download, .btn-whatsapp {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-links {
        top: 60px;
    }

    .menu-section,
    .about-section,
    .contact-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFC107;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.footer-section h4 {
    color: #FF6B35;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: #FFC107;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD54F;
}

.footer-logo {
    font-size: 2rem;
    margin-top: 1rem;
}

.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #FF6B35;
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn span {
    font-size: 1.2rem;
}

.social-btn:hover {
    background: #FF6B35;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    aspect-ratio: 16/10;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--accent-color);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 193, 7, 0.2));
    border: 3px dashed rgba(255, 107, 53, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gallery-icon {
    font-size: 5rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.gallery-placeholder p {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
}

.gallery-overlay p {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.gallery-note p {
    color: #ffffff;
    font-size: 1.1rem;
}

.gallery-note a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.gallery-note a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 50px;
    }
    
    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.7rem 0.9rem;
        width: 40px;
        height: 40px;
    }
    
    .carousel-item {
        aspect-ratio: 1;
    }
    
    .gallery-section h2 {
        font-size: 2rem;
    }
    
    .gallery-icon {
        font-size: 3.5rem;
    }
    
    .gallery-placeholder p,
    .gallery-overlay p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links-footer {
        align-items: center;
    }
}

