/* === VARIABLES === */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-darker: #0c4a6e;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --dark: #0f172a;
    --text: #475569;
    --light-bg: #f0f9ff;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
    --shadow-hover: 0 8px 30px rgba(14, 165, 233, 0.25);
    --gradient: linear-gradient(135deg, #0c4a6e 0%, #0ea5e9 100%);
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--light-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* === HEADER === */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: var(--primary);
}

.logo-img {
    height: 70px;
    width: auto;
}

.logo i {
    font-size: 28px;
}

.logo strong {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
    font-size: 14px;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
}

.btn-ayuda {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: background 0.3s;
}

.btn-ayuda:hover {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* === HERO === */
.hero {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920') center/cover;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 60px 20px 120px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* === SEARCH BOX === */
.search-box {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 40px;
}

.search-box .container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0;
    overflow: hidden;
}

.search-tabs {
    display: flex;
    background: var(--light-bg);
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    flex: 1;
    padding: 18px 20px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(0, 191, 165, 0.05);
}

.tab-btn.active {
    color: var(--primary);
    background: var(--white);
    border-bottom-color: var(--primary);
}

.search-form {
    display: none;
    padding: 25px;
}

.search-form.active {
    display: block;
}

.form-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 150px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.btn-search {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-search:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 109, 0, 0.4);
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--white);
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.trust-item i {
    font-size: 20px;
    color: var(--primary);
}

/* === SECTIONS === */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text);
    margin-bottom: 40px;
    font-size: 16px;
}

/* === DESTINOS === */
.destinos {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.destino-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.destino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.destino-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.destino-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.destino-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.destino-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.destino-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.destino-overlay strong {
    font-size: 18px;
    color: var(--secondary);
}

.destino-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* === OFERTAS === */
.ofertas {
    padding: 80px 0;
    background: var(--white);
}

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

.oferta-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.oferta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.oferta-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}

.oferta-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.oferta-content {
    padding: 20px;
}

