:root {

    --primary-color: #1D1B9E;
    --primary-hover: #151375;

    --accent-color: #FF8149;
    --accent-deep-color: #e66a35;



    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);


    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;


    --container-width: 1200px;
    --section-padding: 80px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}


header {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo .header-logo {
    height: 46px;

    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}


.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


header.transparent-light-text:not(.scrolled) .nav-links a {
    color: #ffffff;
}

header.transparent-light-text:not(.scrolled) .nav-links a::after {
    background-color: #ffffff;
}

header.transparent-light-text:not(.scrolled) .nav-action-btn {
    color: #ffffff;
}

header.transparent-light-text:not(.scrolled) .menu-toggle .bar {
    background-color: #ffffff;
}


header.transparent-light-text:not(.scrolled) .header-logo {
    filter: brightness(0) invert(1);
}


.hero-slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}


.destinos-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.destinos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.destinos-hero .container {
    position: relative;
    z-index: 2;
}

.destinos-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.destinos-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.slide-content {
    color: white;
    z-index: 20;
    position: relative;
}

.slide h1 {
    font-size: 4.5rem;
    margin-bottom: 6px;

    white-space: nowrap;
}

@media (max-width: 1200px) {
    .slide h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .slide h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .slide h1 {
        font-size: 1.8rem;
    }
}

.slide h1 span {
    color: var(--accent-color);
}

.slide p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}


.slider-bullets {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 30;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border: 2px solid transparent;
}

.bullet.active {
    background-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.bullet:hover {
    background-color: rgba(255, 255, 255, 0.6);
}


.btn-secondary-white {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary-white:hover {
    background-color: white;
    color: var(--primary-color);
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 10px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.btn-accent:hover {
    background-color: #e66e39;

}


.editorial-quote {
    padding: 120px 20px;
    background-color: var(--bg-color);
    text-align: center;
    position: relative;
}

.editorial-quote::before {
    content: '"';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--accent-color);
    opacity: 0.1;
    line-height: 1;
}

.editorial-quote blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.editorial-quote p {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 30px;
}

.editorial-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-style: normal;
}


.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    display: none;
}

.alternate-bg {
    background-color: #f8f9fa;
}


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

.destino-card {
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.destino-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destino-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.destino-card:hover::before {
    opacity: 1;
}

.destino-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.destino-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.btn-text {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
    transition: transform 0.3s;
}

.destino-card:hover .btn-text {
    transform: translateX(10px);
}


.video-section {
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 27, 158, 0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.5s ease, background 0.8s ease;
    pointer-events: auto;
}


.video-section.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-section.playing .video-coverup {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-section.playing .play-button {
    opacity: 0;
    pointer-events: none;
}

.video-section.playing .video-text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-section.playing .video-mini-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.video-text {
    color: white;
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 30;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 129, 73, 0.4);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 129, 73, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 129, 73, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 129, 73, 0);
    }
}

.play-button:hover {
    transform: scale(1.1);
    background-color: #ff986a;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 8px;
}

.video-text h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;

}


.video-section {
    cursor: pointer;
}

.video-coverup {
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/gallery/home/videocoverup.jpg');
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    background-blend-mode: multiply;
    z-index: 3;
    transition: opacity 0.8s ease, visibility 0.8s ease, background-color 0.8s ease;
}



.play-button .play-icon {
    transition: all 0.3s ease;
}


.video-mini-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.newsletter-notification {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.95rem;
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: slideUpFade 0.4s ease forwards;
}

.newsletter-notification.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: white;
}

.notification-content p {
    margin: 0;
    font-size: 0.95rem;
}

