/*
Theme Name: BC TravelPress
Description: Estilos Premium UX/UI v3.3
*/

/* ==========================================================================
   1. VARIABLES & GLOBALS (NUEVA PALETA)
   ========================================================================== */
:root {
    /* Paleta Principal */
    --color-primary: #2b8c7a;   /* Verde Oliva (Base fuerte) */
    --color-secondary: #a86934; /* Marrón Dorado (Acentos) */
    
    /* Paleta Secundaria */
    --color-tertiary: #713e2d;  /* Marrón Rojizo (Detalles oscuros) */
    --color-accent: #b0b33e;    /* Amarillo Mostaza (Brillo) */
    --color-soft: #75c6b7;      /* Turquesa (Frescura) */

    /* Funcionales */
    --color-whatsapp: #25d366;  /* Mantener verde oficial de WhatsApp */
    --color-hover: #4a5615;     /* Versión oscura del primario para hover */
    
    /* Texto y Fondos */
    --color-text: #333333;
    --color-white: #ffffff;
    
    /* Tipografía */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Open Sans", sans-serif;
    
    /* Layout */
    --container-width: 1280px;
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --transition: all 0.3s var(--ease-out-expo);
}

html {
    scroll-padding-top: 140px;
}

html,
body {
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    padding-top: 0;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

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

.button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s var(--ease-out-expo),
        box-shadow 0.2s var(--ease-out-expo), background-color 0.3s;
}

.button:active {
    transform: scale(0.98);
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.sticky-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: top 0.3s ease;
}

body.admin-bar .sticky-header-wrapper {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .sticky-header-wrapper {
        top: 46px;
    }
}

.top-bar {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.contact-item:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.contact-item .dashicons {
    font-size: 16px;
    color: var(--color-white);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-top-whatsapp {
    background-color: var(--color-whatsapp);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
}

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

.social-buttons {
    display: flex;
    gap: 8px;
}

.btn-social {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-social:hover {
    background: var(--color-secondary);
    transform: scale(1.1);
}

.site-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 0;
    transition: padding 0.4s var(--ease-out-expo);
}

.site-header.scrolled {
    padding: 8px 0;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-branding img,
.custom-logo {
    max-height: 100px;
    width: auto;
    transition: max-height 0.4s var(--ease-out-expo);
}

.site-header.scrolled .site-branding img {
    max-height: 85px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.desktop-nav .nav-menu {
    display: flex;
    align-items: center;
}

.desktop-nav .nav-menu > li {
    position: relative;
}

.desktop-nav .nav-menu > li > a {
    display: block;
    padding: 25px 12px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.desktop-nav .nav-menu > li > a::after {
    content: "";
    position: absolute;
    bottom: 18px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s var(--ease-out-expo), left 0.3s var(--ease-out-expo);
}

.desktop-nav .nav-menu > li:hover > a::after {
    width: 80%;
    left: 10%;
}

.desktop-nav .nav-menu > .menu-item-has-children > a {
    padding-right: 24px;
}

.desktop-nav .nav-menu > .menu-item-has-children > a::before {
    content: "\f347";
    font-family: "dashicons";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--color-secondary);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.desktop-nav .nav-menu > .menu-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

.desktop-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 350px;
    background: #fff;
    border-top: 3px solid var(--color-secondary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 6px 6px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-out-expo);
    z-index: 1100;
}

.desktop-nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .sub-menu a {
    display: block;
    padding: 12px 20px;
    text-transform: none;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
}

.desktop-nav .sub-menu a:hover {
    background: #fcfcfc;
    color: var(--color-secondary);
    padding-left: 25px;
    border-left: 3px solid var(--color-secondary);
}

.search-icon-btn {
    background: transparent;
    border: none;
    color: var(--color-primary);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.search-icon-btn:hover {
    background: #f0f0f0;
    color: var(--color-secondary);
}

.search-icon-btn .dashicons {
    font-size: 22px;
}

.btn-cta {
    background-color: var(--color-secondary);
    color: #fff !important;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(9, 44, 26, 0.2);
}

/* ==========================================================================
   3. SEARCH OVERLAY
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 44, 26, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: #fff;
    transform: scale(0.9);
    transition: transform 0.4s var(--ease-out-expo);
}

.search-overlay.active .search-overlay-content {
    transform: scale(1);
}

.search-overlay h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.search-overlay .search-field {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 1.5rem;
    padding: 15px 30px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    outline: none;
    text-align: center;
    transition: all 0.3s;
}

.search-overlay .search-field:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-secondary);
}

.search-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    transition: transform 0.3s;
}

.search-close-btn:hover {
    transform: rotate(90deg) scale(1.2);
    color: var(--color-secondary);
}

/* ==========================================================================
   4. MOBILE MENU & RESPONSIVE NAV
   ========================================================================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
    margin-right: 15px;
}

.hamburger-box {
    width: 32px;
    height: 24px;
    display: block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 32px;
    height: 3px;
    background: var(--color-primary);
    position: absolute;
    border-radius: 3px;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: "";
    top: -9px;
}

.hamburger-inner::after {
    content: "";
    bottom: -9px;
}

.menu-toggle.is-active .hamburger-inner {
    background: transparent;
}

.menu-toggle.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1199;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    z-index: 1200;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease-out-expo), visibility 0.5s;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.mobile-menu-container.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fcfcfc;
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-primary);
    text-transform: uppercase;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    display: flex;
}

.mobile-menu-inner {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-nav li {
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-primary);
}

.mobile-menu-container.is-open .mobile-nav > ul > li {
    animation: slideInRight 0.5s forwards;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-container.is-open .mobile-nav > ul > li:nth-child(1) {
    animation-delay: 0.1s;
}
.mobile-menu-container.is-open .mobile-nav > ul > li:nth-child(2) {
    animation-delay: 0.15s;
}
.mobile-menu-container.is-open .mobile-nav > ul > li:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-dropdown-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active {
    transform: rotate(180deg);
    background: #f9f9f9;
}

.mobile-nav .sub-menu {
    background: #fafafa;
    padding-left: 20px;
    border-left: 2px solid var(--color-secondary);
    display: none;
    margin-bottom: 10px;
}

.mobile-nav .sub-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 0;
}

.mobile-actions {
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.5s 0.4s;
    padding-bottom: 30px;
}

.mobile-menu-container.is-open .mobile-actions {
    opacity: 1;
}

.mobile-actions .button,
.mobile-menu-container .btn-top-whatsapp {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
    height: auto;
    padding: 12px 15px;
}

.full-width {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Tablet */
@media (max-width: 1024px) {
    .desktop-nav,
    .header-actions,
    .nav-wrapper {
        display: none;
    }
    .menu-toggle {
        display: block;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        padding: 5px 0;
    }

    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .top-bar-left {
        gap: 15px;
    }
    .top-bar-right {
        padding-bottom: 5px;
    }

    .contact-item {
        border: none;
        margin: 0;
        padding: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
        display: block;
    }
    .top-bar-left {
        justify-content: center;
        gap: 8px;
    }

    .contact-item {
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.1);
        padding: 5px 12px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        margin: 0;
        border: none;
        white-space: nowrap;
    }

    .site-branding img {
        max-height: 85px;
    }
}

@media (max-width: 400px) {
    .contact-item.schedule-item {
        display: none;
    }
}

/* ==========================================================================
   5. HERO & SLIDESHOW
   ========================================================================== */
.hero-fullscreen {
    position: relative;
    width: 100vw;
    height: 83vh;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    animation: zoom-pan 5s infinite alternate ease-in-out,
        image-change 20s infinite linear;
    transform-origin: center center;
}

@keyframes zoom-pan {
    0% {
        transform: scale(1.03);
        transform-origin: 20% 30%;
    }
    100% {
        transform: scale(1);
        transform-origin: 80% 70%;
    }
}

@keyframes image-change {
    0% {
        opacity: 0;
    }
    4% {
        opacity: 1;
    }
    24% {
        opacity: 1;
    }
    29% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-slideshow .slide-1 {
    animation-delay: 0s;
}
.hero-slideshow .slide-2 {
    animation-delay: -5s;
}
.hero-slideshow .slide-3 {
    animation-delay: -10s;
}
.hero-slideshow .slide-4 {
    animation-delay: -15s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 90%;
}

.hero-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: #f0f0f0;
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white) !important;
}

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

.btn-primary-inv {
    background: transparent;
    color: var(--color-white) !important;
    border: 2px solid var(--color-white);
    box-shadow: none;
}

.btn-primary-inv:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-secondary);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--color-white);
    font-size: 30px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .btn-hero {
        width: 80%;
        margin: 0 auto;
    }
}