.oferta-tipo {
    display: inline-block;
    background: rgba(0, 191, 165, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.oferta-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.oferta-rating {
    color: #FFB800;
    font-size: 12px;
    margin-bottom: 8px;
}

.oferta-rating span {
    color: var(--text);
    margin-left: 5px;
}

.oferta-ubicacion {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 15px;
}

.oferta-ubicacion i {
    color: var(--primary);
    margin-right: 5px;
}

.oferta-precio {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-bottom: 15px;
}

.precio-antes {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.precio-ahora {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.precio-noche {
    font-size: 12px;
    color: var(--text);
}

.btn-reservar {
    display: block;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.3s;
}

.btn-reservar:hover {
    background: var(--primary-dark);
}

/* === BENEFICIOS === */
.beneficios {
    padding: 80px 0;
    background: var(--gradient);
}

.beneficios .section-title {
    color: var(--white);
}

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

.beneficio-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--white);
    transition: transform 0.3s, background 0.3s;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.beneficio-icon i {
    font-size: 28px;
    color: var(--primary);
}

.beneficio-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.beneficio-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* === NEWSLETTER === */
.newsletter {
    padding: 60px 0;
    background: var(--dark);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: rgba(255,255,255,0.7);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    width: 300px;
}

.newsletter-form button {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

/* === FOOTER === */
.footer {
    background: var(--white);
    padding: 60px 0 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
}

.footer-logo strong {
    color: var(--secondary);
}

.footer-col p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li i {
    color: var(--primary);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 28px;
    color: var(--text);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: 5px 0 20px rgba(0,0,0,0.15);
        transition: left 0.3s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 16px;
    }
    
    .header-actions .currency-selector {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }
    
    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .destino-card.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 250px;
    }
    
    .destino-card {
        height: 200px;
    }
    
    .ofertas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
    
    .btn-search {
        width: 100%;
        justify-content: center;
    }
    
    .trust-items {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .destinos-grid {
        grid-template-columns: 1fr;
    }
    
    .destino-card.large {
        grid-column: span 1;
    }
    
    .ofertas-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

/* === BLOG SECTION (HOME) === */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card a {
    display: block;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background: rgba(0, 191, 165, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background 0.3s;
}

.btn-ver-mas:hover {
    background: var(--primary-dark);
}

/* === PAGE HERO === */
.page-hero {
    background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920') center/cover;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0.9;
}

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

.page-hero h1 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

/* === BLOG PAGE === */
.blog-page {
    padding: 60px 0;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

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

/* === ABOUT PAGE === */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mission-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 32px;
    color: var(--white);
}

.mission-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.mission-card p {
    color: var(--text);
    line-height: 1.7;
}

.why-us-section {
    padding: 80px 0;
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    padding: 30px;
    border: 2px solid #eee;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.why-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.stats-section {
    padding: 60px 0;
    background: var(--gradient);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.contact-cta {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-contact:hover {
    background: var(--secondary-dark);
}

/* === GUIDE PAGE === */
.guide-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 60px;
}

.guide-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
}

.guide-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.guide-badge {
    display: inline-block;
    background: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.guide-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.guide-hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.guide-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    opacity: 0.8;
}

.guide-meta i {
    margin-right: 8px;
}

.quick-info {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

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

.info-card {
    text-align: center;
    padding: 20px;
}

.info-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card h4 {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 5px;
}

.info-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

.guide-content {
    padding: 60px 0;
}

.guide-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
}

.guide-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.guide-sidebar h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--dark);
}

.guide-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-nav a {
    color: var(--text);
    font-size: 14px;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
    transition: all 0.3s;
}

.guide-nav a:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

.sidebar-cta {
    margin-top: 30px;
    padding: 25px;
    background: var(--gradient);
    border-radius: var(--radius);
    text-align: center;
}

.sidebar-cta p {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-buscar {
    display: block;
    background: var(--white);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s;
}

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

.guide-section {
    margin-bottom: 50px;
}

.guide-section h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
}

.guide-section h3 {
    font-size: 20px;
    color: var(--dark);
    margin: 25px 0 15px;
}

.guide-section p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.guide-list {
    margin: 15px 0;
    padding-left: 20px;
}

.guide-list li {
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.7;
}

.guide-image {
    margin: 30px 0;
}

.guide-image img {
    width: 100%;
    border-radius: var(--radius);
}

.image-caption {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--text);
    margin-top: 10px;
    font-style: italic;
}

.info-box, .tip-box {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--radius);
    margin: 20px 0;
}

.info-box h4, .tip-box h4 {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box ul, .tip-box ul {
    padding-left: 20px;
}

.info-box li, .tip-box li {
    color: var(--text);
    margin-bottom: 8px;
}

.tip-box {
    background: rgba(0, 191, 165, 0.1);
    border-left: 4px solid var(--primary);
}

.hotel-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.hotel-type {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid #eee;
}

.hotel-type h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.hotel-type p {
    font-size: 14px;
    margin-bottom: 5px;
}

.beach-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.beach-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.beach-info {
    padding: 20px 20px 20px 0;
}

.beach-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.beach-info p {
    font-size: 14px;
    margin-bottom: 10px;
}

.beach-tag {
    display: inline-block;
    background: var(--light-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary);
}

.activity-list {
    margin: 20px 0;
}

.activity-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.activity-icon {
    font-size: 32px;
}

.activity-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.activity-content p {
    font-size: 14px;
    margin-bottom: 5px;
}

.activity-price {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

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

.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.tip-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark);
}

.tip-card p {
    font-size: 14px;
    line-height: 1.6;
}

.guide-cta {
    background: var(--gradient);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 40px;
}

.guide-cta h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
}

.guide-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.btn-reservar-big {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-reservar-big:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.related-guides {
    padding: 60px 0;
    background: var(--light-bg);
}

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

.guide-card-small {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.guide-card-small:hover {
    transform: translateY(-5px);
}

.guide-card-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.guide-card-small h4 {
    padding: 15px;
    font-size: 16px;
    color: var(--dark);
}

/* === ARTICLE PAGE === */
.article-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 80px 0 60px;
}

.article-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.8) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.article-category {
    display: inline-block;
    background: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    max-width: 800px;
}

.article-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    opacity: 0.8;
}

.article-meta i {
    margin-right: 8px;
}

.article-content {
    padding: 60px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.article-intro .lead {
    font-size: 20px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

.article-body h2 {
    font-size: 24px;
    color: var(--dark);
    margin: 40px 0 20px;
}

.article-body p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.7;
}

.tip-highlight {
    background: rgba(0, 191, 165, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tip-highlight i {
    color: var(--primary);
    font-size: 24px;
    margin-top: 3px;
}

.tip-highlight p {
    margin: 0;
}

.article-image {
    margin: 30px 0;
}

.article-image img {
    width: 100%;
    border-radius: var(--radius);
}

.article-summary {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 40px;
}

.article-summary h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.article-summary p {
    margin-bottom: 10px;
}

.author-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--radius);
    margin-top: 40px;
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.author-info p {
    font-size: 14px;
    color: var(--text);
    margin: 0;
}

.share-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-box span {
    font-weight: 600;
    color: var(--dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.article-sidebar {
    position: relative;
}

.sidebar-widget {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.sidebar-widget h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

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

.related-post {
    display: flex;
    gap: 15px;
    align-items: center;
}

.related-post img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.related-post span {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.4;
}

.related-post:hover span {
    color: var(--primary);
}

.cta-widget {
    background: var(--gradient);
    text-align: center;
}

.cta-widget h4 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.3);
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-cta {
    display: block;
    background: var(--white);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s;
}

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

.popular-guides {
    list-style: none;
}

.popular-guides li {
    margin-bottom: 12px;
}

.popular-guides a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
    transition: color 0.3s;
}

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

.popular-guides i {
    color: var(--primary);
}

/* === GUIAS PAGE === */
.guias-page {
    padding: 60px 0;
}

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

.guia-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
}

.guia-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.guia-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.guia-card h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.guia-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* === FOOTER LINKS === */
.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text);
    font-size: 14px;
    transition: color 0.3s;
}

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

