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

:root {
    --primary-lilac: #C8A5D8;
    --secondary-peach: #E8D4C8;
    --dark-lilac: #B08BBB;
    --light-lilac: #F5EBF2;
    --white: #FFFFFF;
    --dark-text: #4A3C52;
    --light-text: #8B7B9A;
}

/* CRITICAL FIX: Force scrollbar to always be visible to prevent layout shift */
html {
    overflow-y: scroll;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background: linear-gradient(135deg, #FFFCFA 0%, #FFF9F5 25%, #FFFAF7 50%, #FFF9F5 75%, #FFFCFA 100%);
    background-attachment: fixed;
    position: relative;
}

/* Optimize animations */
.scroll-row,
.infinite-carousel-track {
    will-change: transform;
}


/* DISABLED: This was causing visual flicker and z-index conflicts
body::before {
    content: '';\n    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(249, 181, 140, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(209, 181, 215, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 50% 10%, rgba(249, 181, 140, 0.05) 0%, transparent 55%),
        radial-gradient(circle at 30% 90%, rgba(232, 212, 200, 0.05) 0%, transparent 55%);\n    pointer-events: none;
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}
*/

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

/* Header Minimalista - MOVIDO A header.css */
/*
.minimal-header {
    background: #d1b5d7;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(200, 165, 216, 0.15);
    backdrop-filter: blur(10px);
    height: 88px;
}
*/

/* TODOS LOS ESTILOS DEL HEADER MOVIDOS A header.css */
/*
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.logo-container {
    height: 76px;
    width: auto;
    transition: none;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
}

.logo-container:hover {
    transform: none;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

.minimal-nav {
    display: flex;
    gap: 44px;
    align-items: center;
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 10px;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
    padding: 3px 10px;
    border-radius: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-item:hover::before {
    width: 80%;
}

.nav-item.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

.nav-item.active::before {
    width: 80%;
}

.contact-dropdown {
    position: relative;
    display: inline-block;
    list-style: none;
    margin-left: -15px;
}

.contact-dropdown-btn {
    background: linear-gradient(135deg, #F9B58C 0%, #F4A67C 100%);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 181, 140, 0.3);
}

.contact-dropdown-btn:hover {
    background: linear-gradient(135deg, #F4A67C 0%, #F09964 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 181, 140, 0.4);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.contact-dropdown-btn[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.contact-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(200, 165, 216, 0.2);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.contact-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #4A3C52;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-dropdown-item:hover {
    background: rgba(200, 165, 216, 0.1);
    transform: translateX(5px);
}

.whatsapp-item:hover {
    background: rgba(37, 211, 102, 0.1);
}

.instagram-item:hover {
    background: linear-gradient(135deg, rgba(249, 148, 51, 0.1), rgba(188, 24, 136, 0.1));
}

.tiktok-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.contact-dropdown-item svg {
    flex-shrink: 0;
}
*/

/* Hero Carousel */
.hero-carousel,
.hero-main-carousel {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-lilac) 0%, var(--secondary-peach) 100%);
    /* FIX: Prevent layout thrashing */
    contain: strict;
}

/* FIX: Prevent scroll anchoring jumps */
body {
    overflow-anchor: none;
}


.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: none;
    animation: fadeIn 0.8s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.cake-1 {
    background: linear-gradient(135deg, var(--primary-lilac), var(--secondary-peach));
}

.cake-2 {
    background: linear-gradient(135deg, var(--secondary-peach), var(--light-lilac));
}

.cake-3 {
    background: linear-gradient(135deg, var(--dark-lilac), var(--primary-lilac));
}

.cake-4 {
    background: linear-gradient(135deg, var(--light-lilac), var(--secondary-peach));
}

.cake-5 {
    background: linear-gradient(135deg, var(--primary-lilac), var(--dark-lilac));
}

.placeholder-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 38px;
    border-radius: 10px;
    text-align: center;
}

.placeholder-text h3 {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.placeholder-text p {
    color: var(--light-text);
}

/* Controles del carrusel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-text);
    z-index: 10;
}

.carousel-btn:hover {
    background: #F9B58C;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Hero Content */
.hero-content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 5;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    font-style: italic;
}

/* Info Section */
.info-section {
    padding: 63px 13px;
    background-color: var(--white);
}

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

.info-card {
    text-align: center;
}

.info-card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 400;
}

.info-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Gallery Scroll */
.gallery-scroll {
    padding: 50px 0;
    background-color: var(--light-lilac);
    overflow: hidden;
}

.gallery-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 60px;
    color: var(--dark-text);
}

.scroll-container {
    overflow: hidden;
}

.scroll-row {
    display: flex;
    gap: 30px;
    animation: scrollRight 30s linear infinite;
}

/* Pausar animaciones durante scroll activo */
body.is-scrolling .scroll-row {
    animation-play-state: paused !important;
}

/* NO pausar el carrusel infinito durante scroll - causaba parpadeos
body.is-scrolling .infinite-carousel-track {
    animation-play-state: paused !important;
}
*/

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex: 0 0 350px;
    height: 350px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 300;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-placeholder,
.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    padding: 25px 13px 32px;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 60px;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--light-lilac);
    border-radius: 20px;
    padding: 25px 19px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(200, 165, 216, 0.2);
    border-color: var(--primary-lilac);
}

.price-card.featured {
    border: 3px solid var(--primary-lilac);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-lilac) 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-lilac);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.size-badge {
    font-size: 1.3rem;
    color: var(--dark-lilac);
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.size-info {
    font-size: 2.5rem;
    color: var(--dark-text);
    font-weight: 300;
    margin-bottom: 10px;
}

.portions {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.price-tag {
    font-size: 2rem;
    color: var(--primary-lilac);
    font-weight: 600;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    text-align: left;
}

.features li {
    padding: 12px 0;
    color: var(--dark-text);
    position: relative;
    padding-left: 30px;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-lilac);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Flavors Section */
.flavors-section {
    padding: 38px 13px;
    background: linear-gradient(135deg, var(--light-lilac) 0%, var(--secondary-peach) 100%);
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.flavor-card {
    background: white;
    padding: 25px 19px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.flavor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flavor-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 400;
}

.flavor-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section-minimal {
    padding: 38px 13px;
    background-color: var(--white);
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.contact-text {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 50px;
    font-style: italic;
}

.contact-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(188, 24, 136, 0.3);
}

.btn-icon {
    font-size: 1.5rem;
}

/* Footer */
/* ========================================
   FOOTER MODERNO - COMPLETO
   ======================================== */
.modern-footer {
    background: linear-gradient(135deg, #4A3C52 0%, #5C4D66 100%);
    color: white;
}

.footer-main {
    padding: 38px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary-lilac);
    text-transform: uppercase;
}

.footer-brand-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--secondary-peach);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 165, 216, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-lilac);
    transform: translateX(5px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--primary-lilac);
}

.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-list li {
    margin-bottom: 25px;
}

