/* Start custom CSS for html, class: .elementor-element-e20b44a */{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --pink-50: #fdf2f8;
            --pink-100: #fce7f3;
            --pink-400: #f472b6;
            --pink-500: #ec4899;
            --pink-600: #db2777;
            --purple-50: #faf5ff;
            --purple-100: #f3e8ff;
            --purple-400: #c084fc;
            --purple-500: #a855f7;
            --purple-600: #9333ea;
            --purple-900: #581c87;
            --blue-50: #eff6ff;
            --blue-100: #dbeafe;
            --blue-400: #60a5fa;
            --blue-500: #3b82f6;
            --blue-600: #2563eb;
            --yellow-100: #fef3c7;
            --yellow-300: #fcd34d;
            --yellow-400: #fbbf24;
            --yellow-600: #d97706;
            --green-100: #dcfce7;
            --green-500: #22c55e;
            --green-600: #16a34a;
            --red-500: #ef4444;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
            background: white;
        }

        h1 { font-size: 2.0rem; font-weight: 700; line-height: 1.2; color: #9333ea;}
        h2 { font-size: 2rem; font-weight: 700; line-height: 1.3; }
        h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.4; }
        h4 { font-size: 1.125rem; font-weight: 600; line-height: 1.5; }

        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.25rem; }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: white;
            border-bottom: 1px solid var(--gray-200);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: contents;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .logo-icon {
            color: white;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text h1 {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--gray-600);
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--gray-700);
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
        }

        nav a:hover, nav a.active {
            color: var(--purple-600);
        }

        .cta-button {
            background: linear-gradient(to right, var(--pink-500), var(--purple-600));
            color: white;
            padding: 0.625rem 1.5rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-nav {
            display: none;
        }

        @media (max-width: 768px) {
            nav { display: none; }
            .cta-button.desktop { display: none; }
            .mobile-menu-btn { display: block; }
            
            .mobile-nav.active {
                display: block;
                padding: 1rem 0;
                border-top: 1px solid var(--gray-200);
            }

            .mobile-nav a {
                display: block;
                padding: 0.75rem 1rem;
                color: var(--gray-700);
                text-decoration: none;
            }

            .mobile-nav a.active {
                background: var(--purple-50);
                color: var(--purple-600);
            }

            .mobile-nav .cta-button {
                display: block;
                margin: 1rem;
                text-align: center;
            }
        }

        /* Sections */
        section {
            display: none;
        }

        section.active {
            display: block;
        }

        /* Hero */
        .hero {
            background: #fff5fd;
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
        }

        .hero-badge {
           display:inline-flex; align-items:center; gap:10px;
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.8));
  padding:10px 14px; border-radius:999px; box-shadow: 0 6px 18px rgba(120,85,150,0.06);
  margin-bottom:18px; width:fit-content;
        }

        .badge-icon{ 
    width:22px; 
    height:22px; 
    align-content: center;}

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin: 2rem 0;
        }

        @media (max-width: 640px) {
            .hero-buttons {
                flex-direction: column;
            }
        }

        .btn-primary {
            background: linear-gradient(to right, var(--pink-500), var(--purple-600));
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: white;
            color: var(--purple-600);
            padding: 1rem 2rem;
            border-radius: 9999px;
            border: 2px solid var(--purple-600);
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-secondary:hover {
            background: var(--purple-50);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 3rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--gray-600);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 1.5rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        /* Services Preview */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 4rem 0;
        }

        .package-card {
            background: white;
            border: 2px solid var(--gray-200);
            border-radius: 1.5rem;
            padding: 1.5rem;
            transition: all 0.3s;
            position: relative;
        }

        .package-card:hover {
            transform: scale(1.05);
            border-color: var(--purple-300);
        }

        .package-card.featured {
            background: linear-gradient(to bottom right, var(--purple-600), var(--pink-600));
            color: white;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .package-badge {
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            background: var(--yellow-400);
            color: var(--gray-900);
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .package-price {
            font-size: 2rem;
            font-weight: 700;
            margin: 1rem 0;
        }

        .package-details {
            font-size: 0.875rem;
            margin: 0.5rem 0;
        }

        .package-button {
            width: 100%;
            padding: 0.75rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            font-size: 0.875rem;
            margin-top: 1rem;
            transition: all 0.3s;
        }

        .package-card.featured .package-button {
            background: white;
            color: var(--purple-600);
        }

        .package-card:not(.featured) .package-button {
            background: linear-gradient(to right, var(--pink-500), var(--purple-600));
            color: white;
        }

        /* Calendar */
        .calendar-container {
            background: white;
            border-radius: 1.5rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            padding: 1.5rem;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .calendar-nav-btn {
            background: none;
            border: none;
            padding: 0.5rem;
            cursor: pointer;
            border-radius: 0.5rem;
            transition: background 0.3s;
        }

        .calendar-nav-btn:hover {
            background: var(--gray-100);
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
        }

        .calendar-day-name {
            text-align: center;
            font-size: 0.875rem;
            color: var(--gray-600);
            padding: 0.5rem;
        }

        .calendar-day {
            aspect-ratio: 1;
            border-radius: 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
            border: none;
            background: white;
            font-size: 0.875rem;
        }

        .calendar-day:not(.disabled):hover {
            background: var(--purple-50);
        }

        .calendar-day.selected {
            background: var(--purple-600);
            color: white;
        }

        .calendar-day.disabled {
            color: var(--gray-300);
            cursor: not-allowed;
        }

        .calendar-day.booked {
            color: var(--gray-400);
            cursor: not-allowed;
        }

        .calendar-indicator {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            position: absolute;
            bottom: 4px;
        }

        .calendar-indicator.available {
            background: var(--green-500);
        }

        .calendar-indicator.booked {
            background: var(--red-500);
        }

        .calendar-legend {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
            font-size: 0.875rem;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        /* Form */
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        label {
            color: var(--gray-700);
            font-weight: 500;
        }

        input, select, textarea {
            padding: 0.75rem 1rem;
            border: 1px solid var(--gray-300);
            border-radius: 0.5rem;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--purple-500);
            box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
        }

        textarea {
            resize: none;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            padding: 2rem 0;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: 1rem;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1rem;
            color: white;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Footer */
        footer {
            background: var(--gray-900);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: white;
        }

        .footer-section p, .footer-section a {
            color: var(--gray-400);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-section a:hover {
            color: var(--purple-400);
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .social-link {
            background: var(--gray-800);
            padding: 0.5rem;
            border-radius: 0.5rem;
            display: inline-flex;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: var(--purple-600);
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: 2rem;
            text-align: center;
            color: var(--gray-400);
            font-size: 0.875rem;
        }

        /* Utilities */
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 0.25rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-16 { margin-bottom: 4rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-8 { margin-top: 2rem; }
        .py-16 { padding: 4rem 0; }
        .py-20 { padding: 5rem 0; }

        .badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .badge-pink {
            background: var(--pink-100);
            color: var(--pink-600);
        }

        .badge-blue {
            background: var(--blue-100);
            color: var(--blue-600);
        }

        .badge-green {
            background: var(--green-100);
            color: var(--green-600);
        }

        .alert {
            padding: 1rem;
            border-radius: 1rem;
            margin: 1rem 0;
            text-align: center;
        }

        .alert-success {
            background: var(--green-100);
            border: 1px solid var(--green-500);
            color: var(--gray-900);
        }

        .alert-warning {
            background: var(--yellow-100);
            border: 1px solid var(--yellow-400);
            color: var(--gray-900);
        }

        /* Loading/Success States */
        .hidden { display: none !important; }
        
        .success-message {
            background: var(--green-100);
            border: 1px solid var(--green-500);
            border-radius: 1.5rem;
            padding: 3rem;
            text-align: center;
        }

        .success-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1rem;
            color: var(--green-600);
        }

        .botones {
            color: white;
            text-align: center;
            text-decoration: none;
        }

        .botones-variacion {
            color: rgb(205, 80, 149);
            text-align: center;
            text-decoration: none;
        }

        /* ================== INCLUYE ================== */

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.include-card {
    background: white;
    padding: 18px 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.importante-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

.importante-card {
    background: rgb(255, 230, 165);
    padding: 10px 5px;
    border-radius: 20px;
    border-color: #ffd24c;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.include-total {
    background: rgb(255, 240, 248);
    border-radius: 14px;
    padding: 18px 20px;
}

.section-title{
    text-align: center;
}

/* -------------------- STAND PERSONALIZADO -------------------- */

.stand-section {
    padding: 100px 0;
    background: #ffffff;
}

.stand-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* IMÁGENES */
.stand-images {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stand-img {
    width: 340px;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    object-fit: cover;
}

.img-top {
    margin-right: 40px; 
}

.img-bottom {
    margin-left: 40px;
}

/* TEXTO */
.stand-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stand-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .stand-content {
        flex-direction: column;
        text-align: center;
    }

    .stand-images {
        align-items: center;
    }

    .img-top,
    .img-bottom {
        margin: 0;
    }

    .stand-img {
        width: 85%;
        max-width: 380px;
    }
}

/* --- CONTENEDOR GENERAL --- */
.about-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

/* --- ETIQUETA SOBRE NOSOTROS --- */
.badge {
    display: inline-block;
    background: #e4d2ff;
    color: #7a00ff;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* --- INTRO --- */
.about-intro h2 {
    margin-top: 15px;
    font-size: 26px;
    font-weight: 700;
}

.about-intro p {
    max-width: 600px;
    margin: 10px auto 40px;
    color: #555;
}

/* --- CONTENIDO PRINCIPAL --- */
.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.about-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* --- IMAGEN --- */
.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    display: block;
    box-shadow: 0 3px 20px rgba(0,0,0,0.2);
}

/* --- VALORES --- */
.values-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    width: 230px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #7a00ff;
}

.value-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  color: black;
  width: 320px;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
}

.popup-check {
  font-size: 50px;
  margin-bottom: 10px;
}

.popup-content button {
  margin-top: 15px;
  padding: 10px 25px;
  border: none;
  background: #4CAF50;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.popup-content button:hover {
  background: #449d48;
}/* End custom CSS */