/* ==========================================================================
   6. SECTION: BENEFITS
   ========================================================================== */
.section-benefits {
    background-color: #ffffff;
    padding: 40px 0;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.benefits-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    background-color: #f9fbfb;
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(115, 79, 28, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.benefit-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.benefit-text h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.2;
}

.benefit-text p {
    font-size: 0.8rem;
    color: #777;
    margin: 2px 0 0 0;
    font-weight: 500;
}

@media (max-width: 992px) {
    .section-benefits {
        padding: 30px 0;
    }
    .benefits-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .benefits-wrapper::-webkit-scrollbar {
        display: none;
    }

    .benefit-item {
        flex: 0 0 auto;
        background: #f8f9fa;
        padding: 15px;
        min-width: 160px;
    }
    .benefit-item:first-child {
        margin-left: 5px;
    }
    .benefit-item:last-child {
        margin-right: 5px;
    }

    .benefit-text h3 {
        font-size: 0.9rem;
    }
    .benefit-text p {
        font-size: 0.75rem;
    }
}

/* ==========================================================================
   7. SECTION: TOUR TYPES CAROUSEL (CORREGIDO)
   ========================================================================== */
.section-tour-types {
    padding: 80px 0;
    text-align: center;
    background-color: #f4f7f6;
    overflow: hidden;
}
.section-tour-types .section-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.section-tour-types .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}
.section-tour-types .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* Splide Wrapper */
.tour-types-carousel {
    padding: 0 40px;
    margin-top: 20px;
}
.tour-types-carousel .splide__track {
    overflow: hidden;
    padding: 40px 10px;
}
.tour-types-carousel .splide__slide {
    transition: opacity 0.3s ease;
    padding: 0 10px;
}

