/* Variables CSS */
:root {
    --azul-profundo: #122c91;
    --azul-medio: #2a6fdb;
    --aqua: #48d6d2;
    --cian-claro: #81e9e6;
    --amarillo-suave: #fefcbf;
    --blanco: #ffffff;
    --negro: #000000;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-medio) 100%);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--aqua), var(--cian-claro));
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.floating-bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.floating-bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: -15s;
}

.floating-bubble:nth-child(5) {
    width: 140px;
    height: 140px;
    bottom: 10%;
    right: 5%;
    animation-delay: -7s;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2348d6d2' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,197.3C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-15px) rotate(240deg); }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 44, 145, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    z-index: 1060;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

/* Navigation */
.custom-navbar {
    background: rgba(18, 44, 145, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.custom-navbar.scrolled {
    background: rgba(18, 44, 145, 0.95) !important;
    padding: 0.5rem 0;
}

.logo-text {
    font-family: 'Della Respira', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--aqua), var(--amarillo-suave));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--amarillo-suave) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--amarillo-suave);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-medio) 100%);
    overflow: hidden;
}

.hero-title {
    font-family: 'Della Respira', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons .btn {
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--aqua), var(--cian-claro));
    border: none;
    color: var(--azul-profundo);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--cian-claro), var(--amarillo-suave));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(72, 214, 210, 0.3);
}

.btn-outline-light:hover {
    background: var(--amarillo-suave);
    color: var(--azul-profundo);
    border-color: var(--amarillo-suave);
    transform: translateY(-2px);
}

.hero-image img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--amarillo-suave);
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--amarillo-suave);
    border-bottom: 2px solid var(--amarillo-suave);
    transform: rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Typed Text Effect */
.typed-text {
    color: var(--amarillo-suave);
}

.cursor {
    display: inline-block;
    background-color: var(--amarillo-suave);
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { background-color: var(--amarillo-suave); }
    49% { background-color: var(--amarillo-suave); }
    50% { background-color: transparent; }
    99% { background-color: transparent; }
    100% { background-color: var(--amarillo-suave); }
}

/* Parallax Gallery */
.parallax-gallery {
    background: var(--blanco);
    padding: 0;
}

.parallax-item {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.parallax-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    position: relative;
    transition: transform 0.3s ease;
}

.parallax-image:hover {
    transform: scale(1.1);
}

.parallax-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(18, 44, 145, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.parallax-item:hover .parallax-overlay {
    transform: translateY(0);
}

.parallax-overlay h3 {
    font-family: 'Della Respira', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Experience Comparator */
.experience-comparator {
    background: var(--blanco);
}

.section-title {
    font-family: 'Della Respira', serif;
    font-size: 2.5rem;
    color: var(--azul-profundo);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--azul-medio);
    margin-bottom: 2rem;
}

.experience-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(18, 44, 145, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(18, 44, 145, 0.2);
}

.experience-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-content {
    padding: 2rem;
}

.experience-content h3 {
    font-family: 'Della Respira', serif;
    font-size: 1.5rem;
    color: var(--azul-profundo);
    margin-bottom: 0.5rem;
}

.location {
    color: var(--aqua);
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.experience-features li {
    padding: 0.3rem 0;
    color: var(--azul-medio);
    position: relative;
    padding-left: 1.5rem;
}

.experience-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--aqua);
    font-weight: bold;
}

.price-tag {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(45deg, var(--aqua), var(--cian-claro));
    border-radius: 15px;
    color: white;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.price-detail {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Interactive Map */
.interactive-map {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-medio) 100%);
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.interactive-map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 680px;
    object-fit: cover;
}

.map-pin {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mallorca-pin {
    top: 60%;
    right: 20%;
}

.barcelona-pin {
    top: 25%;
    right: 15%;
}

.sevilla-pin {
    bottom: 25%;
    left: 20%;
}

.pin-dot {
    width: 20px;
    height: 20px;
    background: var(--aqua);
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.pin-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--azul-profundo);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-pin:hover .pin-label {
    opacity: 1;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(72, 214, 210, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(72, 214, 210, 0); }
    100% { box-shadow: 0 0 0 0 rgba(72, 214, 210, 0); }
}

/* Secret Destinations */
.secret-destinations {
    background: var(--blanco);
}

.secret-list {
    margin-top: 2rem;
}

.secret-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(18, 44, 145, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.secret-item.reveal {
    opacity: 1;
    transform: translateX(0);
}

.secret-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(18, 44, 145, 0.1);
}

.secret-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    width: 60px;
    text-align: center;
}

.secret-content h4 {
    color: var(--azul-profundo);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.secret-content p {
    color: var(--azul-medio);
    margin: 0;
}

.secret-gallery img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.secret-gallery:hover img {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-medio) 100%);
}

.testimonials-swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--azul-medio);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h5 {
    color: var(--azul-profundo);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--azul-medio);
    margin: 0;
    font-size: 0.9rem;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--amarillo-suave) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Pricing Table */
.pricing-table {
    background: var(--blanco);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(18, 44, 145, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(18, 44, 145, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--aqua);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aqua);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: 'Della Respira', serif;
    color: var(--azul-profundo);
    margin-bottom: 1rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aqua);
}

.price .period {
    font-size: 0.9rem;
    color: var(--azul-medio);
    display: block;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--azul-medio);
}

/* Footer */
.footer {
    background: var(--azul-profundo);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-title {
    font-family: 'Della Respira', serif;
    color: var(--amarillo-suave);
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--cian-claro);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amarillo-suave);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--amarillo-suave);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .parallax-image {
        background-attachment: scroll;
    }
    
    .experience-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}