﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF5722;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-label {
    font-family: 'Italianno', cursive;
    font-size: 32px;
    color: #FF5722;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 800px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    margin-left: -130px;
    top: -10px;
    /* ajusta el valor */
}

.menu-btn {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    display: block;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.icon-btn:hover {
    opacity: 0.8;
}

.book-now-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.book-now-btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    color: #ff0000;
}

.hero-bg {
    display: block;
    width: 100%;
    height: auto;
    /* Removes empty space below image */
    vertical-align: middle;
}

.hero .container {
    position: absolute;
    bottom: 15%;
    /* Position content nicely above bottom edge */
    left: 50%;
    transform: translateX(-50%);
    /* Only center horizontally */
    width: 100%;
    max-width: 1200px;
    z-index: 10;
    padding: 0 20px;
    /* Ensure padding on small screens */
}

.search-form {
    margin-top: 60px;
    /* baja solo la barra */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 35%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}


/* Hero Section
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0) 55%,
                    rgba(0, 0, 0, 0.8) 100%
            ),
            rgba(0, 0, 0, 0.25);
}

.hero .container {
    position: relative;
    z-index: 10;
}
*/

.hero-title {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 1px;
    /*Esta linea cambia el espaciado entre letras del título*/
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Italianno', cursive;
    font-size: 48px;
    margin-bottom: 60px;
}

#scope-search-form {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    padding: 14px 18px;

    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: nowrap;

    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

#scope-search-form .form-group {
    flex: 0 0 auto;
    min-width: 280px;
    /* aquí controlas el largo */
}

#scope-search-form .form-select {
    width: 100%;
    padding: 15px 20px;

    background: transparent;
    backdrop-filter: none;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;

    color: white;
    font-size: 14px;
    cursor: pointer;
    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}


#scope-search-form .form-select option {
    background: var(--dark-bg);
    color: white;
}

#scope-search-form .search-submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 26px;
    /* 🔥 aquí se controla */
    border-radius: 14px;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}


#scope-search-form .search-submit-btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000000;
    position: relative;
    color: white;
    /*Se cambia el color del texto*/
}


