/* ============================================
   VIAJES PERSONALIZADOS - MODERN STYLES
   VALLE DEL SOL
   ============================================ */

/* Hero Section Specific */
.hero-section {
    height: 85vh;
    min-height: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: rgba(251, 240, 54, 0.95);
    color: #003180;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: white;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 25px;
    border: 3px solid #e9ecef;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(97, 189, 152, 0.1), transparent);
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #61bd98;
    box-shadow: 0 20px 60px rgba(97, 189, 152, 0.2);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.3);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #003180;
    margin-bottom: 1rem;
    font-weight: 800;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Travel Types Section */
.travel-types-section {
    padding: 6rem 2rem;
}

.travel-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.travel-type-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid #61bd98;
    transition: all 0.4s ease;
}

.travel-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: #61bd98;
}

.type-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.type-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(97, 189, 152, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.travel-type-card:hover .type-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.type-content {
    padding: 2rem;
}

.type-content h3 {
    font-size: 1.7rem;
    color: #003180;
    margin-bottom: 1rem;
    font-weight: 800;
}

.type-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.type-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-includes li {
    padding: 0.6rem 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid #f0f0f0;
}

.type-includes i {
    color: #61bd98;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 2rem;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    border: 3px solid #e9ecef;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    gap: 2rem;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #61bd98;
    box-shadow: 0 15px 50px rgba(97, 189, 152, 0.2);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.3);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.6rem;
    color: #003180;
    margin-bottom: 1rem;
    font-weight: 800;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-icon {
    margin-top: 1rem;
}

.step-icon i {
    font-size: 3rem;
    color: rgba(97, 189, 152, 0.2);
}

/* Examples Section */
.examples-section {
    padding: 6rem 2rem;
}

.bg-gradient {
    background: linear-gradient(135deg, #003180, #036da7, #61bd98);
}

.section-header-white {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-white {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-subtitle-white {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.example-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #fbf036;
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.example-header h3 {
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
    flex: 1;
}

.example-price {
    background: #fbf036;
    color: #003180;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
}

.example-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.example-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.example-highlights li {
    padding: 0.8rem 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.example-highlights i {
    color: #fbf036;
}

/* Custom Form Section */
.custom-form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.form-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #003180;
    margin-bottom: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-intro h2 i {
    color: #61bd98;
}

.form-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.personalized-form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid #003180;;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.6rem;
    color: #003180;
    margin-bottom: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-section h3 i {
    color: #61bd98;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 600;
    color: #003180;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #61bd98;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #61bd98;
    background: white;
    box-shadow: 0 0 0 4px rgba(97, 189, 152, 0.1);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: white;
    border-color: #61bd98;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #61bd98;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: #003180;
    font-weight: 600;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #61bd98;
}

.form-checkbox label {
    color: #666;
    cursor: pointer;
}

/* Submit Button */
.btn-submit-custom {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(97, 189, 152, 0.4);
    margin-top: 2rem;
}

.btn-submit-custom:hover {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(97, 189, 152, 0.6);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: white;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #e9ecef;
}

.testimonial-stars {
    color: #fbf036;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-content > p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.author-info strong {
    display: block;
    color: #003180;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid #61bd98;
    color: #61bd98;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #61bd98;
    color: white;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 0.8rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #61bd98;
    transform: scale(1.4);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #61bd98;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #003180;
    font-weight: 700;
    margin: 0;
    padding-right: 1rem;
}

.faq-question i {
    color: #61bd98;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 2rem;
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .benefits-grid,
    .travel-types-grid,
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .travel-types-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .personalized-form {
        padding: 2rem 1.5rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: auto;
        min-width: 45%;
    }
    
    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}
























/* ============================================
   HERO SECTION - VIAJES PERSONALIZADOS
   Valle del Sol
   ============================================ */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background:  linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));

    z-index: 1;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    max-width: 850px;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s both;
}

.hero-badge i {
    color: #fbf036;
    font-size: 1rem;
}

/* Hero Title */
.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.3);
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s both;
}

/* Hero Description */
.hero-content > p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.9s both;
}

/* ===== HERO BUTTONS ===== */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: heroFadeUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 1.1s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Primary Button */
.hero-btn.primary {
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 40px rgba(97, 189, 152, 0.4);
}

.hero-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-btn.primary:hover::before {
    left: 100%;
}

.hero-btn.primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 50px rgba(97, 189, 152, 0.6);
    color: #ffffff;
}

.hero-btn.primary:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-btn.primary i {
    transition: transform 0.3s ease;
}

.hero-btn.primary:hover i {
    transform: rotate(-10deg) scale(1.1);
}

/* Secondary Button */
.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.hero-btn.secondary:active {
    transform: translateY(-1px) scale(0.98);
}