/* Tarjeta Animada */
.tour-type-card-animated {
    display: block;
    width: 100%;
    height: 380px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 2;
    transition: background 0.3s;
}
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}
.textBox {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 3;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.textBox .head {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.card-details {
    max-height: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    overflow: hidden;
}
.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 12px;
    letter-spacing: 1px;
    cursor: pointer;
}

.tour-type-card-animated:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.tour-type-card-animated:hover .card-image-background {
    transform: scale(1.1);
}
.tour-type-card-animated:hover .textBox .head {
    transform: translateY(0);
}
.tour-type-card-animated:hover .card-details {
    max-height: 60px;
    opacity: 1;
    transform: translateY(0);
}

/* Flechas */
.splide__arrow {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: all 0.3s;
}
.splide__arrow:hover {
    background: var(--color-primary);
}
.splide__arrow svg {
    fill: var(--color-primary);
}
.splide__arrow:hover svg {
    fill: #fff;
}
.tour-types-carousel .splide__pagination {
    bottom: -35px;
}
.tour-types-carousel .splide__pagination__page.is-active {
    background: var(--color-secondary);
    transform: scale(1.3);
}

/* --- FIX MOBILE KEY: Overflow Hidden & Padding --- */
@media (max-width: 768px) {
    .section-tour-types {
        padding: 50px 0;
    }
    .tour-types-carousel {
        padding: 0 20px; /* Espacio lateral externo (margen de seguridad) */
    }
    /* CLAVE: Ocultar desborde para que solo se vea 1 card */
    .tour-types-carousel .splide__track {
        overflow: hidden;
        padding: 10px 0 40px 0;
    }
    .tour-types-carousel .splide__slide {
        padding: 0; /* Card ocupa el 100% del track */
    }
    /* Ocultar flechas en móvil */
    .tour-types-carousel .splide__arrows {
        display: none;
    }
    .tour-type-card-animated {
        height: 360px;
    }
    .section-tour-types .section-title {
        font-size: 2rem;
    }
    .textBox .head {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   8. SECTION: POPULAR TOURS (GRID)
   ========================================================================== */
.section-popular-tours {
    padding: 80px 0;
    background-color: #fff;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header-flex .section-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.section-header-flex .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 25px;
}

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

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

.tour-card {
    background: var(--color-text);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tour-card-image {
    position: relative;
    overflow: hidden;
}

.img-ratio {
    width: 100%;
    padding-top: 66%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.tour-card:hover .img-ratio {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    color: #fff;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.badge-popular {
    background-color: var(--color-secondary);
}
.badge-offer {
    background-color: #e74c3c;
}

.tour-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-location .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: var(--color-hover);
}

.tour-meta-row {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item .dashicons {
    font-size: 16px;
    color: var(--color-hover);
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
    min-height: 3rem;
}

.tour-title a {
    color: var(--color-white);
}

.tour-title a:hover {
    color: var(--color-hover);
}

.tour-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
}

.tour-summary {
    font-size: 0.9rem;
    color: var(--color-white);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-summary {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 4.5em;
}

.tour-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.tour-price .label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
}

.tour-price .amount {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-white);
}

.button-book {
    background-color: var(--color-hover);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s;
}

.button-book:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 992px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header-flex {
        flexdirection: column;
        alignitems: flex-start;
        gap: 15px;
    }
    .desktop-only {
        display: none;
    }
}

@media (max-width: 576px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    .mobile-only {
        display: block;
    }
    .mt-30 {
        margin-top: 30px;
    }
    .text-center {
        text-align: center;
    }
}

.mobile-only {
    display: none;
}
.desktop-only {
    display: inline-block;
}

/* ==========================================================================
   9. SECTION: WHY US
   ========================================================================== */
.section-why-us {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-why-us::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("../img/pattern-bg.png");
    opacity: 0.05;
    pointer-events: none;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tagline {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-weight: 700;
}

.why-content .section-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 25px;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #fff;
}

.why-list li .dashicons {
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mt-20 {
    margin-top: 20px;
}

.why-badges {
    position: relative;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.badge-item img {
    max-width: 100px;
    max-height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.badge-item:hover img {
    opacity: 1;
}

.badge-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.experience-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-secondary);
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.exp-text {
    font-size: 0.75rem;
    line-height: 1.2;
    color: #fff;
    margin-top: 5px;
}

/* --- RESPONSIVE TABLETS --- */
@media (max-width: 992px) {
    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .why-list li {
        justify-content: center;
    }
    .why-badges {
        max-width: 500px;
        margin: 0 auto;
    }
    .experience-box {
        display: none;
    }
}

/* --- RESPONSIVE MOVILES (AQUÍ ESTÁ EL CAMBIO) --- */
@media (max-width: 576px) {
    .badges-grid {
        /* Forzamos 2 columnas en lugar de 1 */
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; /* Reducimos el espacio para que quepan mejor */
    }

    .badge-item {
        /* Reducimos el relleno interno para hacer las cajas más compactas */
        padding: 20px 10px; 
    }
    
    .badge-item img {
        /* Ajustamos la imagen un poco para móvil */
        max-height: 45px; 
        margin-bottom: 10px;
    }

    .badge-item span {
        font-size: 0.7rem; /* Texto un poco más pequeño */
    }

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

/* ==========================================================================
   10. SECTION: TESTIMONIALS (Updated for TripAdvisor Widget)
   ========================================================================== */
.section-testimonials {
    padding: 80px 0;
    background-color: #ffffff; /* Fondo blanco para resaltar el widget */
    position: relative;
    z-index: 1;
}

.testimonials-header {
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ajustes de tipografía para el encabezado de esta sección */
.testimonials-header .section-title {
    color: var(--color-primary); /* Asegura contraste sobre fondo blanco */
    margin-bottom: 15px;
}

.testimonials-header .section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* --- NUEVO: Contenedor del Widget TripAdvisor --- */
.tripadvisor-widget-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    min-height: 250px; /* Evita que la web 'salte' mientras carga el widget */
    display: flex;
    justify-content: center;
}

/* Opcional: Pequeño ajuste por si el widget se ve muy pegado en móviles */
@media (max-width: 768px) {
    .section-testimonials {
        padding: 60px 0;
    }
    
    .tripadvisor-widget-wrapper {
        padding: 0; /* Aprovecha todo el ancho en celulares */
    }
}

/* ==========================================================================
   11. SECTION: BLOG & NEWS (DARK STYLE MATCHING TOURS)
   ========================================================================== */
.section-blog {
    padding: 80px 0;
    background-color: #f4f7f6; /* Mismo fondo gris claro de la sección de tours */
    position: relative;
}

/* Ajuste del Slide */
.section-blog .splide__slide {
    padding: 20px 10px 40px;
}

/* --- TARJETA DE BLOG (DARK STYLE) --- */
.blog-card-premium {
    background-color: var(
        --color-text
    ); /* Fondo Oscuro (#333) igual que Tour Card */
    border-radius: 16px; /* Radio igual que Tour Card */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.blog-card-premium:hover {
    transform: translateY(-8px); /* Elevación igual que Tour Card */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Imagen */
.blog-card-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-premium:hover .blog-card-image-wrap img {
    transform: scale(1.05); /* Zoom sutil igual que Tour Card */
}

/* Badge Flotante (Fecha) */
.blog-badge-floating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff; /* Blanco para contraste sobre foto */
    padding: 6px 12px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 50px;
    z-index: 2;
    line-height: 1;
}

.blog-badge-floating .date-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(
        --color-text
    ); /* Texto oscuro para legibilidad en badge blanco */
}

.blog-badge-floating .date-month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    margin-top: 2px;
}

/* Cuerpo de la Tarjeta */
.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    color: var(--color-white); /* Texto base blanco */
}

/* Categoría (Estilo similar a Tour Location) */
.category-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary); /* Verde azulado */
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

/* Título */
.blog-title-premium {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
    min-height: 3rem; /* Alineación visual */
}

.blog-title-premium a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title-premium a:hover {
    color: var(--color-primary); /* Hover verde azulado */
}

/* Extracto */
.blog-excerpt-premium {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8); /* Blanco con opacidad */
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.blog-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Borde sutil */
}

/* Botón Leer Más */
.btn-read-more-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-white);
    text-transform: uppercase;
    transition: all 0.3s;
}

