/* Declaraciones de fuentes DINPro */
@font-face {
    font-family: 'DINPro';
    src: url('fuentes/DINPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINPro';
    src: url('fuentes/DINPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DINPro';
    src: url('fuentes/DINPro-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'DINPro';
    src: url('fuentes/DINPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'DINPro';
    src: url('fuentes/DINPro-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Reset y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DINPro', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #faf9f6;
}

/* Asegurar que las imágenes no se muestren más grandes que su contenedor */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
.header {
    background: linear-gradient(135deg, #BE531C, #D3BC8D);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(190, 83, 28, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.logo h1 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #D3BC8D;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #D3BC8D;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: 0.3s;
    transform-origin: center;
}

.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);
}

/* Carrusel Section */
.carrusel {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #D3BC8D, #FFFFFF);
    text-align: center;
}

.carrusel h2 {
    font-size: 2.5rem;
    color: #BE531C;
    margin-bottom: 15px;
    font-weight: bold;
}

.carrusel label {
    font-size: 1.1rem;
    color: #BE531C;
    margin-bottom: 40px;
    display: block;
}

.carrusel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(190, 83, 28, 0.2);
    background: #FFFFFF;
    border: 3px solid #D3BC8D;
}

.carrusel-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 500px;
    align-items: center;
}

/* Altura solo para el primer carrusel */
.carrusel--principal .carrusel-wrapper {
    height: 620px;
}

/* Asegurar que el carrusel de cafetería mantiene su altura original */
.cafeteria .carrusel-wrapper {
    height: 500px;
}

.carrusel-item {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carrusel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block;
}

.carrusel-item:hover img {
    transform: scale(1.05);
}

.carrusel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    font-size: 1.1rem;
    border-radius: 0 0 15px 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.carrusel-item:hover .carrusel-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Solo primer carrusel: captions siempre visibles */
.carrusel--principal .carrusel-caption {
    opacity: 1;
    transform: translateY(0);
}

.carrusel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carrusel-control {
    background: rgba(190, 83, 28, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(190, 83, 28, 0.3);
}

.carrusel-control:hover {
    background: rgba(190, 83, 28, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(190, 83, 28, 0.4);
}

.carrusel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carrusel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(190, 83, 28, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carrusel-indicator.active {
    background: #BE531C;
    transform: scale(1.2);
}

.carrusel-indicator:hover {
    background: rgba(190, 83, 28, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D3BC8D, #FFFFFF);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding-left: 20px;
    animation: slideInLeft 1s ease-out;
}

.hero-content h2 {
    font-size: 3rem;
    color: #BE531C;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #BE531C;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-button {
    background: linear-gradient(135deg, #BE531C, #D3BC8D);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(190, 83, 28, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(190, 83, 28, 0.6);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.bread-placeholder {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

.bread-placeholder img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Quiénes Somos Section */
.quienes-somos {
    padding: 80px 0;
    background: white;
}

.quienes-somos-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.quienes-somos-text {
    flex: 1;
}

.quienes-somos-text h2 {
    font-size: 2.5rem;
    color: #BE531C;
    margin-bottom: 25px;
}

.quienes-somos-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
}

.features-list li {
    color: #555;
    margin-bottom: 10px;
    font-size: 1.1rem;
    padding-left: 10px;
}

.quienes-somos-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.baker-placeholder {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.baker-placeholder img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
}

/* Fundadores caption fijo inferior */
.fundadores-wrap {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.fundadores-wrap img {
    display: block;
}

.fundadores-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
    font-weight: 600;
    padding: 12px 14px 10px;
    text-align: center;
    font-size: 0.95rem;
}

/* Fundadores - tarjeta destacada */
.fundadores-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 2px solid #F0E6D6;
    max-width: 460px;
}

.fundadores-badge {
    position: absolute;
    top: -12px;
    left: 16px;
    background: linear-gradient(135deg, #BE531C, #D3BC8D);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(190,83,28,0.3);
}

.fundadores-figure {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
}

.fundadores-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.fundadores-figure figcaption {
    background: linear-gradient(135deg, #FFF6EF, #FFFFFF);
    color: #8B4513;
    padding: 12px 14px;
    font-weight: 600;
    text-align: center;
    border-top: 2px solid rgba(190,83,28,0.15);
}

@media (max-width: 768px) {
    .fundadores-card {
        max-width: 100%;
    }
    .fundadores-badge {
        left: 12px;
        font-size: 0.85rem;
    }
}

/* Productos Section */
.productos {
    padding: 80px 0;
    background: #FAFAFA;
}

.productos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #BE531C;
    margin-bottom: 50px;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.producto-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(190, 83, 28, 0.15);
    border-color: #BE531C;
}

.producto-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.producto-card h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.producto-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.precio {
    color: #BE531C;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Cafetería Section */
.cafeteria {
    padding: 80px 0;
    background: white;
}

.cafeteria h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #BE531C;
    margin-bottom: 30px;
}

.cafeteria-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.cafeteria-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Evitar que la imagen de cafetería se muestre más grande de lo disponible */
.cafeteria-image {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 0 auto 20px;
    border-radius: 12px;
}

.cafeteria-menu-info {
    background: linear-gradient(135deg, #D3BC8D, #FFFFFF);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid #BE531C;
}

.cafeteria-menu-info h3 {
    color: #BE531C;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'DINPro', sans-serif;
    font-weight: 600;
}

.cafeteria-menu-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cafeteria-menu-info .highlight {
    color: #BE531C;
    font-weight: bold;
    font-size: 1.2rem;
}

.cafeteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cafeteria-note {
    grid-column: 1 / -1;
    font-size: 2rem;
    font-weight: 700;
    color: #BE531C;
    background: #FFF6EF;
    border: 2px solid #BE531C;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .cafeteria-note {
        font-size: 1.6rem;
    }
}

/* Altura fija para carrusel de cafetería en tablet */
@media (max-width: 768px) {
    .cafeteria .carrusel-wrapper {
        height: 350px;
    }
}

/* Altura fija para carrusel de cafetería en móvil */
@media (max-width: 480px) {
    .cafeteria .carrusel-wrapper {
        height: 280px;
    }
}

/* Altura fija para carrusel de cafetería en móvil pequeño */
@media (max-width: 360px) {
    .cafeteria .carrusel-wrapper {
        height: 250px;
    }
}

/* Alturas específicas del primer carrusel por breakpoint */
@media (max-width: 768px) {
    .carrusel--principal .carrusel-wrapper {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .carrusel--principal .carrusel-wrapper {
        height: 320px;
    }
}

@media (max-width: 360px) {
    .carrusel--principal .carrusel-wrapper {
        height: 290px;
    }
}

.cafeteria-card {
    background: #FAFAFA;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cafeteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(190, 83, 28, 0.15);
    border-color: #BE531C;
}

.cafeteria-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.cafeteria-card h3 {
    color: #8B4513;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.cafeteria-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bebidas-list {
    list-style: none;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.bebidas-list li {
    color: #555;
    margin-bottom: 8px;
    font-size: 0.95rem;
    padding-left: 10px;
}

.horario-cafeteria {
    background: linear-gradient(135deg, #D3BC8D, #FFFFFF);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.horario-cafeteria h3 {
    color: #BE531C;
    font-size: 2rem;
    margin-bottom: 30px;
}

.horario-especial {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.horario-item-cafe {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.horario-item-cafe h4 {
    color: #BE531C;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.horario-item-cafe p {
    color: #666;
    line-height: 1.6;
}

.horario-item-cafe strong {
    color: #BE531C;
}

/* Tiendas Section */
.tiendas {
    padding: 80px 0;
    background: #FFFFFF;
}

.tiendas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 50px;
    font-family: Georgia, serif;
}

/* Layout para las tarjetas de tiendas */
.tiendas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Estilos para las tarjetas de tiendas */
.tienda-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.tienda-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.tienda-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: left;
}

.tienda-card h3 {
    color: #8B4513;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    text-align: left;
}

.tienda-info p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    text-align: left;
}

.tienda-info strong {
    color: #8B4513;
    font-weight: bold;
}

.tiendas h3 {
    text-align: center;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 30px;
    margin-top: 40px;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.horario-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.horario-item:hover {
    transform: translateY(-5px);
}

.horario-item h4 {
    color: #BE531C;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.horario-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contacto Section */
.contacto {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf9f6, #ffffff);
    text-align: center;
}

.contacto h2 {
    text-align: center;
    font-size: 3rem;
    color: #BE531C;
    margin-bottom: 20px;
    font-family: 'DINPro', sans-serif;
    font-weight: 700;
}

.contacto-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contacto-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    gap: 120px;
}

.contacto-info {
    text-align: center;
    width: 100%;
}

.contacto-info .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px; /* Cambia de 0 a 30px o el valor que prefieras */
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #BE531C;
    text-align: center;
}

.contacto-info .info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(190, 83, 28, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.info-content h3 {
    color: #BE531C;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'DINPro', sans-serif;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.info-content strong {
    color: #BE531C;
}

.contacto-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    text-align: left;
}

.contacto-form h3 {
    color: #BE531C;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    font-family: 'DINPro', sans-serif;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'DINPro', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #BE531C;
    background: white;
    box-shadow: 0 0 0 3px rgba(190, 83, 28, 0.1);
}

.contacto-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #BE531C, #D3BC8D);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'DINPro', sans-serif;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(190, 83, 28, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #BE531C;
    color: #FFFFFF;
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D3BC8D;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Responsive Design General */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #BE531C;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(190, 83, 28, 0.2);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
        gap: 30px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .quienes-somos-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 600px;
    }
    
    .contacto-info .info-item {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .contacto-form {
        padding: 30px;
    }
    
    .contacto h2 {
        font-size: 2.5rem;
    }
    
    .contacto-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .tienda-card {
        padding: 20px;
        min-height: 120px;
    }

    .tienda-card h3 {
        font-size: 1.2rem;
    }

    .tiendas h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .productos h2,
    .quienes-somos h2,
    .cafeteria h2,
    .tiendas h2,
    .contacto h2 {
        font-size: 2rem;
    }

    /* Responsive para tiendas en móvil */
    .tiendas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Responsive para contacto en móvil pequeño */
    .contacto {
        padding: 60px 0;
    }
    
    .contacto h2 {
        font-size: 2rem;
    }
    
    .contacto-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contacto-info .info-item {
        padding: 15px;
        margin-bottom: 20px;
        gap: 15px;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .contacto-form {
        padding: 25px;
    }
    
    .contacto-form input,
    .contacto-form textarea {
        padding: 15px 18px;
    }
}

/* Responsive para el carrusel */
@media (max-width: 768px) {
    .carrusel {
        padding: 100px 20px 60px;
    }
    
    .carrusel h2 {
        font-size: 2rem;
    }
    
    .carrusel label {
        font-size: 1rem;
    }
    
    .carrusel-wrapper {
        height: 350px;
    }
    
    .carrusel-control {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .carrusel-indicators {
        margin-top: 15px;
    }
    
    .carrusel-indicator {
        width: 11px;
        height: 11px;
    }
    
    .carrusel-caption {
        font-size: 1rem;
        padding: 18px 12px 12px;
    }
    
    .carrusel-container {
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .carrusel-wrapper {
        height: 280px;
    }
    
    .carrusel-control {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .carrusel h2 {
        font-size: 1.8rem;
    }
    
    .carrusel label {
        font-size: 0.9rem;
    }
    
    .carrusel-caption {
        font-size: 0.9rem;
        padding: 15px 10px 10px;
    }
    
    .carrusel-container {
        max-width: 95vw;
    }
}

@media (max-width: 360px) {
    .carrusel-wrapper {
        height: 250px;
    }
    
    .carrusel-control {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .carrusel-caption {
        font-size: 0.85rem;
        padding: 12px 8px 8px;
    }
}

/* Estilos del popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.popup-title {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    font-family: 'DINPro', sans-serif;
    font-weight: 700;
}

.close-btn {
    background: #FF0000;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #E74C3C;
    transform: rotate(90deg) scale(1.1);
}

.popup-body {
    line-height: 1.8;
    color: #333;
    font-family: 'DINPro', sans-serif;
    font-weight: 400;
}

.tienda-info {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid #ADD8E6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tienda-info h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-family: 'DINPro', sans-serif;
    font-weight: 600;
}

.tienda-info p {
    margin: 8px 0;
    color: #333;
    font-size: 1rem;
}

.tienda-info strong {
    color: #8B4513;
    font-weight: bold;
}

/* Responsive para popup de tiendas */
@media (max-width: 768px) {
    .popup-content {
        margin: 20px;
        padding: 25px;
        max-height: 90vh;
    }
    
    .popup-title {
        font-size: 1.4rem;
    }
    
    /* Ajustes para imágenes en móvil */
    .tienda-info img {
        max-width: 100%;
        margin-bottom: 15px;
    }
}

/* Estilos para las imágenes del popup */
.tienda-info img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tienda-info img:hover {
    transform: scale(1.02);
}

/* Responsive para imágenes en diferentes tamaños de pantalla */
@media (max-width: 480px) {
    .tienda-info img {
        max-width: 100%;
        margin-bottom: 15px;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .tienda-info img {
        margin-bottom: 12px;
        border-radius: 6px;
    }
}