.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(to bottom,
            #ddd 0,
            #ddd 10px,
            transparent 10px,
            transparent 20px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-title {
    margin-bottom: 30px;
}

.learn-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.learn-more-btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

.about-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-img-main {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-overlay {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 60%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid white;
}

/* Tours Section */
.tours {
    padding: 100px 0;
    background: #171515;
    color: white;
    /*Se cambia el color del texto*/
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tour-card {
    background: #000000;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
}

.tour-card:hover .tour-arrow {
    opacity: 1;
}

.tour-info {
    padding: 25px;
}

.tour-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tour-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.tour-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.tour-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.explore-all {
    text-align: center;
}

.explore-all-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.explore-all-btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background: #000000;
}

.destination-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.destination-item.reverse {
    direction: rtl;
}

.destination-item.reverse>* {
    direction: ltr;
}

.destination-text h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.destination-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.destination-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--dark-bg);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-image img {
    width: 100%;
    max-width: 400px;
}

.cta-text {
    position: relative;
}

.discount-badge {
    position: absolute;
    top: -50px;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.discount-number {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.discount-label {
    font-size: 14px;
    font-weight: 600;
}

.cta-text h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-text h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.8;
}

.get-in-touch-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.get-in-touch-btn:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: black;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.rating {
    color: var(--primary-color);
    font-size: 14px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: black;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.blog-author span {
    font-size: 14px;
    color: var(--text-light);
}

.blog-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.blog-card:hover .blog-arrow {
    background: #E64A19;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: black;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: black;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
}

/* ============================================================
   MOBILE OPTIMIZATIONS (Editorial & Fluid)
   ============================================================ */

@media (max-width: 768px) {

    /* 1. Global Spacing - Breathing room without emptiness */
    .hero,
    .about,
    .tours,
    .destinations,
    .cta,
    .testimonials,
    .blog,
    .gallery,
    .features,
    .featured-stories {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* 2. Adventure Section: Editorial Layering (Not generic stack) */
    .adventure-section {
        position: relative;
        background: #000;
        /* Seamless fade */
        padding: 0;
        min-height: 80vh;
        /* Ensure presence */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* Anchor content bottom/center */
    }

    .adventure-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        /* Image dictates top visual, fades into bg */
        z-index: 0;
        object-fit: contain;
        margin: 0;
        transform: none;
    }

    /* Gradient Overlay for Readability */
    .adventure-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.3) 40%,
                rgba(0, 0, 0, 0.9) 80%,
                #000 100%);
        z-index: 1;
        pointer-events: none;
    }

    .adventure-container {
        position: relative;
        z-index: 2;
        /* Content above image & gradient */
        padding: 140px 25px 40px;
        /* Top padding allows image to shine */
        grid-template-columns: 1fr;
        gap: 30px;
        background: transparent;
        margin: 0;
    }

    .adventure-content {
        text-align: left;
    }

    .adventure-title {
        font-size: 42px;
        /* Large enough to be important */
        line-height: 1.1;
        margin-bottom: 25px;
        color: white;
        /* Ensure readability on dark background */
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .adventure-text-columns {
        display: block;
        /* Natural flow */
        gap: 20px;
    }

    .adventure-text-columns p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    }

    /* 3. Category Nav - Scrollable & Clean */
    .stories-category-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 10px 20px 20px;
        margin: 40px -20px 20px;
        /* Bleed edges */
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        scrollbar-width: none;
    }

    .stories-category-nav::-webkit-scrollbar {
        display: none;
    }

    .stories-filter-btn {
        flex-shrink: 0;
        font-size: 13px !important;
        padding: 12px 24px !important;
        /* Touch targets */
    }

    /* 4. Hero & Search - Usable & stacked */
    .hero .container {
        bottom: 8%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    #scope-search-form {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        gap: 15px;
    }

    #scope-search-form .form-group,
    #scope-search-form .form-select,
    #scope-search-form .search-submit-btn {
        width: 100%;
        min-width: 0;
    }

    #scope-search-form .search-submit-btn {
        margin-top: 5px;
        padding: 15px;
    }

    /* 5. General Cards - Visual Breathing Room */
    .featured-stories__grid,
    .tour-grid,
    .destination-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image-wrapper {
        height: 280px;
        /* Show more image */
    }

    .story-content {
        padding: 10px 5px;
    }

    .story-title {
        font-size: 26px;
    }

    /* Fullscreen specific adjustment */
    .fullscreen-image-section {
        min-height: 400px;
        height: 60vh;
        background-attachment: scroll;
        /* Mobile parallax fix */
    }
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-content,
    .destination-item,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-overlay {
        left: 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .search-form {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .tour-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .discount-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-label {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav-actions {
        gap: 8px;
    }

    .book-now-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Stories Section */
/* CAMBIAS EL COLOR DE LOS BLOQUES DE IMÁGENESSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS */
.featured-stories {
    padding: 100px 20px;
    background: #111111;
}

.featured-stories-title {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 64px;
    margin-bottom: 60px;
    color: #d8d4d4;
    /* CAMBIAS EL COLOR DEL TÍTULO DE AMBOS CUADROSSSSSSSSSS/BLOQUEEEEEEEESSSSSSSSSSSSS */
    font-weight: 900;
    letter-spacing: 1px;
}

.featured-stories__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-card:hover {
    transform: scale(1.03);
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-pill {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.story-pill-dot {
    color: #ff3b30;
    font-size: 18px;
    line-height: 1;
}

.story-content {
    padding: 0 5px;
}

.story-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #d8d4d4;
    /* CAMBIAS EL COLOR DE LOS TEXTOS DEL CUADRO DE IMAGENES PARA LOS LOCALESSSSSSSSSSSSSSSSSSSSSSSSS */
    margin-bottom: 8px;
    line-height: 1.3;
}

.story-date {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

@media (max-width: 768px) {
    .featured-stories__grid {
        grid-template-columns: 1fr;
    }

    .featured-stories-title {
        font-size: 42px;
    }

    .story-image-wrapper {
        height: 300px;
    }
}

/* Adventure Section */
.adventure-section {
    padding: 100px 0;
    background: #f4f4f4;
    color: #1a1a1a;
}

.adventure-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.adventure-title {
    font-family: 'Anton', sans-serif;
    font-size: 68px;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 900;
}

.adventure-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.adventure-text-columns p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

.adventure-btn {
    background: #D96C4A;
    color: white;
    border: none;
    padding: 18px 36px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    /* Increased from 13px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Changed from 1px */
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 4px;
    /* Slight radius or square? Reference has square-ish */
}

.adventure-btn:hover {
    background: #bf5b3d;
}

.adventure-image-col {
    position: relative;
    width: 100%;
    height: 100%;
}

.adventure-image-col img {
    width: 100%;
    height: auto;
    display: block;
    /* No border radius mentioned, reference looks sharp/clean */
}

@media (max-width: 1024px) {
    .adventure-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .adventure-text-columns {
        text-align: left;
        /* Keep text left aligned usually looks better */
    }

    .adventure-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .adventure-text-columns {
        grid-template-columns: 1fr;
    }

    .adventure-title {
        font-size: 36px;
    }
}


/* Full Screen Image Section */
.fullscreen-image-section {
    width: 100%;
    height: 100vh;
    background-image: url('../../../assets/images/commercialGuide/fondo3.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* Mountain Adventure Section */
.mountain-adventure {
    padding: 100px 0;
    background: #fdfdfd;
}

.ma-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ma-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.ma-header-left {
    max-width: 800px;
}

.ma-title {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1;
}

.ma-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #666;
    max-width: 600px;
}

.ma-start-exploring-btn {
    background: #1a2b36;
    color: white;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.ma-start-exploring-btn:hover {
    background: #2c4250;
}

.ma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ma-card {
    position: relative;
    height: 500px;
    /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* border-radius: 8px; Reference doesn't show distinct radius on cards, but looks clean */
    transition: transform 0.3s ease;
}

.ma-card:hover {
    transform: translateY(-5px);
}

.ma-card-content {
    padding: 40px 30px 20px;
    z-index: 2;
}

.ma-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1;
}

.ma-card-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.ma-card-image-container {
    flex-grow: 1;
    position: relative;
    margin-top: auto;
    width: 100%;
    overflow: hidden;
}

.ma-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Card Variants */
.ma-card-light {
    background-color: #E6E8E9;
    color: #1a1a1a;
}

.ma-card-light .ma-card-desc {
    color: #555;
}

.ma-card-dark {
    background-color: #0B253A;
    color: white;
}

.ma-card-dark .ma-card-desc {
    color: #a0b0c0;
}

.ma-card-orange {
    background-color: #D96C4A;
    color: white;
}

.ma-card-orange .ma-card-desc {
    color: #fcece8;
}

/* Hover Button */
.ma-hover-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    color: #1a1a1a;
    padding: 15px 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    width: 80%;
    letter-spacing: 1px;
}

.ma-card:hover .ma-hover-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1024px) {
    .ma-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ma-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .ma-grid {
        grid-template-columns: 1fr;
    }

    .ma-title {
        font-size: 36px;
    }

    .ma-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Ensure gap consistency for multiple rows */
.featured-stories__grid {
    row-gap: 50px;
}


/* Infinite Poster Carousel */
/* CAMBIAS EL FONDO DEL CARRUSEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEELLLLLLLLLL*/
.poster-carousel {
    padding: 80px 0;
    background: #111111;
    /* Dark background as requested */
    overflow: hidden;
    position: relative;
}

.carousel-track-container {
    width: 100%;
    overflow: visible;
    /* Allowing items to be seen off-screen if container is wider */
    /* Ensure no horizontal scrollbar on body */
}

/* We will animate the track */
.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Animation will be handled by JS for seamless loop or CSS if static width known. 
       Given requirements, infinite loop with JS duplication is best.
       Initial state. */
}

.carousel-poster {
    flex: 0 0 auto;
    width: 200px;
    /* Adjust based on 'poster' look */
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.carousel-poster:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* Ensure no glows or shadows as requested */


/* Animation */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-track {
    /* Animation will be applied by JS or class helper if content is ready */
    animation: scrollCarousel 30s linear infinite;
    /* Ensure width fits content */
    width: max-content;
}

/* Pause on hover optional */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Responsive adjustments for Hero positioning */
@media (max-width: 1024px) {
    .hero .container {
        bottom: 12%;
        /* Slightly lower on laptops/large tablets */
    }
}

@media (max-width: 768px) {
    .hero .container {
        bottom: 10%;
        /* Adjust for tablets */
    }

    .search-form {
        margin-top: 0;
        /* Remove extra margin on mobile if needed */
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: rgba(0, 0, 0, 0.6);
        /* Slightly stronger bg for readability */
        padding: 20px;
    }

    #scope-search-form .form-group {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero .container {
        bottom: 5%;
        /* Lower on mobile screens */
    }
}

/* Stories Category Navigation */
.stories-category-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 20px 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.stories-filter-btn.active {
    background: #d8d4d4 !important;
    color: #000 !important;
    /* CAMBIAS EL COLOR DE LOS BOTONES DE ELEEEEEGIRRRRRRRRRRRRRR  */
    border-color: #ffffff !important;
}

/* Button Typography - Eyekiller Bold Style */
.stories-filter-btn {
    font-family: 'Anton', sans-serif !important;
    font-size: 22px !important;
    /* Increased for better visibility */
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* Override green buttons to orange #f5b16a */
.button--green-hollow,
.button--green-hollow:visited {
    color: #ffffff !important;
    border-color: #f5b16a !important;
}

.button--green-hollow:hover,
.button--green-hollow:active {
    color: #ffffff !important;
    border-color: #f5b16a !important;
}

.button--green-hollow .button__outline {
    border-color: #f5b16a !important;
}

.button--green-hollow:hover .button__outline {
    border-color: #f5b16a !important;
}

/* Footer button styles moved to about-navbar.css for global application */

/* Story Grid Fade Transition */
.featured-stories__grid {
    transition: opacity 0.4s ease;
}

.featured-stories__grid.fading {
    opacity: 0;
}

@media (max-width: 768px) {
    .stories-category-nav {
        gap: 10px;
        padding: 0 15px 30px;
        margin-top: 40px;
    }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.breadcrumb-nav--hidden {
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
}

.breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    margin: 0;
}

.breadcrumb-item a {
    color: #f5b16a;
    /* CAMBIAS EL COLOR DEL ICONO DE VOOOOOOOOOOOOOOOOOOOOOOOLVER*/
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a:hover {
    color: #fff;
    transform: translateX(-3px);
}

@media (max-width: 768px) {
    .breadcrumb-nav {
        top: 10px;
        left: 10px;
        padding: 8px 15px;
    }

    .breadcrumb-item a {
        font-size: 12px;
    }
}

/* Adventure Section Background */
.adventure-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.adventure-bg-image {
    display: block;
    width: 100vw;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.adventure-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Make container full height */
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    /* Remove large top padding */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /* Center items vertically */
    align-content: center;
    /* Center the grid track itself if needed */
}

.adventure-content {
    color: #fff;
}

.adventure-title {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
}

.adventure-text-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adventure-text-columns p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.adventure-image-col {
    /* Empty column for layout balance */
}

/* ============================================================
   MOBILE OPTIMIZATIONS (Editorial & Fluid)
   ============================================================ */

@media (max-width: 768px) {


    /* Hero Fix for Mobile: Full Height & Background Cover */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero .container {
        position: relative;
        z-index: 10;
        width: 100%;
    }

    /* 1. Global Spacing - Breathing room without emptiness */
    .hero,
    .about,
    .tours,
    .destinations,
    .cta,
    .testimonials,
    .blog,
    .gallery,
    .features,
    .featured-stories {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* 2. Adventure Section: Editorial Layering (Not generic stack) */
    .adventure-section {
        position: relative;
        background: #000;
        /* Seamless fade */
        padding: 0;
        min-height: 80vh;
        /* Ensure presence */
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center content vertically */
    }

    .adventure-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Cover full area */
        object-fit: cover;
        /* Ensure it covers the background */
        z-index: 0;
        margin: 0;
        transform: none;
    }

    /* Gradient Overlay for Readability */
    .adventure-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.2) 50%,
                rgba(0, 0, 0, 0.8) 85%,
                #000 100%);
        z-index: 1;
        pointer-events: none;
    }

    .adventure-container {
        position: relative;
        z-index: 2;
        /* Content above image & gradient */
        padding: 0 25px;
        /* Remove large bottom padding to allow true centering */
        grid-template-columns: 1fr;
        gap: 20px;
        background: transparent;
        margin: 0;
        width: 100%;
    }

    .adventure-content {
        text-align: left;
    }

    .adventure-title {
        font-size: 42px;
        /* Large enough to be important */
        line-height: 1.1;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: white;
        /* Ensure readability */
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .adventure-text-columns {
        display: block;
        /* Natural flow */
    }

    .adventure-text-columns p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    /* 3. Category Nav - Scrollable & Clean */
    .stories-category-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 10px 20px 20px;
        margin: 40px -20px 20px;
        /* Bleed edges */
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        scrollbar-width: none;
    }

    .stories-category-nav::-webkit-scrollbar {
        display: none;
    }

    .stories-filter-btn {
        flex-shrink: 0;
        font-size: 18px !important;
        /* Considerably larger for mobile */
        padding: 12px 24px !important;
        /* Touch targets */
    }

    /* 4. Hero & Search - Usable & stacked */
    .hero .container {
        bottom: 8%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    #scope-search-form {
        flex-direction: column;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        gap: 15px;
    }

    #scope-search-form .form-group,
    #scope-search-form .form-select,
    #scope-search-form .search-submit-btn {
        width: 100%;
        min-width: 0;
    }

    #scope-search-form .search-submit-btn {
        margin-top: 5px;
        padding: 15px;
    }

    /* 5. General Cards - Visual Breathing Room */
    .featured-stories__grid,
    .tour-grid,
    .destination-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image-wrapper {
        height: 280px;
        /* Show more image */
    }

    .story-content {
        padding: 10px 5px;
    }

    .story-title {
        font-size: 26px;
    }

    /* Fullscreen specific adjustment */
    .fullscreen-image-section {
        min-height: 400px;
        height: 60vh;
        background-attachment: scroll;
        /* Mobile parallax fix */
    }
}