    /* Variables y Reset Mínimo */
:root {
    --color-pink: #FF6B9D;
    --color-purple: #667eea;
    --color-orange: #FFA726;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Grandstander', cursive;
    font-weight: 700;
}

/* Botón CTA personalizado */
.btn-cta-comeplay {
    background: #026AA7 !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease;
}

.btn-cta-comeplay:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Section Headers */
.h-sub {
    color: var(--color-pink);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    border-left: 4px solid var(--color-pink);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Temáticas Cards */
.tematica-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.tematica-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--card-color-1), var(--card-color-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.tematica-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.tematica-card-pink { --card-color-1: #FF6B9D; --card-color-2: #FF4081; }
.tematica-card-purple { --card-color-1: #667eea; --card-color-2: #764ba2; }
.tematica-card-orange { --card-color-1: #FFA726; --card-color-2: #FF7043; }

.tematica-image {
    height: 220px;
    position: relative;
}

.tematica-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.tematica-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    margin: -50px auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.tematica-icon-pink { background: linear-gradient(135deg, #FF6B9D, #FF4081); }
.tematica-icon-purple { background: linear-gradient(135deg, #667eea, #764ba2); }
.tematica-icon-orange { background: linear-gradient(135deg, #FFA726, #FF7043); }

.tematica-features {
    list-style: none;
    padding: 0;
}

.tematica-features li {
    padding: 8px 0;
    color: #666;
    font-size: 0.95rem;
}

.tematica-features i {
    color: var(--feature-color);
    margin-right: 10px;
}

/* Beneficios */
.beneficio-card {
    background: white;
    border-radius: 12px;
    border-top: 4px solid var(--color-pink);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Paquetes */
.paquete-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.paquete-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.paquete-popular {
    border: 3px solid var(--color-pink);
    transform: scale(1.05);
}

.paquete-badge {
    padding: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.badge-basico { background: linear-gradient(135deg, #667eea, #764ba2); }
.badge-popular { background: linear-gradient(135deg, #FF6B9D, #FF4081); }
.badge-premium { background: linear-gradient(135deg, #FFA726, #FF7043); }

.precio-amount {
    font-size: 3rem;
    font-weight: 700;
}

.precio-basico { color: var(--color-purple); }
.precio-popular { color: var(--color-pink); }
.precio-premium { color: var(--color-orange); }

.paquete-features {
    list-style: none;
    padding: 0;
}

.paquete-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #666;
}

.paquete-features li:last-child {
    border-bottom: none;
}

.color-basico { color: var(--color-purple); }
.color-popular { color: var(--color-pink); }
.color-premium { color: var(--color-orange); }

/* FAQ */
.faq-item {
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--color-pink);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.btn-white {
    background: white;
    color: var(--color-pink);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: var(--color-pink);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--color-pink);
    transform: translateY(-4px);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .paquete-popular { transform: scale(1); }
}

@media (max-width: 767px) {
    .hero-section { padding: 60px 0 40px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-description { font-size: 1rem; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.6rem; }
    .tematica-icon { width: 70px; height: 70px; font-size: 1.8rem; }
    .precio-amount { font-size: 2.2rem; }
}
/*Correccion botones CTA Hover*/
.btn-one:hover
{
    background-color: #667eea !important;
    border-color: #667eea !important;
    color: white !important;
}

.btn-three:hover
{
    background-color: #FFA726 !important;
    border-color: #FFA726 !important;
    color: white !important;
}

/* Optimizaciones de responsividad para tarjetas de paquetes */
@media (max-width: 991px) {
    #preciospequenas .row[style*="display: flex"] {
        margin: -15px !important;
    }
}

@media (max-width: 768px) {
    #preciospequenas .row[style*="display: flex"] {
        flex-direction: column;
        align-items: center;
    }
    
    #preciospequenas .col-lg-4,
    #preciospequenas .col-md-4 {
        max-width: 100%;
        flex-basis: 100%;
        padding: 10px !important;
    }
    
    #preciospequenas .single-event {
        transform: none !important;
        margin-bottom: 15px;
    }
    
    #preciospequenas h2 {
        font-size: 1.3rem;
    }
    
    #preciospequenas p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    #preciospequenas .section-header h2 {
        font-size: 1.3rem;
    }
    
    #preciospequenas .event-image {
        padding: 15px !important;
    }
    
    #preciospequenas .event-image img {
        width: 60px !important;
        height: 60px !important;
    }
    
    #preciospequenas .event-description {
        padding: 15px !important;
    }
    
    #preciospequenas .section-header p {
        font-size: 0.95rem;
    }
    
    /* Precios más legibles en móvil */
    #preciospequenas h2.text-primary {
        font-size: 1.1rem !important;
    }
    
    #preciospequenas .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 10px 12px !important;
    }
    
    #preciospequenas ul li {
        font-size: 0.85rem !important;
    }
}

/* Hover effects para tarjetas */
#preciospequenas .single-event {
    transition: all 0.3s ease;
}

#preciospequenas .single-event:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.15) !important;
    transform: translateY(-5px);
}

/* Optimizar botones en móvil */
@media (max-width: 576px) {
    #preciospequenas .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 12px 15px !important;
    }
}

/* Garantizar que las columnas se vean bien */
@media (min-width: 992px) {
    #preciospequenas .row[style*="display: flex"] {
        display: flex !important;
        align-items: stretch !important;
    }
}