.footer-info-list strong {
    display: block;
    color: var(--secondary-peach);
    margin-bottom: 8px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-info-list span {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom-content p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-made-with {
    font-style: italic;
    color: var(--primary-lilac);
}

/* Responsive */
@media (max-width: 768px) {
    .minimal-header {
        padding: 2px 0;
    }

    .header-container {
        flex-direction: column;
        gap: 8px;
        padding: 0 20px;
        min-height: 45px;
    }

    .logo-container {
        height: 52px;
        width: auto;
    }

    .minimal-nav {
        gap: 10px;
    }

    .nav-item {
        font-size: 0.8rem;
        padding: 3px 8px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

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

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

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

    .gallery-item {
        flex: 0 0 250px;
        height: 250px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Cake Type Section */
.cake-type-section {
    margin: 60px 0;
    padding: 25px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-lilac) 100%);
    border-radius: 20px;
}

/* Sección Vintage */
.vintage-section {
    padding: 38px 13px;
    background: var(--white);
}

/* Galería Vintage - Carrusel Automático */
.vintage-gallery-section {
    margin-top: 0;
    padding-top: 0;
}

.vintage-gallery-title {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 600;
}

.vintage-gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
    font-style: italic;
}

/* Wrapper del carrusel - MASONRY 3 FOTOS GRANDES */
.vintage-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    min-height: 700px;
}

/* Grupos de carrusel - MASONRY 3 FOTOS */
.vintage-carousel-group {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 0;
    position: absolute;
    width: calc(100% + 20px);
    margin: 0 -10px;
    height: 700px;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0.6s;
    z-index: 1;
}

.vintage-carousel-group.active {
    opacity: 1;
    visibility: visible;
    /* FIX: Keep absolute to prevent height jump */
    position: absolute;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0s;
    z-index: 2;
}


/* Items individuales - 3 FOTOS MUY GRANDES */
.vintage-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Primera foto - GRANDE IZQUIERDA (toda la altura) */
.vintage-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
}

/* Segunda foto - GRANDE ARRIBA DERECHA (más alta) */
.vintage-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Tercera foto - PEQUEÑA ABAJO DERECHA */
.vintage-gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* Ocultar el resto */
.vintage-gallery-item:nth-child(n+4) {
    display: none;
}

.vintage-gallery-item:hover {
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.vintage-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.vintage-gallery-item:hover .vintage-gallery-img {
    transform: scale(1.08);
}

/* Indicadores del carrusel vintage */
.vintage-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.vintage-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid white;
}

.vintage-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.vintage-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Precios Vintage - Botón Integrado Sutil */
.vintage-pricing-section {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

.pricing-btn-integrated {
    padding: 9.6px 24px;
    background: rgba(249, 181, 140, 0.95);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-btn-integrated:hover {
    background: #F9B58C;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(249, 181, 140, 0.6);
    border-color: white;
}

.pricing-btn-integrated:active {
    transform: translateY(-1px) scale(1.02);
}

/* Modal Overlay - Fondo Difuminado */
.pricing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.pricing-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content - Expand desde Botón (Opción 3) */
.pricing-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.3);
    opacity: 0;
    transform-origin: center bottom;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        opacity 0.4s ease;
}

.pricing-modal-overlay.active .pricing-modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Botón Cerrar (X) */
.pricing-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-lilac);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-modal-close:hover {
    background: var(--primary-lilac);
    color: white;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(200, 165, 216, 0.4);
}

.pricing-modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Lista de precios (Opción 3) */
.vintage-pricing-list {
    padding: 19px 25px;
    background: linear-gradient(135deg, rgba(248, 245, 250, 0.6) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(200, 165, 216, 0.15);
    border: 1px solid rgba(200, 165, 216, 0.2);
}

.vintage-pricing-title {
    font-size: 1.5rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.vintage-pricing-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 30px;
    font-style: italic;
}

.pricing-list-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(200, 165, 216, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.pricing-list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.pricing-list-item:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pricing-list-item:hover {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
    transform: translateX(8px);
    border-color: var(--primary-lilac);
    box-shadow: -4px 0 0 var(--primary-lilac), 0 4px 15px rgba(200, 165, 216, 0.2);
}

.list-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.list-portions {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 500;
    flex-shrink: 0;
}

.list-dots {
    flex-grow: 1;
    height: 1px;
    background-image: linear-gradient(to right, rgba(200, 165, 216, 0.3) 40%, transparent 40%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
    margin: 0 10px;
}

.list-price {
    color: var(--primary-lilac);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.list-star {
    font-size: 1.2rem;
    margin-left: 5px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Item Popular */
.popular-item {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid var(--primary-lilac);
    box-shadow: 0 2px 12px rgba(200, 165, 216, 0.2);
}

.popular-item:hover {
    background: linear-gradient(135deg, rgba(255, 240, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: -4px 0 0 var(--primary-lilac), 0 6px 20px rgba(200, 165, 216, 0.3);
}

.popular-item .list-portions {
    font-weight: 600;
    color: var(--primary-lilac);
}

/* Responsive */
@media (max-width: 768px) {
    .vintage-pricing-collapsible {
        margin: 40px auto 0;
        padding: 0 15px;
    }

    .pricing-toggle-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .vintage-pricing-list {
        padding: 25px 20px;
    }

    .vintage-pricing-title {
        font-size: 1.3rem;
    }

    .vintage-pricing-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .pricing-list-item {
        padding: 10px 12px;
        gap: 8px;
    }

    .list-icon {
        font-size: 1.1rem;
    }

    .list-portions {
        font-size: 0.9rem;
    }

    .list-price {
        font-size: 1rem;
    }

    .list-dots {
        margin: 0 5px;
    }
}

@media (max-width: 480px) {
    .pricing-list-item {
        flex-wrap: wrap;
    }

    .list-dots {
        display: none;
    }

    .list-price {
        margin-left: auto;
    }
}

/* Responsive para galería vintage */
@media (max-width: 1024px) {
    .vintage-carousel-wrapper {
        min-height: 600px;
    }

    .vintage-carousel-group {
        height: 600px;
    }
}

/* Responsive vintage - Movido a sección unificada línea 3195+ */

/* ========================================
   SECCIÓN TORTAS SENCILLAS - Idéntica a Vintage
   ======================================== */

/* Sección Simple */
.simple-section {
    padding: 38px 13px;
    background: var(--white);
}

/* Galería Simple - Carrusel Automático */
.simple-gallery-section {
    margin-top: 0;
    padding-top: 0;
}

.simple-gallery-title {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.simple-gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 25px;
    font-style: italic;
}

/* Eliminado - se usa .pricing-btn-wrapper en su lugar */

/* Wrapper del carrusel simple - MASONRY 3 FOTOS GRANDES */
.simple-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    min-height: 700px;
}

/* Grupos de carrusel simple - MASONRY 3 FOTOS */
.simple-carousel-group {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 0;
    position: absolute;
    width: calc(100% + 20px);
    margin: 0 -10px;
    height: 700px;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0.6s;
    z-index: 1;
}

.simple-carousel-group.active {
    opacity: 1;
    visibility: visible;
    /* FIX: Keep absolute to prevent height jump */
    position: absolute;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0s;
    z-index: 2;
}


/* Items individuales simple - 3 FOTOS MUY GRANDES */
.simple-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Primera foto - GRANDE IZQUIERDA (toda la altura) */
.simple-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
}

/* Segunda foto - GRANDE ARRIBA DERECHA (más alta) */
.simple-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Tercera foto - PEQUEÑA ABAJO DERECHA */
.simple-gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* Ocultar el resto */
.simple-gallery-item:nth-child(n+4) {
    display: none;
}

.simple-gallery-item:hover {
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.simple-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.simple-gallery-item:hover .simple-gallery-img {
    transform: scale(1.08);
}

/* Indicadores del carrusel simple */
.simple-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.simple-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid white;
}

.simple-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.simple-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Lista de precios simple */
.simple-pricing-list {
    padding: 19px 25px;
    background: linear-gradient(135deg, rgba(248, 245, 250, 0.6) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(200, 165, 216, 0.15);
    border: 1px solid rgba(200, 165, 216, 0.2);
}

.simple-pricing-title {
    font-size: 1.5rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.simple-pricing-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--light-text);
    margin-bottom: 30px;
    font-style: italic;
}

/* Responsive para galería simple */
@media (max-width: 1024px) {
    .simple-carousel-wrapper {
        min-height: 600px;
    }

    .simple-carousel-group {
        height: 600px;
    }
}

/* Responsive simple - Movido a sección unificada línea 3195+ */

.cake-type-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 400;
}

.cake-type-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 40px;
    font-style: italic;
}

/* Sabores Section */
.sabores-section {
    margin: 50px 0;
}

.subsection-title {
    font-size: 2rem;
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.adicional-note {
    margin-top: 30px;
    padding: 13px;
    background-color: var(--light-lilac);
    border-radius: 10px;
    text-align: center;
}

.adicional-note p {
    color: var(--dark-text);
    margin: 5px 0;
}

/* Adicionales Grid */
.adicionales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.adicional-card {
    background: var(--white);
    padding: 19px 13px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--light-lilac);
}

.adicional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 165, 216, 0.3);
    border-color: var(--primary-lilac);
}

.adicional-card h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.adicional-subtitle {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 10px;
    font-style: italic;
}

.adicional-price {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 10px;
}

/* Info Importante Section */
.info-importante {
    padding: 28px 13px 32px;
    background-color: var(--white);
}

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

.info-box {
    background: linear-gradient(135deg, var(--light-lilac) 0%, var(--secondary-peach) 100%);
    padding: 19px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-box h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 500;
}

.info-box p {
    color: var(--dark-text);
    line-height: 1.8;
}

/* ===================================
   NUEVAS SECCIONES ESTILO PAULINE CAKE
   =================================== */

/* SECCIÓN 1: Hero Main Video */
.hero-main-carousel {
    margin-top: 80px;
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    will-change: transform;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Hero Background Video - Video único que cubre todo */
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
    background: #E8D4C8;
}

.hero-video-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0;
    padding: 0;
    z-index: 0;
    line-height: 0;
    font-size: 0;
}