.icon-circle {
    width: 28px;
    height: 28px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle .dashicons {
    font-size: 16px;
    color: var(--color-hover); /* Icono verde azulado */
    transition: color 0.3s;
}

.btn-read-more-premium:hover {
    color: var(--color-primary);
    gap: 12px;
}

.btn-read-more-premium:hover .icon-circle {
    background: var(--color-hover);
}

.btn-read-more-premium:hover .icon-circle .dashicons {
    color: #fff;
}

/* Paginación del Blog */
.section-blog .splide__pagination {
    bottom: -20px;
    padding: 0;
}

.section-blog .splide__pagination__page {
    background: #ccc;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    opacity: 1;
    border: none;
    border-radius: 50%;
    transition: all 0.3s;
}

.section-blog .splide__pagination__page.is-active {
    background: var(--color-secondary);
    border-radius: 10px;
}

/* Ajustes Responsive */
@media (max-width: 600px) {
    .blog-card-image-wrap {
        height: 200px;
    }
    .blog-card-body {
        padding: 20px;
    }
    .section-blog .splide__slide {
        padding: 10px 5px 30px;
    }
}

/* ==========================================================================
   12. SECTION: FINAL CTA
   ========================================================================== */
.section-cta-final {
    position: relative;
    padding: 120px 0;
    color: #ffffff;
    background-image: url("../img/Hero-predeterminado.webp");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.section-cta-final::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 45, 30, 0.85);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-large-cta {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #fff;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-large-cta:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .section-cta-final {
        padding: 80px 0;
        background-attachment: scroll;
    }
    .cta-title {
        font-size: 2.2rem;
    }
    .cta-subtitle {
        font-size: 1.1rem;
    }
    .btn-large-cta {
        padding: 15px 30px;
    }
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.site-footer {
    background-color: #051a0f;
    color: #cfd8dc;
    font-size: 0.92rem;
    position: relative;
    z-index: 10;
}

.footer-partners {
    background-color: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.footer-partners .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partners-label {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.partners-grid img {
    max-height: 45px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.partners-grid img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.footer-main {
    padding: 70px 0 50px;
    background: linear-gradient(180deg, var(--color-primary) 0%, #051a0f 100%);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
}

.footer-heading {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--color-secondary);
    border-radius: 2px;
}

.footer-logo-card {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo-card img {
    max-width: 120px;
    width: auto;
    display: block;
}

.footer-desc {
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 500;
}

.footer-contact-info .dashicons {
    color: var(--color-secondary);
    background: var(--color-white);
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-menu li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.footer-menu li:last-child {
    border: none;
}

.footer-menu a {
    color: #cfd8dc;
    transition: all 0.3s;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--color-secondary);
    transform: translateX(6px);
}

.footer-newsletter-col .newsletter-text {
    margin-bottom: 20px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter-form input[type="email"] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s;
}

.footer-newsletter-form input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    outline: none;
}

.footer-newsletter-form input[type="submit"],
.footer-newsletter-form button {
    background-color: var(--color-secondary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 15px;
}

.footer-newsletter-form input[type="submit"]:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-socket {
    background-color: #020f08;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #8899a6;
}

.socket-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social a:hover {
    background: var(--color-secondary);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 5px 15px rgba(115, 79, 28, 0.4);
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
}

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

@media (max-width: 600px) {
    .footer-partners {
        padding: 20px 0;
    }
    .partners-grid {
        gap: 20px;
    }
    .partners-grid img {
        max-height: 35px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-logo-card {
        margin: 0 auto 20px;
    }
    .footer-contact-info p {
        justify-content: center;
    }
    .socket-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   14. ARCHIVE TEMPLATES (HERO & FILTERS)
   ========================================================================== */
.archive-hero {
    position: relative;
    height: 55vh;
    min-height: 450px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.archive-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    animation: heroZoom 25s infinite alternate ease-in-out;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.archive-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(2, 15, 26, 0.2) 0%,
        rgba(2, 15, 26, 0.6) 50%,
        rgba(2, 15, 26, 0.85) 90%
    );
    backdrop-filter: blur(1px);
}

.archive-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    padding-top: 30px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-eyebrow .dashicons {
    color: var(--color-secondary);
    font-size: 14px;
    height: 14px;
    width: 14px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    margin: 0 0 25px 0;
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 35px;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-description p {
    margin: 0;
}

.hero-breadcrumbs-glass {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-breadcrumbs-glass a {
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-breadcrumbs-glass a:hover {
    color: var(--color-secondary);
}

.hero-breadcrumbs-glass span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: #fff;
    opacity: 0.7;
    animation: bounceIcon 2s infinite ease-in-out;
    cursor: pointer;
    transition: opacity 0.3s;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    color: var(--color-secondary);
}
.hero-scroll-indicator .dashicons {
    font-size: 28px;
}

@keyframes bounceIcon {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp forwards 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}

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

@media (max-width: 768px) {
    .archive-hero {
        height: 45vh;
        min-height: 350px;
    }
    .hero-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 2px;
        gap: 10px;
    }
    .hero-title {
        margin-bottom: 15px;
    }
    .hero-description {
        display: none;
    }

    .hero-breadcrumbs-glass {
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
        font-size: 0.7rem;
    }
    .hero-scroll-indicator {
        bottom: 15px;
    }
}

/* Filters Bar */
.archive-filters-wrapper {
    background-color: transparent;
    padding: 0;
    position: relative;
    z-index: 90;
    margin-top: -50px;
    margin-bottom: 50px;
}

.archive-filters-wrapper .container {
    max-width: 1140px;
}

.filters-form {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filters-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, minmax(140px, 1fr)) auto;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.filters-grid * {
    box-sizing: border-box;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
    min-width: 0;
}

.input-icon-wrapper .dashicons {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
    pointer-events: none;
}

.input-icon-wrapper input,
.filter-select {
    width: 100%;
    height: 50px;
    padding: 0 15px 0 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fdfdfd;
    color: var(--color-text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    appearance: none;
}

.filter-select {
    padding: 0 35px 0 15px;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6%209L12%2015L18%209%22%20stroke%3D%22%23999999%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
}

.input-icon-wrapper input:focus,
.filter-select:focus {
    border-color: var(--color-secondary);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(115, 79, 28, 0.1);
}

.btn-filter-apply {
    height: 50px;
    padding: 0 30px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-secondary);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
    transition: background 0.3s, transform 0.2s;
}

.btn-filter-apply:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .filters-grid {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 15px;
    }
    .search-group {
        grid-column: 1 / -1;
    }
    .submit-group {
        grid-column: 1 / -1;
    }
    .btn-filter-apply {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .archive-filters-wrapper {
        margin-top: 0;
        padding: 10px 0 20px;
        background-color: #f4f7f6;
        border-bottom: 1px solid #e1e1e1;
    }

    .filters-form {
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 10px;
    }

    .filters-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .filter-group,
    .search-group,
    .submit-group {
        width: 100% !important;
        min-width: 100%;
    }

    .input-icon-wrapper,
    .input-icon-wrapper input,
    .filter-select,
    .btn-filter-apply {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
        height: 55px;
    }

    .input-icon-wrapper input,
    .filter-select,
    .btn-filter-apply {
        font-size: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .input-icon-wrapper input,
    .filter-select {
        background-color: #fff;
        border-color: #fff;
    }

    .btn-filter-apply {
        margin-top: 5px;
        box-shadow: 0 4px 10px rgba(115, 79, 28, 0.2);
    }
}

/* =========================================
   FAQ ACORDEÓN - ESTILOS UI INTEGRADOS
   ========================================= */

.section-faqs {
    padding: 80px 0;
    background-color: #f9f9f9; /* Fondo gris muy suave para separar sección */
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- TARJETA DEL ITEM --- */
.faq-item {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: var(--transition); /* Tu transición global */
}

/* Efecto Hover */
.faq-item:hover {
    border-color: #b0bec5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- ESTADO ACTIVO (ABIERTO) --- */
.faq-item.active {
    border-color: var(--color-secondary); /* Borde Terracota */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Sombra suave */
    transform: translateY(-2px); /* Elevación ligera */
}

/* Línea lateral decorativa al abrir */
.faq-item.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-secondary);
    z-index: 5;
}

/* --- PREGUNTA (BOTÓN) --- */
.faq-question {
    width: 100%;
    background: var(--color-white);
    border: none;
    padding: 20px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* Tipografía Global */
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);

    transition: var(--transition);
}

/* Cambio de color al abrir */
.faq-item.active .faq-question {
    background-color: #fffaf5; /* Fondo crema muy sutil para destacar */
    color: var(--color-secondary); /* Texto se vuelve del color secundario */
}

/* --- ICONO --- */
.faq-icon {
    font-size: 20px;
    color: #9ca3af; /* Gris apagado */
    transition: transform 0.4s var(--ease-out-expo), color 0.3s ease;
}

/* Animación del icono */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-secondary);
}

/* --- RESPUESTA --- */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo); /* Usamos tu curva expo */
    background: var(--color-white);
}

.faq-answer p {
    margin: 0;
    padding: 20px 25px;

    /* Tipografía Global */
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.9;

    border-top: 1px solid transparent;
}

/* Línea separadora sutil interna */
.faq-item.active .faq-answer p {
    border-top-color: rgba(0, 0, 0, 0.04);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-question {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

/* =========================================
   15. ARCHIVE GRID LAYOUTS (Blog & Tours)
   ========================================= */

/* Grid de Blog (3 Columnas) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* Espacio generoso entre tarjetas */
    width: 100%;
}

/* Asegurar que las cards ocupen la altura completa */
.blog-grid .blog-card-premium {
    height: 100%;
}

/* Responsive Blog Grid */
@media (max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(
            2,
            1fr
        ); /* 2 Columnas en laptops/tablets */
        gap: 30px;
    }
}

@media (max-width: 650px) {
    .blog-grid {
        grid-template-columns: 1fr; /* 1 Columna en móvil */
        gap: 30px;
    }

    /* Ajuste visual móvil */
    .blog-grid .blog-card-image-wrap {
        height: 220px;
    }
}

/* Paginación (Estilo compartido) */
.pagination-wrapper .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-wrapper .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-text);
    font-weight: 700;
    border: 1px solid #eee;
    transition: all 0.3s;
    text-decoration: none;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* =========================================
   DISEÑO PREMIUM PAGE (UX/UI v3.0 - High Contrast)
   ========================================= */

/* 1. FONDO GENERAL (Para que destaque el blanco) */
.page-layout-premium {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 100px;
    align-items: start;
    /* Aseguramos que los elementos "floten" */
    position: relative;
    z-index: 1;
}

/* Si tu body es blanco, esto ayuda a crear contraste en la sección */
body.page {
    background-color: #f4f6f8; /* Gris muy suave, casi imperceptible pero vital */
}

/* --- COLUMNA IZQUIERDA: TARJETA DE LECTURA --- */
.premium-article-card {
    background: #ffffff;
    border-radius: 12px;
    /* Sombra más pronunciada para efecto "elevación" */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Barra de Herramientas (Header Diferenciado) */
.article-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    /* Fondo gris claro para separar del contenido */
    background: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
}

.meta-group {
    display: flex;
    gap: 15px;
}

.meta-badge {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    font-weight: 600;
}

.meta-badge strong {
    color: var(--color-primary);
}

.tool-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 600;
}

.tool-btn:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

/* --- CONTENIDO (Tipografía) --- */
.typography-premium {
    padding: 60px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #2d3748; /* Gris oscuro sólido */
    background: #fff; /* Asegura fondo blanco puro */
}

/* Títulos con más peso */
.typography-premium h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.7rem;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0; /* Línea divisoria sutil */
    position: relative;
}