/* Sección de temáticas */
.tematica-section {
    
}

/* Estilos base para cards de temáticas */
.tematica-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tematica-card:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.tematica-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tematica-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Iconos de temáticas */
.tematica-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

/* Variantes de color - Picnic (Pink) */
.tematica-card-pink {
    border-left: 4px solid #FF6B9D;
}

.tematica-icon-pink {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF4081 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.25);
}

.tematica-title-pink {
    color: #FF6B9D;
    font-weight: 700;
    font-size: 1.15rem;
}

/* Variantes de color - Spa (Purple) */
.tematica-card-purple {
    border-left: 4px solid #667eea;
}

.tematica-icon-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.25);
}

.tematica-title-purple {
    color: #667eea;
    font-weight: 700;
    font-size: 1.15rem;
}

/* Variantes de color - Princesas (Orange) */
.tematica-card-orange {
    border-left: 4px solid #FFA726;
}

.tematica-icon-orange {
    background: linear-gradient(135deg, #FFA726 0%, #FF7043 100%);
    box-shadow: 0 8px 20px rgba(255, 167, 38, 0.25);
}

.tematica-title-orange {
    color: #FFA726;
    font-weight: 700;
    font-size: 1.15rem;
}

/* Desktop - 3 columnas */
@media (min-width: 992px) {
    .tematica-card:hover {
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15) !important;
        transform: translateY(-8px) !important;
    }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
    .tematica-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .tematica-card:hover {
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
        transform: translateY(-6px) !important;
    }
    
    .tematica-card .card-title {
        font-size: 1.1rem;
    }
    
    .tematica-card .card-text {
        font-size: 0.9rem;
    }
}

/* Tablet pequeña */
@media (max-width: 767px) and (min-width: 576px) {
    .tematica-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .tematica-card:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
        transform: translateY(-4px) !important;
    }
    
    .tematica-card .card-body {
        padding: 1.5rem !important;
    }
    
    .tematica-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
    }
    
    .tematica-card .card-title {
        font-size: 1.05rem;
    }
    
    .tematica-card .card-text {
        font-size: 0.9rem;
    }
}

/* Móvil */
@media (max-width: 575px) {
    .tematica-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        margin-bottom: 1rem;
    }
    
    .tematica-card:active {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1) !important;
        transform: translateY(-2px) !important;
    }
    
    .tematica-card .card-body {
        padding: 1.25rem !important;
    }
    
    .tematica-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .tematica-card .card-title {
        font-size: 1rem;
        margin-bottom: 0.75rem !important;
    }
    
    .tematica-card .card-text {
        font-size: 0.88rem;
        line-height: 1.5;
    }
    
    .btn-primary.btn-lg {
        width: 100% !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

/* Estilos para sección de contacto */
.contact-section {
    background: #f9f9f9;
    padding: 60px;
}

.contact-header h2 {
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.contact-item {
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item a {
    transition: color 0.3s ease;
}

.contact-item a:hover {
    text-decoration: underline !important;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-wrapper .bg-white {
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

.contact-form-wrapper .bg-white:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

/* HubSpot Form Customization */
.hs-form label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.hs-form input[type="text"],
.hs-form input[type="email"],
.hs-form input[type="tel"],
.hs-form textarea {
    border: 1px solid #ddd;
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hs-form input[type="text"]:focus,
.hs-form input[type="email"]:focus,
.hs-form input[type="tel"]:focus,
.hs-form textarea:focus {
    border-color: #FF6B9D;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.15);
}

.hs-form button {
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hs-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive Contact Section */
@media (max-width: 991px) {
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 575px) {
    .contact-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-header p {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper .bg-white {
        padding: 1.5rem !important;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
}

/* Overlay oscuro para sección de título */
.page-name-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-name-title {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.page-name-subtitle {
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.page-name-meta {
    font-size: 0.95rem;
    margin-top: 10px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
}
    
.contact-item {
    margin-bottom: 1.5rem;
}