.hero-grid-video {
    flex: 1;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    vertical-align: top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(200, 165, 216, 0.4) 0%,
            rgba(232, 212, 200, 0.3) 100%);
    z-index: 10;
    pointer-events: none;
}

.hero-content-box {
    position: absolute;
    top: 50%;
    left: 49.6%;
    transform: translate(-50%, -50%);
    z-index: 20;
    text-align: center;
    display: flex;
    flex-direction: column;
    will-change: transform;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px;
    animation: fadeInHeroLogo 1.5s ease-out;
    pointer-events: none;
}

.hero-logo-translucent {
    width: 600px;
    max-width: 90%;
    height: auto;
    opacity: 0.95;
    filter: brightness(2.5) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInHeroLogo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn {
    display: inline-block;
    background: #F9B58C;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(249, 181, 140, 0.4);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn:hover {
    background: #E8A77A;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 181, 140, 0.6);
}

/* Botones de navegación del hero */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark-text);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: #F9B58C;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 40px;
}

.hero-next {
    right: 40px;
}

/* Indicadores del hero */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* SECCIÓN 2: Top Picks */
/* SECCIÓN 2: Carrusel Infinito */
.infinite-carousel-section {
    padding: 25px 13px 32px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.section-title-main {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 45px;
    font-style: italic;
}

.section-subtitle-elegant {
    text-align: left;
    font-size: 1.1rem;
    color: var(--primary-lilac);
    margin-bottom: 20px;
    margin-top: -5px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.infinite-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    padding: 20px 0;
    /* Optimización para prevenir reflows */
    contain: layout style paint;
}

.infinite-carousel-track {
    display: flex;
    gap: 30px;
    padding-right: 30px;
    /* Fix for seamless loop calculation */
    animation: scroll-left 300s linear infinite;
    /* Velocidad reducida */
    width: max-content;
    /* SIMPLIFICADO: Removidas optimizaciones conflictivas */
}

.infinite-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.infinite-carousel-item {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    position: relative;
}

.infinite-carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(200, 165, 216, 0.25);
}

.infinite-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Lightbox Modal para expandir imágenes */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-img {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    font-weight: 300;
    transition: transform 0.2s ease;
    padding: 0 20px;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    padding: 20px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -40px;
        font-size: 2.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 15px 20px;
    }
}

/* SECCIÓN 3: Sabores y Rellenos */
.fillings-section {
    padding: 30px 20px 40px;
    background: transparent;
}

.fillings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.fillings-text {
    padding: 25px;
}

.fillings-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 40px;
}

.fillings-btn {
    display: inline-block;
    background: #F9B58C;
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 181, 140, 0.3);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.fillings-btn:hover {
    background: #E8A77A;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 181, 140, 0.5);
}

.fillings-images {
    width: 100%;
}

/* Títulos centrados para la sección */
.section-title-main-center {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.paso-3-title {
    margin-top: 0px;
    margin-bottom: 15px;
}

/* Sección intro */
.intro-section {
    padding: 19px 13px;
    background: linear-gradient(135deg, #F5EBF2 0%, #FFFFFF 100%);
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    max-width: 800px;
    margin: 20px auto 0;
}

.section-subtitle-elegant-center {
    font-size: 1.2rem;
    text-align: center;
    color: #B08BBB;
    font-style: italic;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* Grid de Sabores - Bizcochos y Rellenos lado a lado */
.sabores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.sabor-column {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(200, 165, 216, 0.1);
    padding: 25px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.sabor-column:hover {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(200, 165, 216, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(200, 165, 216, 0.15);
}

.paso-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-lilac);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0px;
}

.sabor-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.paso-description {
    font-size: 1rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}


/* Responsive para sabores */
@media (max-width: 768px) {
    .fillings-section {
        padding: 50px 20px 40px;
    }

    .sabores-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .section-title-main-center {
        font-size: 2rem;
    }

    .sabor-subtitle {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .paso-description {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }

    .sabor-column {
        padding: 10px 8px;
    }

    .fillings-img {
        height: 220px !important;
    }

    .fillings-carousel {
        height: 220px !important;
    }

    .fillings-slide-overlay h3 {
        font-size: 0.9rem !important;
    }

    .fillings-indicators {
        bottom: 8px !important;
    }

    .fillings-dot {
        width: 6px !important;
        height: 6px !important;
    }
}

.fillings-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Carrusel de Sabores - Transiciones Chulas */
.fillings-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.fillings-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.fillings-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

.fillings-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.fillings-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Ampliar fotos de bizcochos 20% */
.bizcocho-img {
    transform: scale(1.2);
    object-fit: cover;
}

.fillings-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 19px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    transform: translateY(0);
    opacity: 1;
}

.fillings-slide-overlay h3 {
    color: white;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.fillings-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.fillings-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid white;
}

.fillings-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.fillings-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* SECCIÓN 4: Equipo CON VIDEO */
.team-section {
    padding: 36px 20px;
    background-color: var(--white);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.team-video-container {
    width: 100%;
    position: relative;
}

.team-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    outline: none;
    background: transparent;
    display: block;
}

/* Eliminar cualquier overlay en el video */
.team-video::-webkit-media-controls-overlay-play-button {
    display: none;
}

.team-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.5) !important;
}

.team-video::-webkit-media-controls-play-button,
.team-video::-webkit-media-controls-timeline,
.team-video::-webkit-media-controls-volume-slider,
.team-video::-webkit-media-controls-mute-button,
.team-video::-webkit-media-controls-fullscreen-button {
    filter: brightness(1) !important;
}

/* Para Firefox */
.team-video::-moz-media-controls {
    background: rgba(0, 0, 0, 0.5) !important;
}

.team-video::before,
.team-video::after,
.team-video-container::before,
.team-video-container::after {
    display: none !important;
}

.team-text {
    padding: 25px;
}

.team-description {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--dark-text);
    margin-bottom: 30px;
}

