
:root {
    --color-morado: #8c52ff;
    --color-azul-aqua: #0cc0df;
    --color-rojo-brillante: #ff3131;
    --color-azul-cobalto: #004aad;
    --color-naranja: #ffb100;
}

body {
    margin: 0;
    font-family: 'Fredoka One', cursive;
    overflow-x: hidden;
}


.main-nav a.active {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
}


.paquetes-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-morado) 0%, var(--color-azul-cobalto) 50%, var(--color-azul-aqua) 100%);
    overflow: hidden;
}

.hero-content-paquetes {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-titulo {
    font-size: 4em;
    margin: 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: bounce-in 1s ease;
}

.hero-subtitulo {
    font-size: 1.5em;
    margin-top: 20px;
    opacity: 0.95;
    font-family: Arial, sans-serif;
    animation: fade-in 1.5s ease;
}

@keyframes bounce-in {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.95; transform: translateY(0); }
}


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


.paquetes-detallados {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.paquete-detalle {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.paquete-detalle:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}


.paquete-destacado-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-naranja), var(--color-rojo-brillante));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 177, 0, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 177, 0, 0.5); }
    50% { box-shadow: 0 5px 30px rgba(255, 177, 0, 0.8); transform: translateX(-50%) scale(1.05); }
}


.paquete-imagen {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.paquete-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.paquete-detalle:hover .paquete-imagen img {
    transform: scale(1.1);
}

.paquete-badge-img {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-morado);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.premium-badge {
    background: linear-gradient(135deg, var(--color-naranja), var(--color-rojo-brillante));
    color: white;
}

.vip-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}


.paquete-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.paquete-header-detalle {
    text-align: center;
    margin-bottom: 30px;
}

.paquete-icono-grande {
    font-size: 4em;
    display: block;
    margin-bottom: 15px;
    animation: rotate-icon 3s ease-in-out infinite;
}

@keyframes rotate-icon {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.paquete-header-detalle h2 {
    font-size: 2.5em;
    color: var(--color-morado);
    margin: 0 0 15px 0;
}

.paquete-precio-detalle {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.paquete-precio-detalle .desde {
    font-size: 1em;
    color: #666;
    font-family: Arial, sans-serif;
}

.paquete-precio-detalle .precio {
    font-size: 2.5em;
    color: var(--color-rojo-brillante);
    font-weight: bold;
}


.paquete-descripcion {
    margin-bottom: 30px;
}

.paquete-descripcion p {
    font-family: Arial, sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    text-align: center;
}


.paquete-incluye-detalle h3 {
    font-size: 1.8em;
    color: var(--color-azul-cobalto);
    margin-bottom: 25px;
    text-align: center;
}

.incluye-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.incluye-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 4px solid var(--color-morado);
    transition: all 0.3s ease;
}

.incluye-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(140, 82, 255, 0.2);
}

.check-icon {
    font-size: 1.5em;
    color: #4caf50;
    font-weight: bold;
    flex-shrink: 0;
}

.item-texto {
    flex: 1;
}

.item-texto strong {
    display: block;
    color: var(--color-morado);
    margin-bottom: 5px;
    font-size: 1.1em;
}

.item-texto p {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 0.95em;
    color: #666;
    line-height: 1.4;
}


.btn-seleccionar {
    width: 100%;
    padding: 20px;
    font-size: 1.4em;
    font-weight: bold;
    font-family: 'Fredoka One', cursive;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.basico-btn {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
}

.premium-btn {
    background: linear-gradient(135deg, var(--color-naranja), var(--color-rojo-brillante));
    color: white;
}

.vip-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.btn-seleccionar:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-seleccionar:active {
    transform: translateY(0) scale(0.98);
}


.cta-reservar {
    background: linear-gradient(135deg, var(--color-morado) 0%, var(--color-azul-cobalto) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5em;
    color: white;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.5em;
    color: white;
    opacity: 0.95;
    font-family: Arial, sans-serif;
    margin-bottom: 40px;
}

.btn-cta-grande {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    font-size: 1.8em;
    font-weight: bold;
    font-family: 'Fredoka One', cursive;
    background: linear-gradient(135deg, var(--color-naranja), var(--color-rojo-brillante));
    color: white;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-cta-grande:hover .btn-shine {
    left: 100%;
}

.btn-cta-grande:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.btn-icon {
    font-size: 1.2em;
}


.modal-reserva {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5);
    overflow-y: auto;
}

.modal-reserva.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-reserva-content {
    background: white;
    border-radius: 30px;
    max-width: 1200px;
    width: 90%;
    margin: 50px auto;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    animation: modal-slide-up 0.5s ease;
}

@keyframes modal-slide-up {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal-reserva {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3em;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-modal-reserva:hover {
    color: var(--color-rojo-brillante);
    transform: rotate(90deg);
}

.modal-titulo {
    font-size: 2.5em;
    color: var(--color-morado);
    text-align: center;
    margin: 0 0 10px 0;
}

.modal-subtitulo {
    text-align: center;
    font-family: Arial, sans-serif;
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.modal-reserva-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


.modal-calendario {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 20px;
}


.modal-formulario {
    padding: 20px;
}

.modal-formulario .form-group {
    margin-bottom: 20px;
}

.modal-formulario label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--color-morado);
}

.modal-formulario input,
.modal-formulario select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.modal-formulario input:focus,
.modal-formulario select:focus {
    outline: none;
    border-color: var(--color-morado);
    box-shadow: 0 0 0 3px rgba(140, 82, 255, 0.1);
}

.btn-enviar-reserva {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--color-morado), var(--color-azul-cobalto));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3em;
    font-weight: bold;
    font-family: 'Fredoka One', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(140, 82, 255, 0.4);
}

.btn-enviar-reserva:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(140, 82, 255, 0.6);
}