/* === RESPONSIVE NUEVAS SECCIONES === */
@media (max-width: 1024px) {
    .blog-grid,
    .blog-grid-full,
    .mission-grid,
    .guides-grid,
    .guias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid,
    .stats-grid,
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .guide-layout {
        grid-template-columns: 1fr;
    }
    
    .guide-sidebar {
        display: none;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        order: 2;
    }
    
    .hotel-types {
        grid-template-columns: 1fr;
    }
    
    .beach-card {
        grid-template-columns: 1fr;
    }
    
    .beach-card img {
        height: 200px;
    }
    
    .beach-info {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-grid,
    .blog-grid-full,
    .mission-grid,
    .why-us-grid,
    .stats-grid,
    .quick-info-grid,
    .guides-grid,
    .guias-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1,
    .guide-hero h1,
    .article-hero h1 {
        font-size: 28px;
    }
    
    .guide-meta,
    .article-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .share-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === BLOG HOME SECTION (MEJORADO) === */
.blog-home {
    padding: 80px 0;
    background: var(--white);
}

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

.blog-home-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.blog-home-card a {
    display: block;
    text-decoration: none;
}

.blog-home-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.blog-home-card:hover .blog-home-img img {
    transform: scale(1.1);
}

.blog-home-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-home-info {
    padding: 25px;
}

.blog-home-info h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-home-card:hover .blog-home-info h3 {
    color: var(--primary);
}

.blog-home-info p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-home-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: var(--text);
}

.blog-home-meta i {
    margin-right: 6px;
    color: var(--primary);
}

.blog-home-meta span:last-child {
    color: var(--primary);
    font-weight: 600;
}

.blog-home-meta span:last-child i {
    margin-left: 4px;
    margin-right: 0;
    transition: transform 0.3s;
}

.blog-home-card:hover .blog-home-meta span:last-child i {
    transform: translateX(5px);
}

/* Responsive blog home */
@media (max-width: 1024px) {
    .blog-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-home-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-home-img {
        height: 200px;
    }
    
    .blog-home-info h3 {
        font-size: 18px;
    }
    
    .blog-home-info p {
        font-size: 14px;
    }
    
    /* Header móvil */
    .header-content {
        padding: 10px 15px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .btn-ayuda {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Hero móvil */
    .hero {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 40px 15px 100px;
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    /* Buscador móvil */
    .search-box {
        margin-top: -60px;
        padding: 0 10px 30px;
    }
    
    .search-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 1 33%;
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .search-form {
        padding: 15px;
    }
    
    /* Footer móvil */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 60px;
        margin: 0 auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col ul {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* ========================================
   TOURS Y ACTIVIDADES SECTION
   ======================================== */
.tours-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.tour-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.tour-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.tour-card-content {
    padding: 20px;
}

.tour-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 8px;
}

.tour-card-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0ea5e9;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.tour-card:hover .tour-btn {
    gap: 12px;
}

.tours-cta {
    text-align: center;
    margin-top: 40px;
}

.tours-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tours-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

/* Tours Section Responsive */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tours-section {
        padding: 50px 0;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-card-img {
        height: 200px;
    }
}

/* === CORRECCIÓN MENÚ MÓVIL v7 === */
@media (max-width: 1024px) {
    .nav-menu {
        background: #0c4a6e !important;
    }
    .nav-menu.active {
        background: #0c4a6e !important;
    }
    .nav-menu a {
        color: #ffffff !important;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    }
    .nav-menu a:hover {
        color: #f59e0b !important;
    }
}

/* === DESTINOS - TEXTO SIEMPRE VISIBLE === */
.destino-card .destino-overlay {
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.85) 100%) !important;
}
.destino-card .destino-overlay h3,
.destino-card .destino-overlay p {
    color: white !important;
    opacity: 1 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