.team-signature {
    font-size: 1.3rem;
    color: var(--primary-lilac);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.video-cta {
    font-size: 1rem;
    color: var(--light-text);
    font-style: italic;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Responsive para las nuevas secciones */
@media (max-width: 1024px) {
    .hero-main-carousel {
        height: 600px;
    }

    .hero-video-grid {
        display: flex;
        flex-direction: row;
    }

    .hero-grid-video {
        flex: 1;
    }

    .hero-logo-translucent {
        width: 450px;
        max-width: 79%;
    }

    .sabores-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .sabor-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }

    .paso-description {
        font-size: 0.75rem !important;
        margin-bottom: 15px !important;
    }

    .sabor-column {
        padding: 10px 8px !important;
    }

    .fillings-img {
        height: 220px !important;
    }

    .fillings-carousel {
        height: 220px !important;
    }

    .fillings-slide-overlay h3 {
        font-size: 0.9rem !important;
    }

    .fillings-indicators {
        bottom: 8px !important;
    }

    .fillings-dot {
        width: 6px !important;
        height: 6px !important;
    }

    .fillings-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .top-picks-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-main-carousel {
        height: 625px;
        /* Aumentado 25% desde 500px */
        margin-top: 45px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .hero-video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 0;
    }

    .hero-grid-video {
        width: 100%;
    }

    .hero-logo-translucent {
        width: 360px;
        max-width: 77%;
    }

    .hero-content-box {
        padding: 13px;
    }

    .section-title-main {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .infinite-carousel-item {
        width: 280px;
        height: 280px;
    }

    .infinite-carousel-track {
        gap: 20px;
        animation: scroll-left 300s linear infinite !important;
    }

    .fillings-text,
    .team-text {
        padding: 13px;
    }

    .fillings-img {
        height: 450px;
    }

    .fillings-carousel {
        height: 450px;
    }

    .fillings-slide-overlay h3 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

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

    .team-video {
        border-radius: 15px;
    }

    .fillings-description,
    .team-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .video-cta {
        font-size: 0.9rem;
    }
}

/* ========================================
   MENÚ HAMBURGUESA RESPONSIVE
   ======================================== */
/* MENU TOGGLE - MOVIDO A header.css */
/*
.menu-toggle-minimal {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    transition: all 0.3s ease;
}

.menu-toggle-minimal .hamburger {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle-minimal[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.menu-toggle-minimal[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle-minimal[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}
*/

/* ========================================
   BOTÓN FLOTANTE DE CONTACTO
   ======================================== */

/* Botón principal flotante */
.contact-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F9B58C 0%, #F4A67C 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(249, 181, 140, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Optimizaciones para mantener fijo durante scroll */
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.contact-fab:hover {
    transform: translateZ(0) translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(249, 181, 140, 0.6);
}

.contact-fab.active {
    background: linear-gradient(135deg, #E8A77A 0%, #D99568 100%);
    transform: translateZ(0) rotate(180deg);
}

/* Icono del botón */
.contact-fab svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

/* Menú de redes sociales */
.contact-menu {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) translateZ(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Optimizaciones para mantener fijo durante scroll */
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
}

/* Botones de redes sociales */
.social-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    transform: scale(0);
}

.contact-menu.active .social-fab {
    animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.contact-menu.active .social-fab:nth-child(1) {
    animation-delay: 0.05s;
}

.contact-menu.active .social-fab:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-menu.active .social-fab:nth-child(3) {
    animation-delay: 0.15s;
}

@keyframes popIn {
    to {
        transform: scale(1);
    }
}

.social-fab:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-fab svg {
    width: 24px;
    height: 24px;
}

/* WhatsApp */
.social-fab.whatsapp {
    background: #25D366;
}

.social-fab.whatsapp:hover {
    background: #20BA5A;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Instagram */
.social-fab.instagram {
    background: linear-gradient(135deg, #FD5949 0%, #D6249F 50%, #285AEB 100%);
}

.social-fab.instagram:hover {
    box-shadow: 0 6px 25px rgba(253, 89, 73, 0.4);
}

/* TikTok */
.social-fab.tiktok {
    background: #000000;
}

.social-fab.tiktok:hover {
    background: #1a1a1a;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-fab {
        bottom: 20px;
        right: 35px;
        width: 55px;
        height: 55px;
    }

    .contact-fab svg {
        width: 26px;
        height: 26px;
    }

    .contact-menu {
        bottom: 85px;
        right: 35px;
    }

    .social-fab {
        width: 48px;
        height: 48px;
    }

    .social-fab svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .contact-fab {
        bottom: 15px;
        right: 30px;
        width: 50px;
        height: 50px;
    }

    .contact-fab svg {
        width: 24px;
        height: 24px;
    }

    .contact-menu {
        bottom: 75px;
        right: 30px;
        gap: 12px;
    }

    .social-fab {
        width: 45px;
        height: 45px;
    }

    .social-fab svg {
        width: 20px;
        height: 20px;
    }
}


/* ========================================
   RESPONSIVE MENU MOBILE - MOVIDO A header.css
   ======================================== */
/*
@media (max-width: 768px) {
    .menu-toggle-minimal {
        display: flex;
    }

    .minimal-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #FFE4C4 0%, #F9B58C 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1001;
        padding: 13px;
    }

    .minimal-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        font-size: 1.5rem;
        padding: 15px 40px;
        width: 80%;
        text-align: center;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .minimal-nav.active .nav-item {
        transform: translateY(0);
        opacity: 1;
    }

    .minimal-nav.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .minimal-nav.active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .minimal-nav.active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .minimal-nav.active .header-social-icons {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.4s;
    }

    .header-social-icons {
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
        margin-left: 0;
        margin-top: 20px;
    }

    .header-social-link {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-item:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-5px);
    }

    .nav-item.active {
        background: #F9B58C;
        color: white;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo-container {
        height: 52px;
        width: auto;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-item {
        font-size: 1.2rem;
        padding: 12px 30px;
        width: 90%;
    }

    .logo-container {
        height: 42px;
        width: auto;
    }

    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
*/
/* ========================================
   NUEVA SECCIÓN: TORTAS LADO A LADO
   ======================================== */

.cakes-gallery-section {
    padding: 16px 0;
    background: linear-gradient(to bottom, #FFFCFA 0%, #FFF5F0 100%);
    position: relative;
}

.cakes-gallery-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(200, 165, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(249, 181, 140, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(200, 165, 216, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(249, 181, 140, 0.06) 0%, transparent 40%);
    animation: float-clouds 30s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes float-clouds {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -20px);
    }

    66% {
        transform: translate(-20px, 10px);
    }
}

.cakes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    z-index: 1;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cake-column {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(200, 165, 216, 0.1);
    padding: 24px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: visible;
}

.cake-column:hover {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(200, 165, 216, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(200, 165, 216, 0.15);
}

.gallery-title {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 20px;
}

.pricing-btn-wrapper {
    position: absolute;
    bottom: 20px;
    left: 10px;
    z-index: 15;
    margin: 0;
    padding: 0;
    pointer-events: auto;
    /* Asegurar que el wrapper capture eventos */
}

.pricing-btn-wrapper * {
    pointer-events: auto;
    /* Asegurar que los elementos dentro capturen eventos */
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .cakes-grid {
        gap: 30px;
    }

    .cake-column {
        padding: 30px 25px;
    }

    .gallery-title {
        font-size: 1.7rem;
    }

    .vintage-carousel-wrapper,
    .simple-carousel-wrapper {
        min-height: 500px;
    }

    .vintage-carousel-group,
    .simple-carousel-group {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .cakes-gallery-section {
        padding: 38px 13px;
    }

    .cakes-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cake-column {
        padding: 19px 13px;
    }

    .gallery-title {
        font-size: 1.5rem;
    }

    .vintage-carousel-wrapper,
    .simple-carousel-wrapper {
        min-height: 450px;
    }

    /* MANTENER MOSAICO IGUAL QUE DESKTOP */
    .vintage-carousel-group,
    .simple-carousel-group {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        height: 450px;
        gap: 0;
    }

    /* Primera foto - GRANDE IZQUIERDA */
    .vintage-gallery-item:nth-child(1),
    .simple-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Segunda foto - ARRIBA DERECHA */
    .vintage-gallery-item:nth-child(2),
    .simple-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Tercera foto - ABAJO DERECHA */
    .vintage-gallery-item:nth-child(3),
    .simple-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* Ocultar el resto */
    .vintage-gallery-item:nth-child(n+4),
    .simple-gallery-item:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 1.3rem;
    }

    .vintage-carousel-wrapper,
    .simple-carousel-wrapper {
        min-height: 380px;
    }

    /* MANTENER MOSAICO IGUAL QUE DESKTOP */
    .vintage-carousel-group,
    .simple-carousel-group {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        height: 380px;
        gap: 0;
    }

    /* Primera foto - GRANDE IZQUIERDA */
    .vintage-gallery-item:nth-child(1),
    .simple-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Segunda foto - ARRIBA DERECHA */
    .vintage-gallery-item:nth-child(2),
    .simple-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Tercera foto - ABAJO DERECHA */
    .vintage-gallery-item:nth-child(3),
    .simple-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* Ocultar el resto */
    .vintage-gallery-item:nth-child(n+4),
    .simple-gallery-item:nth-child(n+4) {
        display: none;
    }

    .simple-dot,
    .vintage-dot {
        width: 10px;
        height: 10px;
    }

    .simple-dot.active,
    .vintage-dot.active {
        width: 30px;
    }
}

/* ========================================
   GALERÍA ESTÁTICA ELEGANTE - SIN CARRUSEL
   ======================================== */

.cakes-gallery-section-static {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-lilac) 100%);
}

.cakes-grid-static {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.cake-column-static {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.cake-column-static:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-title-static {
    font-size: 2rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 35px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Grid de 3x2 (6 fotos) */
.static-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.static-gallery-item {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.static-gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.static-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.static-gallery-item:hover .static-gallery-img {
    transform: scale(1.15);
}

/* Overlay suave al hacer hover */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 165, 216, 0.9) 0%, rgba(176, 139, 187, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.static-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 3rem;
    color: white;
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.static-gallery-item:hover .overlay-icon {
    transform: scale(1);
}

.pricing-section-static {
    text-align: center;
    margin-top: 30px;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .cakes-grid-static {
        gap: 40px;
    }

    .cake-column-static {
        padding: 19px;
    }

    .gallery-title-static {
        font-size: 1.7rem;
    }

    .static-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .static-gallery-item {
        height: 180px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .cakes-gallery-section-static {
        padding: 38px 13px;
    }

    .cakes-grid-static {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cake-column-static {
        padding: 25px;
    }

    .gallery-title-static {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .static-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .static-gallery-item {
        height: 150px;
    }

    .overlay-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-title-static {
        font-size: 1.3rem;
    }

    .static-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .static-gallery-item {
        height: 130px;
    }

    .overlay-icon {
        font-size: 2rem;
    }

    .cake-column-static {
        padding: 13px;
    }
}

/* ========================================
   SECCIÓN EXTRAS - PERSONALIZA TU CREACIÓN
   GLASSMORPHISM STYLE
   ======================================== */
.extras-section {
    padding: 25px 13px 28px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.extras-section::before {
    display: none;
}

.extras-section::after {
    display: none;
}

.extras-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.section-title-elegant {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: var(--dark-text);
    text-transform: uppercase;
}

.section-subtitle-elegant {
    font-size: 1.2rem;
    color: var(--primary-lilac);
    font-style: italic;
    font-weight: 300;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.extra-card {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 15px;
    box-shadow: 0 8px 32px 0 rgba(200, 165, 216, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.extra-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 165, 216, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.extra-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px 0 rgba(200, 165, 216, 0.3);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(200, 165, 216, 0.4);
}

.extra-card:hover::before {
    opacity: 1;
}

.featured-extra {
    background: rgba(245, 235, 242, 0.45);
    border: 1.5px solid rgba(200, 165, 216, 0.5);
    position: relative;
}

.featured-extra:hover {
    background: rgba(245, 235, 242, 0.65);
}

.extra-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(200, 165, 216, 0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(200, 165, 216, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.special-extra {
    background: rgba(255, 244, 230, 0.45);
    border: 1.5px solid rgba(249, 181, 140, 0.4);
}

.special-extra:hover {
    background: rgba(255, 244, 230, 0.65);
}

.extra-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(200, 165, 216, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(200, 165, 216, 0.2);
}

.extra-card:hover .extra-icon-wrapper {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(200, 165, 216, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.75);
}

.extra-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.extra-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.extra-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.extra-title {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-description {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 50px;
    flex-grow: 1;
}

.extra-price-tag {
    padding: 8px 16px;
    background: rgba(200, 165, 216, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(200, 165, 216, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
    width: fit-content;
}

.extra-card:hover .extra-price-tag {
    background: rgba(200, 165, 216, 0.95);
    box-shadow: 0 8px 30px rgba(200, 165, 216, 0.4);
    transform: scale(1.05);
}

.price-range {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.special-price {
    background: rgba(249, 181, 140, 0.85);
    backdrop-filter: blur(10px);
}

.extra-card:hover .special-price {
    background: rgba(249, 181, 140, 0.95);
}

/* ========================================
   SECCIÓN INFO IMPORTANTE - GLASSMORPHISM
   ======================================== */
.important-info-section {
    padding: 32px 13px 35px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.important-info-section::before {
    display: none;
}

.important-info-section::after {
    display: none;
}

.info-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.info-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px 22px;
    box-shadow: 0 8px 32px 0 rgba(200, 165, 216, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 165, 216, 0.2);
}

/* Fallback para navegadores sin soporte de backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .info-card-modern {
        background: rgba(255, 255, 255, 1) !important;
    }

    .icon-circle {
        background: rgba(255, 255, 255, 1) !important;
    }
}

.info-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 165, 216, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
}

.info-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px 0 rgba(200, 165, 216, 0.4);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(200, 165, 216, 0.5);
}

.featured-info {
    background: rgba(245, 235, 242, 0.95);
    border: 1.5px solid rgba(200, 165, 216, 0.6);
    position: relative;
}

.featured-info::before {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.3rem;
    opacity: 0.6;
    z-index: 2;
}

.featured-info:hover {
    background: rgba(245, 235, 242, 1);
}

.info-card-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(200, 165, 216, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(200, 165, 216, 0.3);
}

.info-card-modern:hover .icon-circle {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(200, 165, 216, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 1);
}

.icon-emoji {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.info-card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.info-card-title {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.info-card-text {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.info-card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent, rgba(200, 165, 216, 0.15));
    border-radius: 25px 0 25px 0;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.info-card-modern:hover .info-card-decoration {
    opacity: 0.8;
}

.info-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 25px 19px;
    background: transparent;
    border: none;
}

.cta-text {
    color: var(--dark-text);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.cta-button {
    display: inline-block;
    background: rgba(200, 165, 216, 0.85);
    backdrop-filter: blur(15px);
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(200, 165, 216, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: rgba(200, 165, 216, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 165, 216, 0.4);
}

/* ========================================
   RESPONSIVE - SECCIONES EXTRAS E INFO
   ======================================== */
@media (max-width: 1024px) {

    .extras-grid,
    .info-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .section-title-elegant {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    .extras-section,
    .important-info-section {
        padding: 38px 13px;
    }

    .section-title-elegant {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .section-subtitle-elegant {
        font-size: 1rem;
    }

    .extras-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .extra-card {
        padding: 15px 10px;
        min-height: 180px;
        border-radius: 15px;
    }

    .info-card-modern {
        padding: 20px 15px;
    }

    .extra-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
    }

    .extra-icon-img {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .extra-icon {
        font-size: 1.5rem;
    }

    .icon-emoji {
        font-size: 1.3rem;
    }

    .extra-title {
        font-size: 0.85rem;
        margin-bottom: 6px;
        min-height: auto;
        line-height: 1.3;
    }

    .extra-description {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 10px;
        min-height: 40px;
    }

    .price-range {
        font-size: 0.7rem;
    }

    .extra-price-tag {
        padding: 6px 12px;
        border-radius: 15px;
    }

    .info-cta {
        padding: 19px 13px;
    }

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

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .extras-section,
    .important-info-section {
        padding: 32px 10px;
    }

    .section-title-elegant {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .extras-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .extra-card {
        padding: 12px 8px;
        min-height: 160px;
        border-radius: 12px;
    }

    .extra-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }

    .extra-icon-img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .extra-icon {
        font-size: 1.3rem;
    }

    .icon-emoji {
        font-size: 1.1rem;
    }

    .extra-title {
        font-size: 0.75rem;
        margin-bottom: 5px;
        min-height: auto;
        line-height: 1.2;
    }

    .extra-description {
        font-size: 0.65rem;
        line-height: 1.3;
        margin-bottom: 8px;
        min-height: 35px;
    }

    .price-range {
        font-size: 0.65rem;
    }

    .extra-price-tag {
        padding: 5px 10px;
        border-radius: 12px;
    }

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

    .info-card-text {
        font-size: 0.9rem;
        min-height: auto;
    }
}

/* ========================================
   SECCIÓN INTRO MODERNA
   ======================================== */
.intro-section-modern {
    padding: 25px 13px 10px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.intro-section-modern::before {
    display: none;
}

.intro-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-icon-container {
    margin-bottom: 20px;
    text-align: center !important;
    position: relative !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.intro-icon-circle {
    width: 115px;
    height: 115px;
    margin: 0 auto !important;
    background: linear-gradient(135deg, var(--primary-lilac), var(--dark-lilac));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(200, 165, 216, 0.3);
    animation: dropInBounce 1.8s ease-out forwards,
        floatIcon 3s ease-in-out 1.8s infinite;
    opacity: 0;
}

@keyframes dropInBounce {
    0% {
        opacity: 0;
        transform: translateY(-200px) scale(0.7);
    }

    40% {
        opacity: 1;
    }

    65% {
        transform: translateY(8px) scale(1.02);
    }

    80% {
        transform: translateY(-3px) scale(0.99);
    }

    90% {
        transform: translateY(1px) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.intro-main-icon {
    font-size: 3.5rem;
    filter: brightness(10);
}

.intro-main-icon-img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    filter: brightness(1.05) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.4));
    display: block;
}

.intro-text-modern {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.8;
    max-width: 700px;
    margin: 20px auto 35px;
    font-weight: 300;
}

.intro-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.intro-step {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    position: relative;
    border: 2px solid transparent;
}

.intro-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(200, 165, 216, 0.25);
    border-color: var(--primary-lilac);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-lilac), var(--dark-lilac));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(200, 165, 216, 0.3);
}

.step-title {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-text {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

.intro-arrow {
    font-size: 2rem;
    color: var(--primary-lilac);
    font-weight: 300;
}

/* ========================================
   SECCIÓN INSPIRACIÓN MODERNA
   ======================================== */
.infinite-carousel-section-modern {
    padding: 10px 13px 38px;
    background: transparent;
    position: relative;
    overflow: hidden;
    /* Aislar esta sección para prevenir reflows globales */
    contain: layout;
}

.inspiration-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

/* Estilos generales para decoraciones de sección */
.section-header-decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.section-decoration-left,
.section-decoration-right {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-lilac), transparent);
    max-width: 200px;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Compatibilidad con código anterior */
.inspiration-decoration-left,
.inspiration-decoration-right {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-lilac), transparent);
    max-width: 200px;
}

.inspiration-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.inspiration-sparkle {
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}


/* ========================================
   SECCIÓN CONTACTO ELEGANTE - REDISEÑADA
   ======================================== */
.contact-section-elegant {
    padding: 45px 20px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.contact-section-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(200, 165, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(249, 181, 140, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.contact-wrapper-elegant {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-decoration-top {
    margin-bottom: 15px;
}

.decoration-heart {
    font-size: 2rem;
    display: inline-block;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }
}

.contact-main-title {
    font-size: 2.2rem;
    color: var(--dark-text);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 35px;
    font-style: italic;
}

.contact-cards-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card-elegant {
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-inner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 235, 242, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(200, 165, 216, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-lilac), #F9B58C);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card-elegant:hover .contact-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(200, 165, 216, 0.25);
    border-color: var(--primary-lilac);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 235, 242, 1) 100%);
}

.contact-card-elegant:hover .contact-card-inner::before {
    transform: scaleX(1);
}

.contact-card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.contact-card-elegant:hover .contact-card-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 10px 30px rgba(200, 165, 216, 0.45);
}

.icon-svg {
    width: 32px;
    height: 32px;
    color: white;
    fill: white;
}

.icon-svg path {
    fill: white;
}

.contact-card-icon svg {
    display: block;
}

.contact-card-icon svg path {
    fill: white !important;
}

.contact-card-title {
    font-size: 1.2rem;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-card-number {
    font-size: 1.1rem;
    color: var(--primary-lilac);
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-card-description {
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: italic;
}

.contact-footer-note {
    padding: 14px 22px;
    background: linear-gradient(135deg, rgba(200, 165, 216, 0.1), rgba(249, 181, 140, 0.1));
    border-radius: 50px;
    display: inline-block;
}

.contact-footer-note p {
    font-size: 0.85rem;
    color: var(--dark-text);
    margin: 0;
    font-weight: 500;
}

/* ========================================
   SECCIÓN CONTACTO MODERNA (LEGACY)
   ======================================== */
.contact-section-modern {
    padding: 23px 13px 25px;
    background: linear-gradient(135deg, #F5EBF2 0%, #E8D4C8 50%, #F5EBF2 100%);
    position: relative;
    overflow: hidden;
}

.contact-section-modern::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 165, 216, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-section-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 212, 200, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-content-modern {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content-compact {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-title-compact {
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-buttons-compact {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn-lauren {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(200, 165, 216, 0.2);
    border: 2px solid transparent;
    min-width: 280px;
}

.contact-btn-lauren:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 165, 216, 0.35);
    border-color: var(--primary-lilac);
}

.whatsapp-lauren {
    color: var(--primary-lilac);
}

.whatsapp-lauren:hover {
    background: linear-gradient(135deg, rgba(200, 165, 216, 0.1) 0%, rgba(249, 181, 140, 0.1) 100%);
}

.instagram-lauren {
    color: #F9B58C;
}

.instagram-lauren:hover {
    background: linear-gradient(135deg, rgba(249, 181, 140, 0.1) 0%, rgba(200, 165, 216, 0.1) 100%);
}

.contact-icon-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-btn-lauren:hover .contact-icon-svg {
    transform: scale(1.15);
}

.contact-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.contact-btn-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.contact-btn-number {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.contact-header-modern {
    text-align: center;
    margin-bottom: 40px;
}

.contact-icon-decoration {
    margin-bottom: 20px;
}

.contact-heart {
    font-size: 3.5rem;
    display: inline-block;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

.contact-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.contact-card-modern {
    background: white;
    padding: 35px 25px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.whatsapp-card::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.instagram-card::before {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-card-modern:hover::before {
    transform: scaleX(1);
}

.whatsapp-card:hover {
    border-color: #25D366;
}

.instagram-card:hover {
    border-color: #bc1888;
}

.contact-card-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.whatsapp-card .contact-card-icon-wrapper {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.instagram-card .contact-card-icon-wrapper {
    background: linear-gradient(135deg, #f09433, #bc1888);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.3);
}

.contact-card-modern:hover .contact-card-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

.contact-card-icon {
    font-size: 2.5rem;
    filter: brightness(10);
}

.contact-card-content {
    text-align: center;
    flex: 1;
}

.contact-card-title {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card-number {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.whatsapp-card .contact-card-number {
    color: #25D366;
}

.instagram-card .contact-card-number {
    background: linear-gradient(90deg, #f09433, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card-description {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
}

.contact-card-arrow {
    font-size: 2rem;
    color: var(--primary-lilac);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-card-modern:hover .contact-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    padding: 25px 19px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.contact-feature p {
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 500;
    max-width: 150px;
}

/* ========================================
   RESPONSIVE - SECCIONES MODERNAS
   ======================================== */
@media (max-width: 768px) {

    .intro-section-modern,
    .infinite-carousel-section-modern,
    .contact-section-modern,
    .contact-section-elegant {
        padding: 25px 13px;
    }

    .contact-main-title {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .contact-cards-elegant {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card-inner {
        padding: 19px 13px;
    }

    .contact-card-icon {
        width: 60px;
        height: 60px;
    }

    .icon-svg {
        width: 30px;
        height: 30px;
    }

    .decoration-heart {
        font-size: 2rem;
    }

    .contact-footer-note {
        padding: 15px 20px;
    }

    .contact-footer-note p {
        font-size: 0.85rem;
    }

    .contact-title-compact {
        font-size: 1.6rem;
    }

    .contact-buttons-compact {
        flex-direction: column;
        gap: 15px;
    }

    .contact-btn-lauren {
        min-width: 100%;
    }

    .contact-icon-svg {
        width: 28px;
        height: 28px;
    }

    .contact-btn-number {
        font-size: 1rem;
    }

    .intro-steps {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .intro-arrow {
        transform: rotate(0deg);
        font-size: 1rem;
        display: flex;
        align-items: center;
    }

    .intro-step {
        min-width: 0;
        max-width: none;
        flex: 1;
        padding: 15px 10px;
    }

    .step-number {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
        margin: 0 auto 8px !important;
    }

    .step-title {
        font-size: 0.85rem !important;
        margin-bottom: 3px !important;
    }

    .step-text {
        font-size: 0.7rem !important;
    }

    .inspiration-decoration-left,
    .inspiration-decoration-right {
        max-width: 80px;
    }

    .inspiration-sparkle {
        font-size: 1.5rem;
    }

    .contact-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-features {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .intro-icon-circle {
        width: 80px;
        height: 80px;
    }

    .intro-main-icon {
        font-size: 2.5rem;
    }

    .intro-main-icon-img {
        width: 85%;
        height: 85%;
    }

    .intro-text-modern {
        font-size: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .contact-heart {
        font-size: 2.5rem;
    }

    .contact-card-modern {
        padding: 19px 13px;
    }

    .contact-card-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .contact-card-icon {
        font-size: 2rem;
    }

    /* Footer Responsive - DESACTIVADO - Ahora se usa footer-mobile.css */
    /*
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    */
}

/* ========================================
   CAJAS DE ALFAJORES - ESTILO SABORES
   ======================================== */
.alfajor-caja-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alfajor-caja-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1 / 1;
}

.alfajor-caja-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
    z-index: 1;
}

.alfajor-caja-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.alfajor-caja-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.alfajor-caja-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

.alfajor-caja-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
    transition: all 0.4s ease;
}

.alfajor-caja-item:hover .alfajor-caja-overlay {
    padding: 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.alfajor-caja-overlay h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-align: left;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.alfajor-caja-item:hover .alfajor-caja-overlay h3 {
    font-size: 1.3rem;
    letter-spacing: 2.5px;
}

/* Píldora de precio */
.alfajor-caja-price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
}

.alfajor-caja-price span {
    background: linear-gradient(135deg, #F9B58C 0%, #F4A67C 100%);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 181, 140, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.alfajor-caja-wrapper:hover .alfajor-caja-price span {
    background: linear-gradient(135deg, #F4A67C 0%, #F09964 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 181, 140, 0.5);
}

/* Responsive - Cajas de Alfajores */
@media (max-width: 768px) {
    .alfajor-caja-overlay {
        padding: 15px;
    }

    .alfajor-caja-overlay h3 {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .alfajor-caja-item:hover .alfajor-caja-overlay h3 {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .alfajor-caja-price span {
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .alfajor-caja-overlay h3 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .alfajor-caja-item:hover .alfajor-caja-overlay h3 {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .alfajor-caja-price span {
        font-size: 1rem;
        padding: 0.5rem 1.3rem;
    }
}

/* ========================================
   PÍLDORA DE PRECIO CARRUSEL INFINITO
   ======================================== */
.carousel-price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem 0;
}

.carousel-price-pill {
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.carousel-price-pill span {
    display: inline-block;
    background: linear-gradient(135deg, #F9B58C 0%, #F4A67C 100%);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(249, 181, 140, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.carousel-price-pill span:hover {
    background: linear-gradient(135deg, #F4A67C 0%, #F09964 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 181, 140, 0.6);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive - Píldora de precio carrusel */
@media (max-width: 768px) {
    .carousel-price-container {
        padding: 1.5rem 1rem 0;
    }

    .carousel-price-pill span {
        font-size: 1.2rem;
        padding: 0.7rem 2rem;
    }
}

@media (max-width: 480px) {
    .carousel-price-container {
        padding: 1rem 1rem 0;
    }

    .carousel-price-pill span {
        font-size: 1.1rem;
        padding: 0.6rem 1.8rem;
    }
}

/* ========================================
   GALERÍA BROWNIES - ESTILO VINTAGE
   ======================================== */

/* Wrapper del carrusel - MASONRY 3 FOTOS GRANDES */
.brownies-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    min-height: 700px;
}

/* Grupos de carrusel - MASONRY 3 FOTOS */
.brownies-carousel-group {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 0;
    position: absolute;
    width: calc(100% + 20px);
    margin: 0 -10px;
    height: 700px;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0.6s;
    z-index: 1;
}

.brownies-carousel-group.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0s;
    z-index: 2;
}

/* Items individuales - 3 FOTOS MUY GRANDES */
.brownies-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Primera foto - GRANDE IZQUIERDA (toda la altura) */
.brownies-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
}

/* Segunda foto - GRANDE ARRIBA DERECHA (más alta) */
.brownies-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Tercera foto - PEQUEÑA ABAJO DERECHA */
.brownies-gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* Ocultar el resto */
.brownies-gallery-item:nth-child(n+4) {
    display: none;
}

.brownies-gallery-item:hover {
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.brownies-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.brownies-gallery-item:hover .brownies-gallery-img {
    transform: scale(1.08);
}

/* Indicadores del carrusel brownies */
.brownies-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.brownies-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid white;
}

.brownies-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.brownies-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Responsive para galería brownies */
@media (max-width: 1024px) {
    .brownies-carousel-wrapper {
        min-height: 600px;
    }

    .brownies-carousel-group {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .brownies-carousel-wrapper {
        min-height: 450px;
        margin: 0;
    }

    /* MANTENER MOSAICO IGUAL QUE DESKTOP */
    .brownies-carousel-group {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        height: 450px;
        gap: 0;
    }

    /* Primera foto - GRANDE IZQUIERDA */
    .brownies-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Segunda foto - ARRIBA DERECHA */
    .brownies-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Tercera foto - ABAJO DERECHA */
    .brownies-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* Ocultar el resto */
    .brownies-gallery-item:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .brownies-carousel-wrapper {
        min-height: 380px;
    }

    /* MANTENER MOSAICO IGUAL QUE DESKTOP */
    .brownies-carousel-group {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        height: 380px;
        gap: 0;
    }

    /* Primera foto - GRANDE IZQUIERDA */
    .brownies-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Segunda foto - ARRIBA DERECHA */
    .brownies-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Tercera foto - ABAJO DERECHA */
    .brownies-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* Ocultar el resto */
    .brownies-gallery-item:nth-child(n+4) {
        display: none;
    }

    .brownies-carousel-dots {
        margin-top: 25px;
    }
}

/* ========================================
   CARRUSEL DE GALLETAS - ESTILO VINTAGE
   ======================================== */

.galletas-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    min-height: 700px;
}

/* Grupos de carrusel - MASONRY 3 FOTOS */
.galletas-carousel-group {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 0;
    position: absolute;
    width: calc(100% + 20px);
    margin: 0 -10px;
    height: 700px;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0.6s;
    z-index: 1;
}

.galletas-carousel-group.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: opacity 0.6s ease-in-out, visibility 0s linear 0s;
    z-index: 2;
}

/* Items individuales - 3 FOTOS MUY GRANDES */
.galletas-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Primera foto - GRANDE IZQUIERDA (toda la altura) */
.galletas-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
}

/* Segunda foto - GRANDE ARRIBA DERECHA (más alta) */
.galletas-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Tercera foto - PEQUEÑA ABAJO DERECHA */
.galletas-gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

/* Ocultar el resto */
.galletas-gallery-item:nth-child(n+4) {
    display: none;
}

.galletas-gallery-item:hover {
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.galletas-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.galletas-gallery-item:hover .galletas-gallery-img {
    transform: scale(1.08);
}

/* Indicadores del carrusel galletas */
.galletas-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.galletas-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid white;
}

.galletas-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.galletas-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Responsive para galería galletas */
@media (max-width: 1024px) {
    .galletas-carousel-wrapper {
        min-height: 600px;
    }

    .galletas-carousel-group {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .galletas-carousel-wrapper {
        min-height: 450px;
        margin: 0;
    }

    /* MANTENER MOSAICO IGUAL QUE DESKTOP */
    .galletas-carousel-group {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        height: 450px;
        gap: 0;
    }

    /* Primera foto - GRANDE IZQUIERDA */
    .galletas-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Segunda foto - ARRIBA DERECHA */
    .galletas-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Tercera foto - ABAJO DERECHA */
    .galletas-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* Ocultar el resto */
    .galletas-gallery-item:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .galletas-carousel-wrapper {
        min-height: 380px;
    }

    /* MANTENER MOSAICO IGUAL QUE DESKTOP */
    .galletas-carousel-group {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        height: 380px;
        gap: 0;
    }

    /* Primera foto - GRANDE IZQUIERDA */
    .galletas-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Segunda foto - ARRIBA DERECHA */
    .galletas-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Tercera foto - ABAJO DERECHA */
    .galletas-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    /* Ocultar el resto */
    .galletas-gallery-item:nth-child(n+4) {
        display: none;
    }

    .galletas-carousel-dots {
        margin-top: 25px;
    }
}

/* ========================================
   CAJAS DE ALFAJORES - ESTILO MOSAICO VINTAGE
   ======================================== */

/* Wrapper del mosaico - 3 FOTOS */
.cajas-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 3rem auto 0;
    overflow: visible;
    min-height: 700px;
}

/* Grupo de mosaico - 3 FOTOS */
.cajas-carousel-group {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 0;
    width: calc(100% + 20px);
    margin: 0 -10px;
    height: 700px;
}

/* Items individuales - 3 FOTOS */
.cajas-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Primera foto - GRANDE IZQUIERDA (toda la altura) */
.cajas-gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
}

/* Segunda foto - GRANDE ARRIBA DERECHA */
.cajas-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

/* Tercera foto - PEQUEÑA ABAJO DERECHA */
.cajas-gallery-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.cajas-gallery-item:hover {
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.cajas-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.cajas-gallery-item:hover .cajas-gallery-img {
    transform: scale(1.08);
}

/* Responsive para galería de cajas */
@media (max-width: 1024px) {
    .cajas-carousel-wrapper {
        min-height: 600px;
    }

    .cajas-carousel-group {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .cajas-carousel-wrapper {
        min-height: 450px;
        margin: 2rem auto 0;
    }

    /* MANTENER MOSAICO IGUAL QUE DESKTOP */
    .cajas-carousel-group {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        height: 450px;
        gap: 0;
    }

    /* Primera foto - GRANDE IZQUIERDA */
    .cajas-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Segunda foto - ARRIBA DERECHA */
    .cajas-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Tercera foto - ABAJO DERECHA */
    .cajas-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 480px) {
    .cajas-carousel-wrapper {
        min-height: 380px;
    }

    /* MANTENER MOSAICO IGUAL QUE DESKTOP */
    .cajas-carousel-group {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 2fr 1fr;
        height: 380px;
        gap: 0;
    }

    /* Primera foto - GRANDE IZQUIERDA */
    .cajas-gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    /* Segunda foto - ARRIBA DERECHA */
    .cajas-gallery-item:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Tercera foto - ABAJO DERECHA */
    .cajas-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
}