.typography-premium h2::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--color-secondary);
}

/* Bloques destacados (Citas/Notas) */
.typography-premium blockquote {
    background: #fdfbf7; /* Crema muy suave */
    border-left: 4px solid var(--color-secondary);
    margin: 35px 0;
    padding: 25px 30px;
    font-style: italic;
    color: #4a5568;
    border-radius: 0 8px 8px 0;
}

/* Pie del Artículo (Footer Diferenciado) */
.article-footer {
    padding: 25px 60px;
    background: #fafafa; /* Fondo gris claro */
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
}

.trust-seal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #eee;
}

/* --- SIDEBAR WIDGETS --- */
.sidebar-sticky-wrapper {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Sombra suave */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* WIDGET DESTACADO: ASISTENCIA (DARK MODE) */
/* Este cambio es clave para romper el "blanco sobre blanco" */
.widget-assist {
    background: var(--color-primary); /* Fondo oscuro */
    color: #fff;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Patrón de fondo sutil (opcional) */
.widget-assist::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.widget-assist h4 {
    color: #fff;
    font-size: 1.3rem;
    margin: 15px 0 5px;
    font-weight: 700;
    position: relative;
}

.widget-assist p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
    position: relative;
}

.avatar-group {
    position: relative; /* Para estar encima del patrón */
}

/* Botón WhatsApp en Widget Oscuro */
.btn-whatsapp-pulse {
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    position: relative;
}

.btn-whatsapp-pulse:hover {
    background: #fff;
    color: #128c7e;
    transform: translateY(-3px);
}

/* WIDGET NEWSLETTER (Gris para diferenciar) */
.sidebar-widget[style*="background: #f9f9f9;"] {
    background: #edf2f7 !important; /* Gris azulado un poco más fuerte */
    border: 1px solid #e2e8f0;
}

/* Widget Title */
.widget-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

/* Mini Cards (Sidebar) */
.mini-tour-card {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    transition: transform 0.2s;
}

.mini-tour-card:hover {
    transform: translateX(5px);
}

.mini-tour-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mini-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .page-layout-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .typography-premium {
        padding: 40px 25px;
    }
    .article-toolbar {
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
}
/* Sidebar Icon List (Why Choose Us) */
.sidebar-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-icon-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #555;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}
.sidebar-icon-list li:last-child {
    border: none;
    margin: 0;
    padding: 0;
}
.sidebar-icon-list .dashicons {
    color: var(--color-secondary);
    background: rgba(115, 79, 28, 0.1); /* Color secundario suave */
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* =========================================
   MEJORAS UI: COMENTARIOS Y SIDEBAR (v4.0)
   ========================================= */

/* --- 1. NAVEGACIÓN ENTRE POSTS (Botones Grandes) --- */
.post-navigation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.nav-card {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.nav-card:hover {
    border-color: var(--color-secondary);
    background: #fffcf5; /* Tono cálido al hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
}

/* --- 2. FORMULARIO DE COMENTARIOS (Moderno) --- */
.comment-form-wrapper {
    padding: 40px;
    background: #ffffff;
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: block;
}

/* Inputs Estilizados */
.st-form-control {
    width: 95%;
    background: #f8fafc;
    border: 2px solid #e2e8f0; /* Borde más grueso pero suave */
    padding: 16px;
    border-radius: 10px;
    font-size: 1rem;
    color: #334155;
    transition: all 0.3s;
    outline: none;
    margin-top: 1rem;
}

.st-form-control:focus {
    background: #fff;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(115, 79, 28, 0.1);
}

.st-form-control::placeholder {
    color: #cbd5e1;
}

/* Botón de Enviar (Grande y Llamativo) */
.form-submit .submit {
    background: var(--color-primary);
    color: #fff;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 10px;
}

.form-submit .submit:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- 3. LISTA DE COMENTARIOS (Estilo Chat/Burbuja) --- */
.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fdfdfd;
}

.comment-body {
    padding: 30px;
    border-bottom: 1px solid #f1f5f9;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    position: relative;
}

/* Avatar circular flotante */
.comment-author .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Metadata del comentario */
.comment-meta {
    margin-bottom: 10px;
}

.fn {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
    font-style: normal;
    margin-right: 10px;
}

.comment-metadata a {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: none;
}

/* Texto del comentario */
.comment-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
}

/* Botón Responder */
.reply a {
    display: inline-block;
    padding: 6px 16px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}

.reply a:hover {
    background: var(--color-primary);
    color: #fff;
}

/* --- 4. NUEVOS WIDGETS SIDEBAR (Blog y Tours Grandes) --- */

/* Mini Blog Items */
.mini-blog-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 15px;
    text-decoration: none;
}
.mini-blog-item:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.mini-blog-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.mini-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-blog-info {
    display: flex;
    flex-direction: column;
}
.mini-blog-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.mini-blog-item:hover .mini-blog-title {
    color: var(--color-secondary);
}
.mini-blog-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Sidebar Tours Grandes */
.sidebar-tour-card-large {
    display: block;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    transition: transform 0.2s;
}
.sidebar-tour-card-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-tour-img {
    height: 140px;
    position: relative;
    overflow: hidden;
}
.sidebar-tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-price-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.sidebar-tour-data {
    padding: 15px;
}
.sidebar-tour-title {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 5px;
    line-height: 1.3;
}
.sidebar-tour-cta {
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
}

