/* Boutique Pastry Design */
:root {
    --bg-color: #fffcf9;
    --text-primary: #3d2b1f;
    --text-secondary: #7a6a5e;
    --accent-color: #d4a373;
    --white: #ffffff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 252, 249, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 10000;
    transition: background 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 85px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.9;
    transition: color 0.3s, opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animación del botón (X) */
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(-45deg, #fffcf9, #f7ebe1, #fffcf9, #fdf2e9);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(212, 163, 115, 0.15);
    border-radius: 50%;
    pointer-events: none;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }
    20% { opacity: 0.6; }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1.2;
    text-align: left;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title span {
    color: var(--accent-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.hero-cta {
    margin-bottom: 60px;
}

.btn-link {
    color: var(--accent-color);
    font-size: 19px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    text-decoration: underline;
}

.arrow {
    font-size: 24px;
    line-height: 1;
}

.hero-image-container {
    flex: 1;
    height: 550px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(212, 163, 115, 0.2);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

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

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

/* Section Text */
.section-text-center {
    padding: 150px 0;
    text-align: center;
    background-color: var(--bg-color);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* History Section */
.history-section {
    background-color: #fdf6f0; /* Tono suave para diferenciar */
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
}

.history-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.history-quote {
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: italic;
    color: var(--accent-color);
    margin: 40px 0;
    line-height: 1.3;
}

/* Showcase Section Removed */

/* Gallery Masonry */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-color);
    color: white;
}

.masonry-item.hide {
    display: none;
}

.masonry-grid {
    display: block;
    column-width: 300px;
    column-gap: 20px;
    margin-top: 50px;
}

.masonry-item {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    break-inside: avoid;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.masonry-item:hover {
    transform: scale(1.03) rotate(1deg);
}

/* Botón Ver Más (Oculto en Desktop) */
.view-more-container {
    display: none;
}

#view-more-btn {
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
}

/* Location Section (Feria) */
.location-section {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.location-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    height: 400px;
}

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

.location-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-title {
    font-family: var(--font-serif);
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--accent-color);
    line-height: 1.2;
}

.location-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.stand-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 163, 115, 0.3);
    backdrop-filter: blur(5px);
}

.stand-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.stand-number {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

.location-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

.logo-gto {
    height: 130px;
    width: auto;
    object-fit: contain;
}

.logo-feria {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-separator {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--white);
    padding: 80px 0 40px;
    text-align: center;
    border-top: none;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-desc {
    font-size: 21px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 16px 36px;
    border-radius: 980px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #bc8a5f;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 163, 115, 0.4);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 5px;
}

.footer-col a:hover {
    color: var(--accent-color);
    transition: color 0.3s;
}

.footer-logo-gto {
    width: 50px;
    height: auto;
    margin-top: 5px;
    opacity: 0.9;
}

.copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #86868b;
}

.copyright a:hover {
    color: var(--accent-color);
}

/* Social Icons & Construction Dropdown */
.social-wrapper {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: center;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Construction Modal */
.construction-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 20001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.construction-modal.show {
    opacity: 1;
    visibility: visible;
}

.construction-content {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 90%;
    width: 320px;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.construction-modal.show .construction-content {
    transform: scale(1);
}

.construction-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

.construction-content p {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-serif);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero { padding-top: 100px; text-align: center; }
    .hero-grid { flex-direction: column; gap: 40px; }
    .hero-content { text-align: center; }
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 20px; }
    .hero-image-container { height: 400px; width: 100%; transform: rotate(0); }
    .showcase-item { flex-direction: column; padding: 50px 0; }
    .showcase-item.reverse { flex-direction: column; }
    .showcase-text { padding: 0 20px; text-align: center; margin-bottom: 30px; }

    .mobile-menu-btn {
        display: flex;
        width: auto;
        height: auto;
        background: transparent;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%; /* Oculto a la derecha */
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-color);
        padding: 100px 40px;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
    }

    .nav-links.active {
        right: 0; /* Se desliza hacia adentro */
    }
}

