/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin: 0;
}

.logo span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 2rem;
}

/* Ocultar navegación en móvil por defecto */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
}
.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

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

.cart-icon {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
}

.cart-icon:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.cart-icon-symbol {
    font-size: 1.8rem;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    background: #e74c3c;
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    min-height: 56px; /* Tamaño mínimo para touch */
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Bloques LEGO flotantes */
.hero-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lego-block {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.lego-block.red {
    background: #e74c3c;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.lego-block.blue {
    background: #3498db;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.lego-block.yellow {
    background: #f1c40f;
    top: 30%;
    right: 25%;
    animation-delay: 2s;
}

.lego-block.green {
    background: #2ecc71;
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

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

/* Slider */
.slider-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px;
    text-align: center;
}

.slide-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Experiencias */
.experiences {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.experience-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.experience-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.experience-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Entradas */
.tickets {
    padding: 80px 0;
    background: #f8f9fa;
}

.tickets .container {
    padding: 0 1rem;
}
.tickets-note {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #e74c3c;
    font-weight: 600;
    padding: 0 1rem;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ticket-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

/* Mejorar botones en móvil */
.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ticket-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.ticket-price {
    margin-bottom: 1.5rem;
}

.ticket-price .price {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.ticket-price .taxes {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.ticket-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quantity-selector-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.quantity-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.quantity-controls:hover {
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.quantity-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
}

.quantity-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.quantity-minus {
    background: #e74c3c;
}

.quantity-minus:hover:not(:disabled) {
    background: #c0392b;
}

.quantity-plus {
    background: #27ae60;
}

.quantity-plus:hover:not(:disabled) {
    background: #219a52;
}

.quantity-input {
    width: 80px;
    height: 44px;
    border: none;
    background: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 8px;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    outline: none;
    user-select: none;
    cursor: default;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

/* Eliminar flechas de los inputs number en Chrome, Safari, Edge */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Eliminar flechas de los inputs number en Firefox */
.quantity-input[type=number] {
    -moz-appearance: textfield;
}

/* Controles de cantidad en el carrito lateral */
.cart-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2px;
    border: 1px solid #e9ecef;
}

.cart-quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-quantity-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.cart-quantity-btn:active {
    transform: scale(0.95);
}

.cart-quantity-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.cart-quantity-minus {
    background: #e74c3c;
}

.cart-quantity-minus:hover:not(:disabled) {
    background: #c0392b;
}

.cart-quantity-plus {
    background: #27ae60;
}

.cart-quantity-plus:hover:not(:disabled) {
    background: #219a52;
}

.cart-quantity-input {
    width: 50px;
    height: 32px;
    border: none;
    background: white;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 4px;
    border-radius: 6px;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.add-to-cart-btn {
    background: #27ae60;
    color: white;
    padding: 16px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 48px; /* Tamaño mínimo para touch */
    font-size: 1rem;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: #219a52;
    transform: translateY(-2px);
}

.add-to-cart-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.add-to-cart-btn:disabled:hover {
    background: #95a5a6;
    transform: none;
}

/* Ubicación */
.location {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.location-info p {
    margin-bottom: 1rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.location-link {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.location-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.location-map iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Carrito lateral */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90vw;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(0);
}

.cart-sidebar.active {
    right: 0;
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 10;
}

.cart-header h3 {
    font-family: 'Fredoka One', cursive;
    color: #2c3e50;
    margin: 0;
    font-size: 1.2rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #7f8c8d;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-content {
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 2rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.item-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.3;
}

.item-info p {
    margin: 0;
    color: #7f8c8d;
    font-size: 0.85rem;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.cart-total {
    text-align: center;
    padding: 2rem 0 1.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    border-top: 2px solid #e74c3c;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 56px;
    margin-bottom: 1rem;
}

.checkout-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Checkout */
.checkout {
    padding: 100px 0 60px;
    background: #f8f9fa;
}

.checkout .container {
    padding: 0 1rem;
}
.checkout-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* En desktop mostrar en 2 columnas */
@media (min-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr 1fr;
    }
}
.checkout-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
    order: 2;
}

@media (min-width: 1024px) {
    .checkout-summary {
        order: 0;
    }
}
.checkout-summary h3 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.order-total {
    padding: 1rem 0;
    font-size: 1.2rem;
    border-top: 2px solid #e74c3c;
    margin-top: 1rem;
}

.checkout-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    order: 1;
}

.checkout-form h3 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s;
    min-height: 48px;
}

.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: border-color 0.3s;
    min-height: 48px;
    background: white;
}
.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input.error {
    border-color: #e74c3c;
}

.installments-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

.installments-select option[data-interest-rate="0"] {
    color: #27ae60;
    font-weight: bold;
}

.installments-select option:not([data-interest-rate="0"]) {
    color: #e67e22;
}

.installments-select:focus {
    outline: none;
    border-color: #3498db;
}

.installments-info {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #27ae60;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.installments-info.with-interest {
    background: #fef9e7;
    border: 1px solid #f39c12;
    color: #e67e22;
    font-weight: bold;
}

.installments-info.no-interest {
    background: #eafaf1;
    border: 1px solid #27ae60;
    color: #27ae60;
    font-weight: 600;
}

.installments-select option {
    padding: 8px;
    font-size: 0.95rem;
}

.installments-select option[data-has-interest="false"] {
    background: #eafaf1;
    color: #27ae60;
    font-weight: bold;
}

.installments-select option[data-has-interest="true"] {
    background: #fef9e7;
    color: #e67e22;
    font-weight: normal;
}

.card-detected {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 1px solid #27ae60;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #27ae60;
    text-align: center;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.1);
}

.card-loading {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #f39c12;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #f39c12;
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.card-info-display {
    margin-top: 0.75rem;
}

.special-promo {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: bold;
    animation: specialGlow 2s ease-in-out infinite;
}

.special-promo.naranja {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: 2px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.special-promo.cordoba {
    background: linear-gradient(135deg, #2c5aa0, #3d6bb3);
    color: white;
    border: 2px solid #2c5aa0;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

@keyframes specialGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    }
}

.special-promo.cordoba {
    animation-name: specialGlowBlue;
}

@keyframes specialGlowBlue {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(44, 90, 160, 0.5);
    }
}

#installments-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Sección de Pago */
.payment-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

.payment-section h4 {
    font-family: 'Fredoka One', cursive;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.payment-total {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.total-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.total-final {
    border-top: 2px solid #e74c3c;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
}

.pay-button {
    width: 100%;
    background: #27ae60;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 60px;
}

.pay-button:hover {
    background: #219a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.pay-button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

.security-info {
    text-align: center;
    margin-top: 1rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Páginas de estado */
.success-page, .error-page, .pending-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.success-content, .error-content, .pending-content {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
}

.success-icon, .error-icon, .pending-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-icon {
    color: #27ae60;
}

.error-icon {
    color: #e74c3c;
}

.pending-icon {
    color: #f39c12;
}

.success-content h1, .error-content h1, .pending-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.order-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.order-details h3 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.success-message {
    color: #7f8c8d;
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.back-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    margin-top: 1rem;
}

.back-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero ajustes móvil */
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }
    
    .cart-sidebar.active {
        right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .tickets-grid {
        grid-template-columns: 1fr;
    }
    
    /* Formularios móvil */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkout-form {
        padding: 1.5rem;
    }
    
    .checkout-summary {
        padding: 1.5rem;
    }
    
    /* Slider móvil */
    .slider {
        height: 250px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    /* Ajustes para pantallas muy pequeñas */
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experiences, .tickets, .location {
        padding: 50px 0;
    }
    
    .experience-card, .ticket-card {
        padding: 1.25rem;
    }
    
    .checkout-form, .checkout-summary {
        padding: 1.25rem;
    }
    
    .form-group input, .form-group select {
        padding: 14px;
        font-size: 1rem;
    }
    
    .pay-button {
        padding: 18px;
        font-size: 1.2rem;
    }
    
    .cart-content {
        padding: 0.75rem;
    }
    
    .cart-item {
        padding: 1.25rem 0;
    }
    
    .item-info h4 {
        font-size: 0.9rem;
    }
    
    .remove-btn {
        width: 40px;
        height: 40px;
    }
    
    .cart-quantity-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .cart-quantity-input {
        width: 50px;
        height: 36px;
    }
    
    .slider {
        height: 200px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Mejoras de accesibilidad táctil */
@media (hover: none) and (pointer: coarse) {
    /* Dispositivos táctiles */
    .cart-icon {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-link {
        padding: 0.75rem;
    }
    
    .add-to-cart-btn, .checkout-btn, .pay-button {
        min-height: 48px;
    }
    
    .form-group input, .form-group select {
        min-height: 48px;
    }
    
    .quantity-form input {
        min-height: 44px;
    }
    
    .remove-btn, .cart-quantity-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .close-cart {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Aumentar área táctil de elementos pequeños */
    .cart-count {
        min-width: 24px;
        min-height: 24px;
    }
}

/* Optimizaciones para pantallas táctiles */
.touch-friendly {
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Mejorar legibilidad en móvil */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Evitar zoom en iOS */
        line-height: 1.5;
    }
    
    .form-group input, .form-group select {
        font-size: 16px; /* Evitar zoom en iOS */
    }
    
    /* Espaciado mejorado para dedos */
    .ticket-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quantity-selector {
        gap: 1.5rem;
        margin: 1rem 0;
    }
    
    .quantity-selector input {
        width: 80px;
        padding: 0.75rem;
        font-size: 1.1rem;
    }
    
    .cart-quantity-controls {
        gap: 0.75rem;
    }
    
    .cart-quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .cart-quantity-input {
        width: 60px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Overlay para el carrito en móvil */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

@media (max-width: 480px) {
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slider {
        height: 250px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .experience-card {
        padding: 1.5rem;
    }
    
    .ticket-card {
        font-size: 1.05rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    /* Secciones */
    .experiences, .tickets, .location {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    /* Experiencias */
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-card {
        padding: 1.5rem;
    }
    
    .experience-icon {
        width: 70px;
        height: 70px;
    }
    
    /* Entradas */
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ticket-card {
        padding: 1.5rem;
    }
    
    .ticket-price .price {
        font-size: 1.8rem;
    }
    
    /* Ubicación */
    .checkout-form {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .location-info {
        text-align: center;
    }
    
    /* Carrito móvil */
    .cart-sidebar {
        width: 100vw;
    }
}
    .cart-sidebar.active {
        right: 0;