/* Nube de Etiquetas */
.tags-cloud-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-cloud-item {
    background: #f1f5f9;
    color: #64748b;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
}
.tag-cloud-item:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .post-navigation-wrapper {
        grid-template-columns: 1fr;
    }
    .comment-body {
        grid-template-columns: 1fr;
    }
    .comment-author .avatar {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
}

/* =========================================
   ESTILOS CALENDARIO (Datepicker Premium)
   ========================================= */
#ui-datepicker-div {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    padding: 10px !important;
    z-index: 9999 !important; /* Asegura que flote sobre todo */
    font-family: var(--font-body) !important;
}

/* Cabecera (Mes/Año) */
.ui-datepicker-header {
    background: var(--color-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 0 !important;
}

.ui-datepicker-title {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Flechas */
.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
    top: 10px !important;
}
.ui-datepicker-prev span, .ui-datepicker-next span {
    filter: invert(1); /* Vuelve blancas las flechas */
}

/* Tabla de días */
.ui-datepicker-calendar th {
    color: #888 !important;
    font-weight: 600 !important;
    padding: 8px !important;
}

.ui-datepicker-calendar td {
    padding: 2px !important;
}

.ui-datepicker-calendar td a,
.ui-datepicker-calendar td span {
    text-align: center !important;
    border: 1px solid #f5f5f5 !important;
    background: #fff !important;
    border-radius: 4px !important;
    padding: 8px !important;
    font-weight: 600 !important;
    color: #333 !important;
    transition: all 0.2s !important;
}

/* Días Disponibles (Hover) */
.ui-datepicker-calendar td a:hover {
    background: var(--color-secondary) !important;
    color: #fff !important;
    border-color: var(--color-secondary) !important;
}

/* Días Seleccionado */
.ui-datepicker-current-day a {
    background: var(--color-primary) !important;
    color: #fff !important;
    border-color: var(--color-primary) !important;
}

/* Días Bloqueados (Rojos/Gris) */
.closed-day span, .closed-day a,
.closed-month span, .closed-month a,
.closed-range span, .closed-range a {
    background: #ffebee !important;
    color: #c62828 !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

/* =========================================
   CONTACT PAGE v2.0 (Premium Split)
   ========================================= */

.contact-page-wrapper {
    padding: 80px 0 100px;
    background-color: #ecf0f3; /* Fondo base */
}

/* Layout Grid Principal */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Columna Info un poco más estrecha */
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Sombra de elevación */
    background: #fff;
    margin-bottom: 60px;
}

/* --- COLUMNA IZQUIERDA: MARCA (Dark) --- */
.contact-brand-col {
    background-color: var(--color-primary); /* #092C1A */
    color: #fff;
    padding: 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Patrón de fondo sutil */
.contact-brand-col .bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--color-secondary); /* Dorado #734F1C */
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.contact-brand-col h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.intro-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Grid de Datos de Contacto */
.contact-data-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.data-item:hover {
    transform: translateX(10px);
}

.icon-box {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
}

.data-item:hover .icon-box {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.icon-box .dashicons {
    font-size: 24px;
    color: #fff;
}

.data-text {
    display: flex;
    flex-direction: column;
}

.data-text .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-bottom: 2px;
}

.data-text .value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

/* Redes Sociales */
.social-connect span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 15px;
}