.hero-btn.secondary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn.secondary:hover i {
    transform: scale(1.2);
}

/* Scroll indicator */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    z-index: 2;
    animation: scrollMouse 2.5s ease-in-out infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    z-index: 3;
    animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollMouse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        bottom: 55px;
    }
    50% {
        opacity: 0.5;
        bottom: 38px;
    }
    100% {
        opacity: 1;
        bottom: 55px;
    }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
    padding: 5rem 0 3.5rem;
    background: #ffffff;
    text-align: center;
}

.container-custom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Eyebrow */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #61bd98;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1.2rem;
    background: rgba(97, 189, 152, 0.08);
    border-radius: 30px;
    border: 1px solid rgba(97, 189, 152, 0.2);
}

.section-eyebrow i {
    font-size: 0.9rem;
    color: #4CAF50;
}

/* Title */
.section-title-main {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #003180;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #61bd98, #036da7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.section-description {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .hero-section {
        min-height: 550px;
    }

    .intro-section {
        padding: 4rem 0 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        max-height: 800px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.95rem 2rem;
        font-size: 1rem;
    }

    /* Ocultar scroll indicator en móvil */
    .hero-section::after,
    .hero-section::before {
        display: none;
    }

    .intro-section {
        padding: 3.5rem 0 2.5rem;
    }

    .section-description {
        font-size: 1.05rem;
        line-height: 1.75;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 480px;
    }

    .hero-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-btn {
        max-width: 260px;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .intro-section {
        padding: 3rem 0 2rem;
    }

    .section-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section-title-main {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-bg {
        animation: none;
        transform: scale(1);
    }

    .hero-content,
    .hero-badge,
    .hero-content h1,
    .hero-content > p,
    .hero-buttons {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-btn.primary::before {
        display: none;
    }

    .hero-btn:hover,
    .hero-btn.primary:hover,
    .hero-btn.secondary:hover {
        transform: none;
    }

    .hero-section::after,
    .hero-section::before {
        animation: none;
    }
}

















/* ============================================
   EXAMPLES SECTION - VIAJES PERSONALIZADOS
   Valle del Sol
   ============================================ */

/* ============================================
   EXAMPLES SECTION - COMPACT VERSION
   Valle del Sol
   ============================================ */

.bg-gradient {
    background: linear-gradient(135deg, #003180 0%, #036da7 50%, #004a99 100%);
}

.examples-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;  background: linear-gradient(135deg, #003180 0%, #036da7 50%, #004a99 100%);
}

.examples-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(97, 189, 152, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== SECTION HEADER WHITE ===== */
.section-header-white {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-white {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    line-height: 1.3;
}

.section-title-white i {
    color: #61bd98;
    font-size: 0.85em;
}

.section-subtitle-white {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== EXAMPLES GRID - COMPACT ===== */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ===== EXAMPLE CARD - COMPACT ===== */
.example-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    flex-direction: column;
    border-color:#fff;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: rgba(97, 189, 152, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== EXAMPLE IMAGE - COMPACT ===== */
.example-image {
    position: relative;
    width: 100%;
    height: 150px; /* Más compacta */
    overflow: hidden;
}

.example-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.example-card:hover .example-image img {
    transform: scale(1.08);
}

.example-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 49, 128, 0.5) 100%);
    pointer-events: none;
}

/* Tag */
.example-tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 49, 128, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
    transition: all 0.3s ease;
}

.example-tag i {
    color: #61bd98;
    font-size: 0.65rem;
}

.example-card:hover .example-tag {
    background: rgba(97, 189, 152, 0.9);
}

.example-card:hover .example-tag i {
    color: #ffffff;
}

/* ===== EXAMPLE BODY - COMPACT ===== */
.example-body {
    padding: 1.2rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Header */
.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    gap: 0.8rem;
}

.example-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.example-price {
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(97, 189, 152, 0.3);
}

/* Description */
.example-description {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

/* Highlights - Compact 2 columnas */
.example-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.example-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.35rem 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.example-highlights li:hover {
    background: rgba(97, 189, 152, 0.12);
}

.example-highlights li i {
    color: #61bd98;
    font-size: 0.6rem;
    min-width: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .examples-section {
        padding: 4rem 0;
    }

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .examples-grid .example-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .examples-section {
        padding: 3.5rem 0;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .examples-grid .example-card:last-child {
        max-width: 100%;
    }

    .section-title-white {
        flex-direction: column;
        gap: 0.4rem;
    }

    .example-image {
        height: 140px;
    }

    .example-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .examples-section {
        padding: 3rem 0;
    }

    .example-body {
        padding: 1rem;
    }

    .example-image {
        height: 130px;
    }

    .example-header h3 {
        font-size: 0.95rem;
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .example-card:hover {
        transform: none;
    }

    .example-card:hover .example-image img {
        transform: none;
    }
}























/* ============================================
   TESTIMONIALS + FAQ - TWO COLUMN ROW 50/50
   Valle del Sol
   ============================================ */

.testimonials-faq-section {
    padding: 5rem 0;
    background:radial-gradient(circle at 30% 70%, #61bd98, #3a9d7a);
    position: relative;
    overflow: hidden;
}

/* ===== ROW LAYOUT 50/50 ===== */
.two-col-row {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
}

.col-half {
    width: 50%;
    min-width: 0;
}

/* ===== SECTION HEADER (compartido) ===== */
.section-header {
    margin-bottom: 1.8rem;
}

.section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: #003180;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1.3;
}

.section-title i {
    color: #61bd98;
    font-size: 0.85em;
}

/* ============================================
   TESTIMONIALS COLUMN
   ============================================ */

.testimonials-col {
    background: #f8fafb;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Slider */
.testimonials-slider {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbce3a;
    font-size: 0.95rem;
}

/* Quote */
.testimonial-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid #61bd98;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #61bd98, #4CAF50);
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-info strong {
    font-size: 0.9rem;
    color: #003180;
    font-weight: 700;
}

.author-info span {
    font-size: 0.78rem;
    color: #888;
}

/* Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #003180;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    background: #61bd98;
    border-color: #61bd98;
    color: #ffffff;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots .dot.active {
    background: #61bd98;
    transform: scale(1.3);
}

/* ============================================
   FAQ COLUMN
   ============================================ */

.faq-col {
    padding: 0rem 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

/* FAQ Item */
.faq-item {
    background: #f8fafb;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(97, 189, 152, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: rgba(97, 189, 152, 0.4);
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(97, 189, 152, 0.1);
}

/* Question */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.3rem;
    cursor: pointer;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(97, 189, 152, 0.04);
}

.faq-question h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #003180;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: #61bd98;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    min-width: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
                padding 0.3s ease;
    padding: 0 1.3rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.3rem 1rem;
}

.faq-answer p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================
   DIVIDER VERTICAL (decorativo)
   ============================================ */
.two-col-row::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(97, 189, 152, 0.2) 20%,
        rgba(97, 189, 152, 0.2) 80%,
        transparent 100%
    );
    pointer-events: none;
    display: none; /* activar si quieres divisor */
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .testimonials-faq-section {
        padding: 4rem 0;
    }

    .two-col-row {
        gap: 2rem;
    }

    .testimonials-col {
        padding: 1.5rem;
    }

    .testimonials-slider {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .two-col-row {
        flex-direction: column;
        gap: 2.5rem;
    }

    .col-half {
        width: 100%;
    }

    .testimonials-faq-section {
        padding: 3.5rem 0;
    }

    .testimonials-col {
        padding: 1.5rem;
    }

    .testimonials-slider {
        min-height: auto;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .testimonials-faq-section {
        padding: 3rem 0;
    }

    .testimonials-col {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .testimonial-content p {
        font-size: 0.88rem;
    }

    .faq-question h3 {
        font-size: 0.82rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }

    .faq-question {
        padding: 0.9rem 1rem;
    }


}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .testimonial-slide {
        animation: none;
    }

    .faq-answer {
        transition: none;
    }

    .faq-item:hover {
        transform: none;
    }

    .testimonial-btn:hover {
        transform: none;
    }
}


















/* ===== Responsive para móvil ===== */
@media (max-width: 578px) {

  /* Contenedor principal: reducir padding lateral */
  .container-custom {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Las filas de dos columnas pasan a una sola columna */
  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  /* Cada campo ocupa el 100% del ancho */
  .form-field {
    width: 100%;
    min-width: 0;
  }

  /* Inputs y selects ocupan todo el ancho */
  .form-control {
    width: 100%;
    box-sizing: border-box;
    font-size: 16px; /* Evita zoom automático en iOS */
  }

  /* Grid de checkboxes: una o dos columnas máximo */
  .checkbox-grid {
    grid-template-columns: 1fr;
    /* o usa 1fr 1fr si quieres dos columnas */
  }

  /* Sección del formulario con menos padding */
  .form-section {
    padding: 15px;
  }

  /* Introducción del formulario */
  .form-intro {
    padding: 0 10px;
  }

  .form-intro h2 {
    font-size: 1.5rem;
  }

  /* Botón de envío: ancho completo */
  .btn-submit-custom {
    width: 100%;
    padding: 15px;
  }

  /* La sección principal sin overflow oculto */
  .custom-form-section {
    padding: 20px 0;
    overflow-x: hidden;
  }
}