/* Carousel Styles */
.carousel-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Space for buttons */
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    flex: 0 0 300px; /* Fixed width cards */
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.carousel-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.slide-image {
    height: 350px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Zoom effect on hover */
.carousel-slide:hover .slide-image img {
    transform: scale(1.15);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-slide:hover .slide-caption {
    transform: translateY(0);
}

.slide-caption h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.slide-caption p {
    font-size: 14px;
    opacity: 0.9;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 260px;
    }
    .slide-image {
        height: 300px;
    }
    .carousel-container {
        padding: 0 10px;
    }
    .carousel-btn {
        display: none; /* Hide buttons on mobile, use swipe */
    }

    /* Límite de 10 imágenes solo en móvil y solo en la sección 'Todos' */
    .masonry-grid[data-current-filter="all"] .masonry-item:nth-child(n+11) {
        display: none;
    }

    /* Mostrar botón 'Ver más' solo si hay filtro 'all' y no está expandido */
    .masonry-grid[data-current-filter="all"]:not(.expanded) + .view-more-container {
        display: block;
        text-align: center;
        margin-top: 30px;
    }

    /* Mostrar items ocultos cuando está expandido */
    .masonry-grid[data-current-filter="all"].expanded .masonry-item:nth-child(n+11) {
        display: inline-block;
    }
}

/* Estilos del Modal de Zoom */
.modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: default;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 100;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-color);
}

/* WhatsApp Wizard Styles */
.wa-wizard {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.wa-step {
    display: none;
    animation: fadeInStep 0.4s ease-out;
}

.wa-step.active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-family: var(--font-serif);
}

.wa-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.wa-opt {
    padding: 12px 24px;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wa-opt:hover {
    background: var(--accent-color);
    color: white;
}

.wa-reset {
    display: block;
    margin: 20px auto 0;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.7;
}

.wa-reset:hover {
    opacity: 1;
}

/* New Contact Wrapper Styles */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.direct-contact {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.direct-contact h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.call-btn {
    background: var(--white);
    color: var(--text-primary);
}

.call-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.msg-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.msg-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.hours {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

/* Map Section in Footer */
.map-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.map-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Map Wrapper */
.map-wrapper {
    margin-top: 0;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 2px solid var(--accent-color);
    margin-bottom: 60px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Botón Flotante de Ubicación */
.location-float {
    position: fixed;
    width: 52px;
    height: 52px;
    bottom: 107px; /* 40px (wa-bottom) + 52px (wa-height) + 15px (gap) */
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 0.5px solid rgba(212, 163, 115, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.location-float:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.12);
    border-color: var(--accent-color);
}

.location-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-color);
    transition: transform 0.3s ease;
}

.location-float:hover .location-icon {
    transform: scale(1.1);
}

.location-tooltip {
    position: absolute;
    right: 65px;
    background: var(--white);
    color: var(--text-primary);
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    width: 300px;
    white-space: normal;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    border: 1px solid rgba(212, 163, 115, 0.2);
    text-align: center;
    bottom: 0;
}

.location-float:hover .location-tooltip,
.location-float.active .location-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.location-tooltip h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--accent-color);
}

.location-tooltip p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.tooltip-map {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Botón Flotante Minimalista */
.whatsapp-float {
    position: fixed;
    width: 52px;
    height: 52px;
    bottom: 40px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 0.5px solid rgba(212, 163, 115, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.12);
    border-color: var(--accent-color);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
    fill: var(--accent-color);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

.wa-tooltip {
    position: absolute;
    right: 65px;
    background: var(--white);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Sutil pulso de atención */
@keyframes wa-soft-pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 163, 115, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 163, 115, 0); }
}

@media (max-width: 768px) {
    .location-float {
        width: 50px;
        height: 50px;
        bottom: 85px; /* 20px (wa-bottom) + 50px (wa-height) + 15px (gap) */
        right: 20px;
    }

    .location-tooltip {
        right: 60px;
        bottom: 0;
        width: 260px;
        padding: 12px;
        transform: translateX(20px);
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
    .wa-tooltip {
        display: none; /* Ocultar tooltip en móvil para evitar ruido visual */
    }

    /* Location Responsive */
    .location-grid {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    .location-image {
        height: 300px;
        width: 100%;
    }
    .location-logos {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .logo-separator {
        width: 100px;
        height: 1px;
    }
}

/* Welcome Modal (Feria) */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 30000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.welcome-modal.show {
    opacity: 1;
    visibility: visible;
}

.welcome-content {
    background: var(--text-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid var(--accent-color);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.welcome-modal.show .welcome-content {
    transform: translateY(0);
}

.close-welcome {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-welcome:hover {
    color: var(--accent-color);
}

.welcome-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.welcome-stand-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.welcome-content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.welcome-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.welcome-stand-box {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    border: 1px dashed rgba(212, 163, 115, 0.5);
}

.welcome-close-btn {
    width: 100%;
    cursor: pointer;
}