.sc-icons {
    display: flex;
    gap: 15px;
}

.sc-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.sc-icons a:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* --- COLUMNA 2: FORMULARIO (Light) --- */
.contact-form-col {
    background-color: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    margin-bottom: 30px;
}

/* ESTILIZACIÓN DE INPUTS CF7 (Igualando calidad UX) */
.premium-inputs input[type="text"],
.premium-inputs input[type="email"],
.premium-inputs input[type="tel"],
.premium-inputs input[type="date"],
.premium-inputs textarea,
.premium-inputs select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    outline: none;
}

.premium-inputs input:focus,
.premium-inputs textarea:focus,
.premium-inputs select:focus {
    background-color: #fff;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(115, 79, 28, 0.1);
}

.premium-inputs label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
}

.premium-inputs input[type="submit"] {
    background-color: var(--color-secondary);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    width: auto;
    display: inline-block;
    margin-top: 10px;
}

.premium-inputs input[type="submit"]:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* --- MAPA --- */
.contact-map-section {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 5px solid #fff; /* Marco blanco */
}

.map-frame iframe {
    display: block;
    filter: grayscale(0.2); /* Un toque de estilo al mapa */
    transition: filter 0.3s;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
    }
    .contact-brand-col {
        padding: 50px 30px;
        text-align: center;
    }
    .contact-data-grid {
        align-items: center;
    }
    .sc-icons {
        justify-content: center;
    }
    .contact-form-col {
        padding: 40px 20px;
    }
}

/* =========================================
   REDES SOCIALES PREMIUM (SVG)
   ========================================= */

.footer-social-premium {
    display: flex;
    gap: 15px; /* Espacio entre iconos */
    align-items: center;
}

.social-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    
    /* Diseño Base: Glassmorphism (Fondo semitransparente) */
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%; /* Círculo perfecto */
    
    /* Color Icono Base */
    color: #fff;
    
    /* Transiciones suaves */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Para el SVG */
    padding: 0;
}

.social-icon-box svg {
    width: 20px;
    height: 20px;
    fill: currentColor; /* Hereda el color del padre */
    transition: transform 0.3s ease;
}

/* --- EFECTOS HOVER --- */

.social-icon-box:hover {
    /* Color de Lama Glama (Dorado/Marrón) */
    background: #734F1C; 
    border-color: #734F1C;
    
    /* Elevación */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(115, 79, 28, 0.4);
}

.social-icon-box:hover svg {
    transform: scale(1.1); /* El icono crece un poquito dentro del círculo */
}

/* (Opcional) Si quieres que en móviles sean un poco más grandes */
@media (max-width: 600px) {
    .footer-social-premium {
        justify-content: center; /* Centrados en móvil */
        margin-top: 10px;
    }
    .social-icon-box {
        width: 50px;
        height: 50px;
    }
}

/* =========================================
   ABOUT US PREMIUM (UX/UI v3.0)
   ========================================= */

.about-page-wrapper {
    background-color: #ecf0f3; /* Fondo base para contraste */
    padding-top: 60px;
}