.notification-content.success {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.notification-content.exists {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.notification-content i {
    font-size: 1.2rem;
}

.video-section.playing:hover .video-mini-btn {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.video-mini-btn:hover {
    transform: scale(1.1);
    background-color: #ff986a;
}

.video-mini-btn .play-icon {
    transform: scale(0.6);
}


.video-section.playing .video-mini-btn .play-icon {
    border: none;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: space-between;
    margin-left: 0;
}

.video-section.playing .video-mini-btn .play-icon::before,
.video-section.playing .video-mini-btn .play-icon::after {
    content: '';
    width: 6px;
    height: 100%;
    background: white;
    border-radius: 1px;
}

.video-text p {
    font-size: 1.25rem;
    font-weight: 500;
}

.section-footer {
    text-align: center;
    margin-top: 60px;
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: -35px auto 40px;

    line-height: 1.5;
}

.blog-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    align-items: center;
}

.blog-card.featured .blog-image-placeholder {
    height: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .blog-card.featured .blog-image-placeholder {
        height: 250px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image-placeholder {
    height: 240px;
    width: 100%;
    transition: filter 0.3s;
}

.blog-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.blog-card.featured .blog-image-link {
    height: 100%;
}

.blog-card:hover .blog-image-placeholder {
    filter: brightness(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-category {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more:hover .icon {
    transform: translateX(5px);
}

.read-more .icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}


.testimonials-container {
    position: relative;
    max-width: var(--container-width);
    margin: 50px auto 0;
    padding: 0 60px;

}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonials-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    min-width: 100%;
}

.testimonial-card {
    background: white;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(29, 27, 158, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.google-badge img {
    width: 16px;
    height: 16px;
}

.testimonial-stars {
    color: #FBBC05;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary-color);
    opacity: 0.05;
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
    z-index: -1;
}

.testimonial-footer {
    border-top: 1px solid #f1f1f1;
    padding-top: 25px;
}

.author-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.source {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.source::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.testimonials-bullets {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;

    padding-bottom: 20px;
}

.t-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.t-bullet.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(29, 27, 158, 0.2);
}


.t-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.t-nav:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(29, 27, 158, 0.15);
}

.t-nav.prev {
    left: 0;
}

.t-nav.next {
    right: 0;
}

@media (max-width: 992px) {
    .testimonials-container {
        padding: 0 20px;
    }

    .t-nav {
        display: none;

    }
}

@media (max-width: 992px) {
    .testimonials-group {
        grid-template-columns: 1fr;
    }
}


.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.playlist-card {
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.playlist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 992px) {
    .music-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}


.community-section {
    background-color: var(--primary-color);
    background-image: radial-gradient(circle at top right, rgba(255, 129, 73, 0.1), transparent 600px);
    color: white;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.community-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.community-content {
    margin-bottom: 50px;
}

.community-section .section-title {
    color: white;
    text-align: center;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.community-text {
    font-size: 1.25rem;
    opacity: 0.8;
    max-width: 650px;
    line-height: 1.6;
    margin: 0 auto;
}


.whatsapp-form {
    background: white;
    padding: 50px;
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.unified-input {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 0 0 0 25px;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 60px;

    overflow: hidden;

}

.unified-input:focus-within {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 10px 30px rgba(255, 129, 73, 0.1);
}

.whatsapp-prefix {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    border-right: 1px solid #eee;
    margin-right: 15px;
    padding-right: 15px;
}

.whatsapp-form input[type="tel"] {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    color: var(--primary-color);
    padding: 0;
}

.whatsapp-form .btn {
    height: 100%;
    padding: 0 35px;
    border-radius: 0;

    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: none !important;

    border: none !important;

    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-form .btn:hover {
    transform: scale(0.96);
    background-color: var(--primary-hover);
    color: white !important;
}

.whatsapp-form .btn:active {
    transform: scale(0.92);
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .community-section .section-title {
        font-size: 2.5rem;
    }

    .community-text {
        font-size: 1.1rem;
    }

    .whatsapp-form {
        padding: 30px 20px;
    }
}


.map-section {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 610px;
    margin-bottom: 0;

    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .map-section iframe {
        height: 400px;
    }
}


.main-footer {
    background-color: #05043a;

    color: #e0e0e0;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.8;
}

.footer-title {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 5px;
    width: 20px;
    text-align: center;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.legal-links a:hover {
    text-decoration: underline;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(255, 129, 73, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: var(--primary-color);
}

.google-reviews-badge {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 15px 12px;
    border-radius: 12px 0 0 12px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-right: none;
}

.google-reviews-badge:hover {
    padding-right: 20px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
}

.google-reviews-badge.is-hidden {
    transform: translateY(-50%) translateX(110%);
}

.g-icon {
    background-color: #4285F4;
    color: white;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 13px;
}

.g-rating {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    line-height: 1;
    margin: 2px 0;
}

.g-stars {
    color: #FBBC05;
    font-size: 8px;
    display: flex;
    gap: 2px;
}

.g-text {
    display: none !important;
}

@media (max-width: 768px) {
    .google-reviews-badge {
        padding: 16px 8px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-info li {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}


.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/img/gallery/contact/contact_image.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.nosotros-hero-tall {
    min-height: 100vh;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 129, 73, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}


.editorial-route-intro {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.editorial-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.editorial-monumental-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-transform: none;
    font-weight: 700;
}

.editorial-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    margin-bottom: 30px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
}

.editorial-text-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.editorial-text-content p {
    margin-bottom: 30px;
}

.editorial-text-content b,
.editorial-text-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.editorial-visual-accent {
    position: relative;
    padding-top: 20px;
}

.editorial-highlight-box {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 4px;
    position: relative;
}

.editorial-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent-color);
}

.editorial-large-quote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
}

.editorial-large-quote span {
    color: var(--accent-color);
    font-weight: 700;
}

@media (max-width: 992px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .editorial-monumental-title {
        font-size: 3.5rem;
    }

    .editorial-highlight-box {
        padding: 40px;
    }
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-family: var(--font-heading);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


.why-choose-us {
    padding: 120px 0;
    background: white;
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-header .eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.editorial-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.benefit-item {
    position: relative;
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.benefit-item:hover .benefit-number {
    color: rgba(255, 129, 73, 0.1);
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-title {
        font-size: 2.2rem;
    }
}

.contact-section {
    padding: 120px 0;
    background-color: #fbfbfb;
}

.contact-section {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(29, 27, 158, 0.05), rgba(29, 27, 158, 0.05)), url('../assets/img/gallery/contact/oaxaca_bck.jpg') center/cover no-repeat fixed;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}


.faq-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.faq-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.faq-container {
    width: 100%;
}

.faq-container .section-title {
    text-align: left;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-image {
        max-height: 400px;
    }
}

.accordion {
    border-top: 1px solid #e0e0e0;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.accordion-header i {
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--accent-color);
}

.accordion-item.active .accordion-header {
    color: var(--accent-color);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    padding-bottom: 30px;
    padding-right: 40px;
}


.contact-form-container {
    background: white;
    padding: 60px;
    border-radius: 4px;

    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.main-contact-form .form-group {
    margin-bottom: 30px;
}

.main-contact-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-contact-form input,
.main-contact-form textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid #dcdcdc;
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: all 0.3s;
    background: transparent;
    border-radius: 0;
}

.main-contact-form input:focus,
.main-contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.main-contact-form input::placeholder,
.main-contact-form textarea::placeholder {
    color: #bbb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.spam-check {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px dashed #eee;
}

.spam-check label {
    text-transform: none;
    letter-spacing: 0;
}

.main-contact-form .btn {
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 3rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-form-container {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}



.editorial-page {
    background-color: #fff;
}

.nosotros-hero {
    position: relative;
    padding: 220px 0 140px;
    background: #fbfbfb;
    overflow: hidden;
}

.monumental-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 0.85;
    color: var(--primary-color);
    letter-spacing: -5px;
    margin-bottom: 40px;
    font-weight: 700;
}

.hero-text-side {
    max-width: 800px;
    position: relative;
    z-index: 5;
}

.lead-text {
    font-size: 1.5rem;
    color: #333;
    font-weight: 300;
    max-width: 550px;
    line-height: 1.5;
}

.hero-solid-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1;
}

.story-section {
    padding: 180px 0;
    background: white;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: flex-start;
}

.solid-placeholder {
    width: 100%;
    height: 650px;
    border-radius: 2px;
}

.primary-bg {
    background-color: var(--primary-color);
}

.accent-bg {
    background-color: var(--accent-color);
}

.story-image-block {
    position: relative;
}

.floating-caption {
    position: absolute;
    top: 40px;
    left: -40px;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-content h2 {
    font-size: 4rem;
    margin-bottom: 40px;
    line-height: 1.05;
    color: var(--primary-color);
    letter-spacing: -2px;
}

.story-body p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-vision-editorial {
    padding: 160px 0;
}

.editorial-grid-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.mv-editorial-item {
    padding: 80px 60px;
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
    position: relative;
}

.mv-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: rgba(29, 27, 158, 0.03);
    position: absolute;
    top: 20px;
    right: 40px;
}

.mv-editorial-item h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.values-editorial-section {
    padding: 180px 0;
    background: white;
}

.values-list-editorial {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 80px;
}

.value-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.decorative-solid-block {
    width: 100%;
    height: 150px;
    margin-top: 140px;
}

@media (max-width: 1200px) {
    .monumental-title {
        font-size: 6rem;
    }
}

@media (max-width: 1024px) {
    .monumental-title {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .story-layout,
    .editorial-grid-mv {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .hero-solid-block {
        display: none;
    }

    .values-list-editorial {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text-side {
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .monumental-title {
        font-size: 4rem;
    }

    .values-list-editorial {
        grid-template-columns: 1fr;
    }
}


.editorial-centered-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
}

.editorial-centered-content .eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.editorial-centered-content .editorial-title {
    font-size: 4.5rem;
    line-height: 1;
    color: var(--primary-color);
    letter-spacing: -3px;
    margin-bottom: 50px;
}

.about-story-body p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    font-weight: 300;
}


.about-section .faq-grid {
    display: block;
}


.solid-color-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    overflow: hidden;
}

.gallery-block {
    height: 425px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-block:hover {
    transform: scale(1.05);
    z-index: 2;
    filter: brightness(1.1);
}

.solid-color-gallery .primary-bg {
    background-color: var(--primary-color);
}

.solid-color-gallery .accent-bg {
    background-color: var(--accent-color);
}

.solid-color-gallery .secondary-bg {
    background-color: #0a094d;
}

.solid-color-gallery .light-bg {
    background-color: #f4f4f4;
}

.solid-color-gallery .accent-deep-bg {
    background-color: #cc6739;
}

@media (max-width: 1024px) {
    .solid-color-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-block {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .solid-color-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-block {
        height: 215px;
    }
}



.mission-vision-cards {
    padding: 100px 0;
    background: white;
}

.mv-flex-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card-clean {
    background: #fbfbfb;
    padding: 60px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.mv-card-clean:hover {
    transform: translateY(-5px);
}

.mv-icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--accent-color);
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mv-card-clean h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mv-card-clean p {
    color: #666;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

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


.video-section-nosotros {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);

    height: 96.6vh;

    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-simple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 4, 58, 0.4);

    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-nosotros {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 0 0 0 rgba(255, 129, 73, 0.4);
    animation: pulse 2s infinite;
    z-index: 10;
}

.play-button-nosotros:hover {
    transform: scale(1.1);
    background-color: #ff986a;
}

.play-button-nosotros .play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
    margin-left: 8px;
}

@media (max-width: 992px) {
    .video-section-nosotros {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .video-section-nosotros {
        height: 40vh;
    }
}



.bitacora-hero-simple {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6)), url('../assets/img/gallery/bitacora/aviaco_headerimage.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.bitacora-hero-simple h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.bitacora-hero-simple p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.bitacora-section {
    padding: 100px 0;
}

.section-heading-v2 {
    margin-bottom: 60px;
    max-width: 800px;
}

.section-heading-v2 .category-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading-v2 h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-heading-v2 p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.bitacora-standard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}


.bitacora-entry-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.bitacora-entry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.entry-image {
    height: 240px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.entry-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.entry-body {
    padding: 30px;
}

.entry-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.entry-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.read-more-v2 {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.read-more-v2:hover {
    color: var(--accent-color);
}


.primary-bg {
    background-color: var(--primary-color);
}

.accent-bg {
    background-color: var(--accent-color);
}

.secondary-bg {
    background-color: #2a28cc;
}

.light-bg {
    background-color: #151375;
}


.bitacora-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
}

.page-num {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #eee;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.page-num:hover,
.page-num.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-next {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.bitacora-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.page-num {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.page-num.active,
.page-num:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-next {
    text-decoration: none;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.page-next:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .bitacora-pagination {
        gap: 10px;
        margin-top: 50px;
    }

    .page-num {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .page-next {
        margin-left: 10px;
        font-size: 0.75rem;
    }
}


.video-section-youtube {
    width: 100%;
    background: #000;
}

.video-container-nosotros {
    position: relative;
    padding-bottom: 56.25%;

    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-container-nosotros iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.route-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
}

.route-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.route-hero .container {
    position: relative;
    z-index: 2;
}

.route-hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 16px;
    line-height: 1;
}

.route-intro {
    padding: 100px 0;
    background: #fff;
}

.route-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 992px) {
    .route-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.route-description h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.route-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.itinerary-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.itinerary-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.itinerary-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 10px;
    width: 2px;
    height: calc(100% + 30px);
    background: #eee;
    z-index: 1;
    transition: all 0.3s ease;
}

.itinerary-item:last-child::after {
    display: none;
}

.itinerary-item:hover {
    transform: translateX(8px);
}

.itinerary-item:hover::before {
    background-color: var(--accent-color);
    box-shadow: 0 0 12px rgba(255, 127, 80, 0.4);
}

.itinerary-item:hover::after {
    background-color: var(--accent-color);
}

.itinerary-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.booking-sidebar {
    background: #fbfbfb;
    padding: 40px;
    border-radius: 4px;
    position: sticky;
    top: 120px;
}

.cost-display {
    margin-bottom: 30px;
}

.cost-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.cost-amount {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

.cost-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.btn-add-cart {
    width: 100%;
    margin-bottom: 20px;
}

.route-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.route-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.route-details-list i {
    color: var(--accent-color);
    width: 20px;
}


.route-faqs {
    padding-bottom: 100px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 0.9rem;
    color: var(--accent-color);
}


.breadcrumbs {
    padding: 15px 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 10px;
    font-size: 0.65rem;
    opacity: 0.5;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs .current {
    color: var(--primary-color);
    font-weight: 600;
}


.breadcrumbs-light {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs-light .current {
    color: #fff;
}

.breadcrumbs-light li::after {
    color: rgba(255, 255, 255, 0.3);
}


.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(29, 27, 158, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0.04em;
    font-family: var(--font-main);
}

.nav-action-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.cart-btn {
    font-size: 1rem;
    padding: 6px 14px;
}


.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.70rem;
    font-weight: 700;
    min-width: 18px;
    padding: 0 4px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 95vw;
    height: 100vh;
    background: #fff;
    z-index: 12000;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 32px 24px;
}

.cart-drawer-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    margin: 0;
    font-family: var(--font-heading);
}

.cart-close-btn {
    background: #f8f8f8;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
    font-family: var(--font-heading);
}

.cart-item-price {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 700;
    white-space: nowrap;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-qty-selector {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 30px;
    padding: 4px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-qty-btn:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-qty {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 30px;
    text-align: center;
    color: var(--primary-color);
}

.cart-remove-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}

.cart-remove-btn:hover {
    color: #e74c3c;
}

.cart-drawer-footer {
    padding: 32px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cart-total-row span {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-total-row strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 800;
}

.cart-checkout-btn {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
}


.checkout-form-container {
    background: #fff;
    padding: 15px 0;
}

.checkout-form-container h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.checkout-input-group {
    margin-bottom: 12px;
}

.checkout-input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.checkout-input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 129, 73, 0.1);
}

.paypal-btn-wrapper {
    min-height: 150px;
}

.paypal-divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.paypal-divider span {
    background: #fff;
    padding: 0 10px;
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.paypal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eaeaea;
    z-index: 0;
}


.lang-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(6px);
}

.lang-modal-overlay.open,
body:has(#lang-modal.open) .lang-modal-overlay {
    opacity: 1;
    visibility: visible;
}

.lang-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 340px;
    max-width: 90vw;
}

.lang-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}


.lang-modal.open~.lang-modal-overlay,
#lang-modal.open+.lang-modal-overlay {
    opacity: 1;
    visibility: visible;
}

.lang-modal-inner {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.lang-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f5f5;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lang-modal-close:hover {
    background: var(--primary-color);
    color: #fff;
}

.lang-modal-inner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.lang-options {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.lang-option-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    border: 2px solid rgba(29, 27, 158, 0.12);
    border-radius: 16px;
    background: #f8f8fc;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lang-option-btn:hover {
    border-color: var(--primary-color);
    background: rgba(29, 27, 158, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 27, 158, 0.12);
}

.lang-option-flag {
    font-size: 2.2rem;
    line-height: 1;
}

.lang-option-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


#lang-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 768px) {
    .nav-actions {
        margin-left: 10px;
    }

    .nav-action-btn span:not(.cart-badge):not(.lang-flag) {
        display: none;
    }

    .cart-drawer {
        width: 100vw;
    }
}


.paypal-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 12px;
    color: #aaa;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.paypal-divider::before,
.paypal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.paypal-btn-wrapper {
    width: 100%;
    min-height: 46px;
}



.legal-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #151375, var(--primary-color));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.legal-content-section {
    padding: 80px 0;
}

.legal-text-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.legal-text-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    margin-top: 50px;
}

.legal-text-wrapper h2:first-of-type {
    margin-top: 0;
}

.legal-text-wrapper p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.legal-text-wrapper ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-text-wrapper li {
    margin-bottom: 12px;
    color: #444;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.cookies-table th {
    background: #f9f9f9;
    font-weight: 600;
}

.last-update {
    margin-top: 60px;
    font-style: italic;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 20px;
}


.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.cookie-content {
    flex: 1;
    margin-right: 40px;
}

.cookie-content p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-settings {
    background: #f0f0f0;
    color: #555;
}

@media (max-width: 992px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .cookie-content {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}


.google-reviews-badge {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.google-reviews-badge.is-scrolling {
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
}


.payment-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.payment-btn {
    width: 100%;
    min-height: 45px;
}

.paypal-divider {
    text-align: center;
    position: relative;
    margin: 25px 0 15px;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paypal-divider::before,
.paypal-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #eee;
}

.paypal-divider::before {
    left: 0;
}

.paypal-divider::after {
    right: 0;
}

.paypal-divider span {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}


.booking-sidebar .payment-grid {
    margin-bottom: 10px;
}

#mercadopago-button-container-express {
    display: flex;
    justify-content: center;
}


.post-share-bar {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.share-bar-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: #999;
    margin-right: 5px;
}

.share-btn {
    color: #777;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.share-btn.copy-feedback {
    color: #28a745;
}


.post-share-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.share-bar-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}


@keyframes pulse-cart {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 129, 73, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 129, 73, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 129, 73, 0);
    }
}

.cart-btn.cart-has-items {
    animation: pulse-cart 2s infinite;
    color: var(--accent-color);
}

.cart-btn.cart-has-items i {
    color: var(--accent-color);
}


.post-hero {
    height: 100vh;
    min-height: 400px;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-top: 80px;
}

.post-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.post-category {
    display: inline-block;
    background: var(--accent-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.post-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 1px;
}

.post-main-content {
    padding: 80px 0;
    background: white;
}

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

.post-body {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.post-body .lead {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.5;
}

.post-body p {
    margin-bottom: 25px;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.post-body h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin: 60px 0 30px;
}


.post-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    gap: 20px;
}

.post-nav .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    flex: 1;

    justify-content: center;
}

.post-nav .nav-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 27, 158, 0.1);
}

.post-nav .nav-btn span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-quote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--accent-color);
    border-left: 6px solid var(--accent-color);
    padding-left: 40px;
    margin: 60px 0;
    font-weight: 300;
    line-height: 1.4;
}

.post-image-full {
    width: 100%;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
}

.post-image-full img {
    width: 100%;
    height: auto;
    display: block;
}


.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: #888;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 10px;
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs li.current {
    color: var(--primary-color);
    font-weight: 600;
}


.destinos-hero {
    height: 70vh;
    min-height: 500px;
}


.destinos-hero-tall {
    height: 80vh;
}


.local-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.route-tile {
    position: relative;
    height: 385px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.route-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.route-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.route-tile:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.route-tile h3 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.route-tile p {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 90%;
}

.route-tile .route-number {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: -5px;
    z-index: 2;
    opacity: 0.05;
    line-height: 1;
}


.local-routes-grid .hook-card {
    grid-column: span 2;
}

.hook-card {
    background-color: var(--primary-color);
    justify-content: center;
    text-align: center;
}

.hook-card h3 {
    font-size: 1.8rem;
}


.intl-section {
    padding: 120px 0;
    background: #fdfdfd;
}

.intl-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intl-content .eyebrow {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.intl-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.1;
}

.intl-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.whatsapp-cta-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.whatsapp-cta-box h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.whatsapp-cta-box p {
    color: #888;
    margin-bottom: 35px;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    gap: 12px;
}

.btn-whatsapp-large:hover {
    background: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 1200px) {
    .local-routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .intl-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .local-routes-grid {
        grid-template-columns: 1fr;
    }

    .route-tile {
        height: 380px;
    }

    .intl-content h2 {
        font-size: 2.2rem;
    }

    .whatsapp-cta-box {
        padding: 40px 20px;
    }
}






.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}


.post-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-nav .nav-btn {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.post-nav .nav-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.post-nav .prev-post {
    margin-right: auto;
}

.post-nav .next-post {
    margin-left: auto;
}




.video-section-youtube {
    padding: var(--section-padding, 60px 20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container-nosotros {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding-top: 56.25%;
}

.video-container-nosotros iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}





@media (max-width: 992px) {
    :root {
        --section-padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {


    header {
        height: 70px;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 0;
        right: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(18, 16, 114, 0.98) !important;
        backdrop-filter: blur(15px);
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        margin: 15px 0 !important;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }


    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 2rem !important;
        color: white !important;
        padding: 10px 20px !important;
    }

    .nav-links a::after {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }


    .slide h1 {
        font-size: clamp(1.8rem, 10vw, 3rem);
        white-space: normal;
        padding: 0 20px;
    }

    .slide p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .editorial-quote p {
        font-size: 1.5rem;
    }


    .destinos-grid {
        grid-template-columns: 1fr;
    }

    .destino-card {
        min-height: 350px;
    }

    .local-routes-grid {
        grid-template-columns: 1fr !important;
    }

    .local-routes-grid .hook-card {
        grid-column: span 1 !important;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        margin: 10px 0;
    }

    .hero-slider .btn {
        width: auto;
        margin: 5px;
    }

    .section-title {
        font-size: 1.75rem;
    }
}
