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

:root {
    --color-primary: #2e2952;
    --color-background: #f1e7de;
    --color-secondary: #2e2952;
    --color-special: #cf1010;
    --color-text: #333;
    --color-accent: #2e2952;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: var(--color-primary);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-section:hover {
    opacity: 0.8;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-section h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin: 0;
}

.tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-buy-btn {
    background-color: white;
    color: var(--color-primary);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-buy-btn:hover {
    background-color: var(--color-background);
    transform: translateY(-2px);
}

.header-buy-btn:active {
    transform: translateY(0);
}

.header-rappi-btn {
    background-color: rgb(255, 68, 31);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.header-rappi-btn:hover {
    background-color: rgb(235, 50, 15);
    transform: translateY(-2px);
}

.header-rappi-btn:active {
    transform: translateY(0);
}

/* Main Content */
.main {
    min-height: calc(100vh - 100px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) sepia(30%) saturate(1.2) hue-rotate(230deg);
    z-index: 1;
}

.hero-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--promo-color, #2e2952) 65%, transparent), color-mix(in srgb, var(--promo-color, #2e2952) 60%, transparent));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    color: #f1e7de;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 10px;
    transform: skew(-10deg);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Archivo Black', sans-serif;
    font-size: 72px;
    color: #ffffff;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 18px;
    color: #f1e7de;
    margin-bottom: 40px;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}


.promo-highlight {
    margin: 30px 0;
}

.price-circle {
    position: relative;
    width: auto;
    padding: 25px 60px;
    background-color: white;
    border: 5px solid var(--color-primary);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(46, 41, 82, 0.3);
    gap: 0;
}

.price-text {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    font-family: 'Archivo Black', sans-serif;
}

.price-amount {
    color: var(--color-primary);
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    font-family: 'Archivo Black', sans-serif;
    line-height: 1;
}

/* Checkered Texture Divider */
.texture-divider {
    height: 40px;
    background:
        linear-gradient(45deg, var(--color-primary) 25%, transparent 25%),
        linear-gradient(-45deg, var(--color-primary) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--color-primary) 75%),
        linear-gradient(-45deg, transparent 75%, var(--color-primary) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: var(--color-background);
}

.texture-divider2 {
    height: 40px;
    background:
        linear-gradient(45deg, var(--color-special) 25%, transparent 25%),
        linear-gradient(-45deg, var(--color-special) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--color-special) 75%),
        linear-gradient(-45deg, transparent 75%, var(--color-special) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: var(--color-background);
}

/* Productos Section */
.productos {
    padding: 60px 0;
}

.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    color: var(--color-primary);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
}

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

.productos-cta {
    display: flex;
    justify-content: center;
}

.producto-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(46, 41, 82, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 41, 82, 0.2);
}

.producto-imagen {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--color-background), #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.producto-photo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.producto-content {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.producto-nombre {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    color: var(--color-primary);
    font-weight: 900;
    margin-bottom: 5px;
}

.producto-marca {
    font-size: 14px;
    color: #888;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.producto-descripcion {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Buttons */
.cta-button {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #1f1a38;
    transform: scale(1.05);
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button-small {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
}

.cta-button-small:hover {
    background-color: #1f1a38;
    transform: translateY(-2px);
}

.cta-button-large {
    background-color: white;
    color: var(--color-primary);
    border: none;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Archivo Black', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button-large:hover {
    background-color: #f1e7de;
    transform: scale(1.1);
}

/* Floating Action Button */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 0;
    background: none;
    border: none;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900;
}

.floating-button-circle {
    width: 80px;
    height: 80px;
    background-color: #26cb65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(38, 203, 101, 0.4);
    flex-shrink: 0;
}

.floating-button:hover .floating-button-circle {
    box-shadow: 0 12px 32px rgba(38, 203, 101, 0.6);
}

.floating-button:hover {
    transform: translateY(-5px);
}

.floating-button:active {
    transform: scale(0.95);
}

.cheese-icon {
    width: 30px;
    height: 30px;
    color: white;
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    color: white;
}

.floating-button-text {
    font-size: 16px;
    color: #26cb65;
    text-align: left;
    line-height: 1.3;
    white-space: nowrap;
    background-color: white;
    padding: 5px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Location Section */
.location {
    background-color: var(--color-background);
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    color: var(--color-primary);
    font-weight: 900;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 5px;
}

.location-item h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 900;
}

.location-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(46, 41, 82, 0.15);
}

.location-map iframe {
    display: block;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) sepia(30%) saturate(1.2) hue-rotate(230deg);
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--promo-color, #2e2952) 90%, transparent), color-mix(in srgb, var(--promo-color, #2e2952) 85%, transparent));
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    color: white;
}

.cta-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: 40px 0;
    border-top: 3px solid var(--color-accent);
}

.footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact p {
    font-size: 14px;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 48px;
    }

    .floating-button {
        width: 85px;
        height: 85px;
        bottom: 20px;
        right: 20px;
        border-width: 4px;
    }

    .cheese-icon {
        width: 25px;
        height: 25px;
    }

    .floating-button-text {
        font-size: 10px;
    }

    .section-title {
        font-size: 36px;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-title {
        font-size: 36px;
    }

    .location-map {
        height: 300px;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 15px;
    }

    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        text-align: center;
    }

    .price-circle {
        padding: 18px 45px;
        border-width: 4px;
        border-radius: 12px;
    }

    .price-text {
        font-size: 14px;
    }

    .price-amount {
        font-size: 44px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .logo-section h1 {
        font-size: 18px;
    }

    .tagline {
        font-size: 11px;
    }
}