.paquetes-page .main-header {
    background: linear-gradient(135deg, var(--color-naranja) 0%, var(--color-rojo-brillante) 100%);
    position: sticky;
    top: 0;
    z-index: 100;
}


@media (min-width: 769px) {
    .paquetes-page .logo img {
        height: 60px;
        width: auto;
        transition: transform 0.3s ease;
    }

    .paquetes-page .logo img:hover {
        transform: scale(1.05);
    }
}


.paquetes-page .main-nav a {
    color: white;
}


.paquetes-footer {
    background: var(--color-rojo-brillante);
    color: white;
    padding: 40px 0 30px 0;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}


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

.footer-message p {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2em;
    margin: 0;
    color: white;
}


.paquetes-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.paquetes-footer .red-social {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.paquetes-footer .red-social svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.paquetes-footer .red-social:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.paquetes-footer .red-social:nth-child(1):hover {
    background: #1877f2;
}

.paquetes-footer .red-social:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.paquetes-footer .red-social:nth-child(3):hover {
    background: #000;
}

.paquetes-footer .red-social:nth-child(4):hover {
    background: #25d366;
}

.paquetes-footer .copyright-section {
    text-align: center;
}

.paquetes-footer .copyright-section p {
    font-family: Arial, sans-serif;
    font-size: 0.95em;
    margin: 0;
    color: white;
}


.paquetes-footer .company-logo {
    text-align: center;
    margin-top: 10px;
}

.paquetes-footer .company-logo img {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
}


@media (max-width: 1024px) {
    .paquete-detalle {
        grid-template-columns: 1fr;
    }

    .paquete-imagen {
        min-height: 400px;
    }

    .paquete-info {
        padding: 40px 30px;
    }

    .modal-reserva-contenido {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-titulo {
        font-size: 2.5em;
    }

    .hero-subtitulo {
        font-size: 1.2em;
    }

    .paquete-header-detalle h2 {
        font-size: 2em;
    }

    .paquete-info {
        padding: 30px 20px;
    }

    .paquete-imagen {
        min-height: 300px;
    }

    .paquete-icono-grande {
        font-size: 3em;
    }

    .paquete-precio-detalle .precio {
        font-size: 2em;
    }

    .incluye-grid {
        gap: 15px;
    }

    .cta-content h2 {
        font-size: 2.5em;
    }

    .cta-content p {
        font-size: 1.2em;
    }

    .btn-cta-grande {
        font-size: 1.4em;
        padding: 20px 40px;
    }

    .modal-reserva-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-titulo {
        font-size: 2em;
    }

    .paquete-destacado-badge {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-titulo {
        font-size: 2em;
        padding: 0 10px;
    }

    .hero-subtitulo {
        font-size: 1em;
        padding: 0 15px;
    }

    .paquete-info {
        padding: 20px 15px;
    }

    .paquete-imagen {
        min-height: 250px;
    }

    .paquete-header-detalle h2 {
        font-size: 1.6em;
    }

    .paquete-icono-grande {
        font-size: 2.5em;
    }

    .paquete-precio-detalle .precio {
        font-size: 1.8em;
    }

    .paquete-descripcion p {
        font-size: 1em;
    }

    .paquete-incluye-detalle h3 {
        font-size: 1.5em;
    }

    .item-texto strong {
        font-size: 1em;
    }

    .item-texto p {
        font-size: 0.9em;
    }

    .btn-seleccionar {
        font-size: 1.2em;
        padding: 18px;
    }

    .cta-content h2 {
        font-size: 2em;
        padding: 0 10px;
    }

    .cta-content p {
        font-size: 1em;
        padding: 0 15px;
    }

    .btn-cta-grande {
        font-size: 1.2em;
        padding: 18px 30px;
        gap: 10px;
    }

    .btn-icon {
        font-size: 1em;
    }

    .modal-reserva-content {
        padding: 20px 15px;
        margin: 20px auto;
    }

    .modal-titulo {
        font-size: 1.8em;
    }

    .modal-subtitulo {
        font-size: 1em;
    }

    .paquete-destacado-badge {
        font-size: 0.8em;
        padding: 8px 15px;
        top: 10px;
    }

    .paquete-badge-img {
        font-size: 0.85em;
        padding: 8px 15px;
    }

    .close-modal-reserva {
        font-size: 2.5em;
        right: 15px;
    }
}