.narrow-container {
    max-width: 900px; /* Lectura cómoda */
}

/* 1. INTRODUCCIÓN */
.about-intro-card {
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    margin-bottom: 80px;
    position: relative;
    overflow: visible; /* Para elementos decorativos si los hubiera */
}

.section-eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-secondary); /* Dorado */
    font-weight: 700;
    margin-bottom: 20px;
}

/* 2. MISION & VISION */
.mv-section {
    padding-bottom: 80px;
}

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

.mv-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Decoración superior de color */
.mv-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
}
.mission-card::before { background: var(--color-primary); } /* Verde */
.vision-card::before { background: var(--color-secondary); } /* Dorado */

.mv-icon-circle {
    width: 70px; height: 70px;
    background: #f4f6f8;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
}

.mission-card .mv-icon-circle .dashicons { color: var(--color-primary); font-size: 32px; }
.vision-card .mv-icon-circle .dashicons { color: var(--color-secondary); font-size: 32px; }

.mv-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.mv-content p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* 3. VALORES */
.values-section {
    padding: 80px 0;
    background: #fff; /* Franja blanca completa */
}

.section-title-large {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin: 10px 0 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.values-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card-premium {
    background: #f9fafb; /* Gris muy claro */
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-card-premium:hover {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon .dashicons {
    font-size: 36px;
    color: var(--color-primary);
    opacity: 0.8;
    transition: color 0.3s;
}

.value-card-premium:hover .value-icon .dashicons {
    color: var(--color-secondary);
    opacity: 1;
}

.value-card-premium h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 10px;
}

.value-card-premium p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* 4. CTA FINAL PARALLAX */
.about-cta-parallax {
    padding: 100px 0;
    background-image: url('../img/Hero-predeterminado.webp'); /* Asegúrate de tener esta imagen */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    margin-bottom: 0; /* Pegado al footer */
}

.about-cta-parallax::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9, 44, 26, 0.85); /* Overlay Verde Oscuro de la marca */
}

.about-cta-parallax .container {
    position: relative;
    z-index: 2;
}

.about-cta-parallax h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.about-cta-parallax p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.btn-cta-large {
    background: var(--color-secondary);
    color: #fff !important;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-large:hover {
    background: #fff;
    color: var(--color-secondary) !important;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .mv-grid-layout { grid-template-columns: 1fr; }
    .about-intro-card { padding: 40px 25px; }
    .about-cta-parallax h2 { font-size: 2.2rem; }
}

/* --- ESTILOS FORMULARIO PREMIUM LAMA GLAMA --- */

.bc-premium-contact-form {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif; /* O tu fuente principal */
}

/* Sistema de Grilla (Grid) */
.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columnas iguales */
    gap: 25px; /* Espacio entre columnas */
    margin-bottom: 20px;
}

.form-col {
    display: flex;
    flex-direction: column;
}

.form-col.full-width {
    margin-bottom: 20px;
}

/* Etiquetas (Labels) */
.bc-premium-contact-form label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2b8c7a; /* Verde Corporativo */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

/* Inputs (Campos de texto) */
.bc-input {
    width: 100%;
    padding: 14px 18px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Vital para que no se desborde */
}

.bc-input:focus {
    background-color: #fff;
    border-color: #a0652e; /* Dorado al escribir */
    outline: none;
    box-shadow: 0 4px 12px rgba(160, 101, 46, 0.1);
}

/* --- ESTILOS ESPECÍFICOS PARA CAPTCHA --- */
.bc-captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 15px;
    border: 1px dashed #ccc;
    border-radius: 8px;
}

.captcha-img-box img {
    border-radius: 4px;
    vertical-align: middle;
    max-width: 100%; /* Para que no se salga en moviles muy pequeños */
    height: auto;
}

.captcha-input-box {
    flex-grow: 1; /* Ocupa el espacio restante */
}

/* Botón de Enviar */
.bc-btn-submit {
    background-color: #a0652e; /* Dorado */
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%; /* Botón ancho completo en móvil */
    font-size: 1rem;
    letter-spacing: 1px;
}

.bc-btn-submit:hover {
    background-color: #2b8c7a; /* Verde al pasar mouse */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 140, 122, 0.3);
}

/* --- RESPONSIVE (TABLET Y MOVIL) --- */

@media (max-width: 768px) {
    /* En pantallas menores a 768px (Tablets y Celulares), todo a 1 columna */
    .form-grid-row {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    /* Ajuste del Captcha en móviles muy estrechos */
    .bc-captcha-wrapper {
        flex-direction: column; /* Imagen arriba, input abajo */
        align-items: flex-start;
    }
    
    .captcha-input-box {
        width: 100%; /* Input al 100% de ancho */
    }
}

/* Contenedor Principal */
.footer-newsletter-layout {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
}

/* --- ESTILOS COMPARTIDOS (Inputs de Correo y Código) --- */
.footer-row-full input, 
.captcha-col-input input {
    width: 100%;
    height: 45px; /* Altura cómoda */
    padding: 0 15px;
    
    /* Estilo Visual (Fondo transparente y borde sutil) */
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    color: #fff; /* Texto blanco */
    border-radius: 4px;
    
    box-sizing: border-box;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

/* Efecto al hacer clic en los campos */
.footer-row-full input:focus, 
.captcha-col-input input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/* Color del texto de ayuda (Placeholder) */
.footer-row-full input::placeholder, 
.captcha-col-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* --- ESTRUCTURA GRID PARA CAPTCHA --- */
.footer-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% y 50% */
    gap: 10px;
}

/* Imagen Captcha */
.captcha-col-img img {
    width: 100%;
    height: 45px; /* Misma altura que los inputs */
    object-fit: cover;
    border-radius: 4px;
    background: #fff;
}

/* --- BOTÓN SUSCRIBIRSE --- */
.footer-row-full button {
    width: 100%;
    height: 45px;
    border-radius: 4px;
    /* (Tus estilos de botón existentes se aplicarán aquí por la clase .button) */
    /* Si necesitas forzarlo, añade background y color aquí */
    cursor: pointer;
}