/* Ingredientes Grid */
.ingredientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ingrediente-item {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(46, 41, 82, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ingrediente-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 41, 82, 0.2);
}

.ingrediente-icon {
    font-size: 48px;
    display: block;
}

.ingrediente-item h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    color: var(--color-primary);
    font-weight: 900;
    margin: 0;
}

.ingrediente-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Carousel Promos */
.carousel-promos {
    background-color: var(--color-background);
    padding: 60px 0;
}

.carousel-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    color: var(--color-primary);
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.carousel-item {
    flex: 1;
}

.promo-link {
    text-decoration: none;
    display: block;
}

.promo-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(46, 41, 82, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 41, 82, 0.2);
}

.promo-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), #3d3a6b);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    color: var(--color-primary);
    font-weight: 900;
    padding: 25px 20px 8px;
    margin: 0;
}

.promo-card p {
    font-size: 15px;
    color: #666;
    padding: 0 20px 8px;
    margin: 0;
}

.promo-price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    color: var(--color-primary);
    font-weight: 900;
    padding: 0 20px 20px;
    display: block;
}

@media (max-width: 768px) {
    .ingredientes-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .ingrediente-icon {
        font-size: 36px;
    }

    .ingrediente-item h3 {
        font-size: 16px;
    }

    .ingrediente-item p {
        font-size: 12px;
    }

    .carousel-title {
        font-size: 28px;
    }

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

    .promo-image {
        height: 160px;
    }

    .promo-card h3 {
        font-size: 20px;
        padding: 20px 15px 6px;
    }

    .promo-card p {
        font-size: 13px;
        padding: 0 15px 6px;
    }

    .promo-price {
        font-size: 22px;
        padding: 0 15px 15px;
    }
}

/* ================================
   ANIMACIÓN - PERSONAJE Y AROMA
   ================================ */

.animacion-page {
    position: relative;
}

/* Secciones Divisoras */
.divider-section {
    width: 100%;
    height: 120vh;
    background: #ff4444;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.divider-section h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.divider-section p {
    font-size: 20px;
    max-width: 600px;
}

.animacion-container {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    background: white;
    z-index: 10;
}

/* Título Irresistible */
.animacion-titulo {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Archivo Black', sans-serif;
    font-size: 64px;
    color: var(--color-primary);
    margin: 0;
    z-index: 3;
    width: 100%;
    text-align: center;
}

/* Personaje/Imagen Izquierda */
.animacion-personaje {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    z-index: 2;
}

.animacion-personaje img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Call to Action Button */
.animacion-cta-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    color: white;
    background-color: var(--color-primary);
    padding: 16px 45px;
    border-radius: 30px;
    text-decoration: none;
    z-index: 3;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 41, 82, 0.3);
}

.animacion-cta-button:hover {
    background-color: #1a1238;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 41, 82, 0.4);
}

/* Picada/Meta Derecha */
.animacion-queso {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    z-index: 1;
}

.animacion-queso img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.25));
}

/* Línea de Aroma Curva */
.animacion-aroma-svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    z-index: 0;
    width: 100%;
}

.aroma-line {
    animation: aromaOndular 4s ease-in-out infinite;
}

.aroma-line-2 {
    animation: aromaOndular 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes aromaOndular {
    0%, 100% {
        stroke-dasharray: 0 500;
        stroke-dashoffset: 0;
        opacity: 0.2;
    }
    50% {
        stroke-dasharray: 300 500;
        stroke-dashoffset: -100;
        opacity: 0.6;
    }
}


/* ================================
   PÁGINA DE ÍNDICE - LISTADO PROMOS
   ================================ */

.promos-listado {
    padding: 60px 20px;
    background: white;
}

.promos-listado .section-title {
    margin-bottom: 50px;
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.promo-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.promo-item-image {
    display: block;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f1e7de;
    text-decoration: none;
}

.promo-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-item-content {
    padding: 25px;
}

.promo-item-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--color-primary);
    margin: 0 0 12px 0;
}

.promo-item-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 18px 0;
}

.promo-item-price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    color: var(--color-primary);
    margin: 0 0 15px 0;
}

.promo-item-link {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.promo-item-link:hover {
    background-color: #1a1238;
}

/* Responsive - Promos Index */
@media (max-width: 768px) {
    .promos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-item-title {
        font-size: 20px;
    }

    .promo-item-price {
        font-size: 24px;
    }
}

/* Responsive - Animación */
@media (max-width: 768px) {
    .animacion-container {
        height: auto;
        position: relative;
        padding: 40px 0;
    }

    .animacion-personaje {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 150px;
        height: 150px;
        margin: 0 auto 30px;
    }

    .animacion-queso {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 180px;
        height: 180px;
        margin: 30px auto 0;
    }

    .animacion-aroma-svg {
        display: none;
    }

    .divider-section {
        height: 120vh;
    }

    .animacion-container {
        height: 50vh;
    }
}
