/* ===== RESET AND VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --rojo: #CC0000;
    --rojo-oscuro: #990000;
    --naranja: #FF6B00;
    --naranja-claro: #FF8C33;
    --gris: #6B6B6B;
    --gris-claro: #E8E8E8;
    --gris-oscuro: #4A4A4A;
    --negro: #1A1A1A;
    --negro-suave: #2A2A2A;
    --blanco: #FFFFFF;
    --blanco-humo: #F5F5F5;
    --blanco-puro: #FFFFFF;
    --whatsapp: #25D366;
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--blanco-puro);
    color: var(--negro);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.highlight {
    color: var(--naranja);
}

.section-tag {
    display: inline-block;
    background: rgba(204, 0, 0, 0.1);
    color: var(--rojo);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--negro);
    line-height: 1.2;
    word-wrap: break-word;
}

.section-header p {
    color: var(--gris-oscuro);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--whatsapp);
    color: var(--blanco);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--negro);
    color: var(--blanco);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--negro);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 78px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== HEADER CON MENÚ CENTRADO ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(204, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--negro);
    letter-spacing: 1px;
}

.logo-title::after {
    content: "®";
    font-size: 0.5rem;
    color: var(--rojo);
    margin-left: 2px;
}

.logo-subtitle {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--gris-oscuro);
    letter-spacing: 2px;
}

/* ===== MENÚ CENTRAL ===== */
.nav-menu {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gris-oscuro);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rojo), var(--naranja));
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--rojo);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-reservar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    color: var(--blanco);
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-reservar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.3);
}

.btn-reservar-mobile {
    display: none;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--whatsapp), #1ebe5c);
    color: var(--blanco);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-reservar-mobile:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--negro);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MENÚ MÓVIL ===== */
.nav-menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--blanco-puro);
    padding: 70px 25px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid rgba(204, 0, 0, 0.1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    z-index: 999;
}

.nav-menu-mobile.active {
    right: 0;
}

.nav-menu-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-menu-mobile ul li a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gris-oscuro);
    padding: 12px 16px;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-menu-mobile ul li a:hover,
.nav-menu-mobile ul li a.active {
    color: var(--rojo);
    background: rgba(204, 0, 0, 0.05);
}

.nav-book-btn {
    background: linear-gradient(135deg, var(--rojo), var(--naranja)) !important;
    color: var(--blanco) !important;
    text-align: center;
    font-weight: 700 !important;
    margin-top: 10px;
}

.nav-book-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

/* ===== HERO CON IMAGEN DE FONDO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 16px 40px;
    /* ===== IMAGEN DE FONDO ===== */
    background-image: url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* ===== OVERLAY OSCURO PARA LEGIBILIDAD ===== */
    background-color: rgba(0, 0, 0, 0.55);
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(204, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--blanco);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--blanco);
    word-wrap: break-word;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 300;
    padding: 0 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    color: var(--blanco);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--blanco);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--whatsapp);
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--blanco);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-label i {
    color: var(--naranja);
    margin-right: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 1;
}

.hero-scroll i {
    font-size: 1rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

/* ===== RESPONSIVE HERO ===== */
@media (min-width: 481px) {
    .hero-title {
        font-size: 3.8rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1025px) {
    .hero-title {
        font-size: 5.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-position: center;
        background-size: cover;
        background-color: rgba(0, 0, 0, 0.6);
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 60px 0;
    background: var(--blanco-humo);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 0 10px;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(204, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: 10px;
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    padding: 14px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.25);
}

.experience-badge span {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--blanco);
}

.experience-badge p {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blanco);
}

.about-content {
    padding: 0 10px;
}

.about-content h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--negro);
}

.about-content p {
    color: var(--gris-oscuro);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature i {
    font-size: 1.2rem;
    color: var(--naranja);
    margin-top: 3px;
    min-width: 24px;
}

.feature h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--negro);
}

.feature p {
    font-size: 0.8rem;
    color: var(--gris);
    margin-bottom: 0;
}

/* ===== TOURS ===== */
.tours {
    padding: 60px 0;
    background: var(--blanco-puro);
}

.tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
}

.tour-card {
    background: var(--blanco-puro);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gris-claro);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tour-card:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 0, 0, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.tour-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    padding: 3px 12px;
    border-radius: 16px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blanco);
}

.tour-info {
    padding: 18px;
}

.tour-info h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--negro);
}

.tour-info p {
    color: var(--gris-oscuro);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.tour-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.tour-meta span {
    font-size: 0.75rem;
    color: var(--gris);
}

.tour-meta i {
    color: var(--naranja);
    margin-right: 4px;
}

.tour-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--gris-claro);
}

.tour-price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--naranja);
}

.tour-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gris);
}

.btn-reservar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    color: var(--blanco);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-reservar:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.25);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 60px 0;
    background: var(--blanco-humo);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
}

.testimonial-card {
    background: var(--blanco-puro);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gris-claro);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    border-color: rgba(204, 0, 0, 0.1);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: var(--naranja);
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.testimonial-card p {
    color: var(--gris-oscuro);
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rojo);
}

.testimonial-author h4 {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--negro);
}

.testimonial-author span {
    font-size: 0.7rem;
    color: var(--gris);
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 40px 0;
    background: var(--blanco-puro);
    border-top: 1px solid var(--gris-claro);
    border-bottom: 1px solid var(--gris-claro);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 10px;
}

.benefit-item {
    text-align: center;
    padding: 15px 10px;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--naranja);
    margin-bottom: 8px;
}

.benefit-item h4 {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--negro);
}

.benefit-item p {
    color: var(--gris);
    font-size: 0.75rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--rojo-oscuro), var(--negro));
    text-align: center;
}

.newsletter-content h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--blanco);
}

.newsletter-content p {
    color: var(--gris-claro);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 0 16px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
    padding: 0 16px;
}

.newsletter-form input {
    padding: 12px 18px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--blanco);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-form input:focus {
    border-color: var(--naranja);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--rojo), var(--naranja));
    border: none;
    border-radius: 30px;
    color: var(--blanco);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-form button:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(204, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--negro);
    padding: 50px 0 20px;
    border-top: 3px solid rgba(204, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* COLUMNA 1: BRAND */
.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-img {
    height: 38px;
}

.footer-brand .logo-title {
    color: var(--blanco);
    font-size: 1.2rem;
}

.footer-brand .logo-subtitle {
    color: var(--gris-claro);
    font-size: 0.6rem;
}

.footer-brand p {
    color: var(--gris-claro);
    font-size: 0.85rem;
    max-width: 280px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gris-claro);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--rojo);
    color: var(--blanco);
    transform: translateY(-3px);
}

/* COLUMNAS 2 Y 3: LINKS */
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--blanco);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--rojo), var(--naranja));
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 7px;
}

.footer-links ul li a {
    color: var(--gris-claro);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links ul li a::before {
    content: '›';
    color: var(--naranja);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--naranja);
    transform: translateX(4px);
}

.footer-links ul li a:hover::before {
    transform: translateX(3px);
}

/* COLUMNA 4: CONTACTO */
.footer-contact p {
    color: var(--gris-claro);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-contact p:hover {
    color: var(--blanco);
}

.footer-contact i {
    color: var(--naranja);
    width: 18px;
    font-size: 0.9rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact a[href*="wa.me"]:hover {
    color: var(--whatsapp) !important;
}

/* FOOTER BOTTOM */
.footer-bottom {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gris);
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: var(--gris);
    transition: color 0.3s ease;
    font-size: 0.75rem;
}

.footer-bottom-links a:hover {
    color: var(--naranja);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 481px) {
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    
    .tour-footer {
        flex-direction: row;
        align-items: center;
    }
    
    .btn-reservar {
        width: auto;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form button {
        width: auto;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .image-wrapper img {
        height: 350px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
        gap: 30px;
    }
    
    .logo-title {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}

@media (min-width: 1025px) {
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
    }
    
    .btn-reservar {
        display: none !important;
    }
    
    .btn-reservar-mobile {
        display: inline-flex;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (min-width: 993px) {
    .nav-menu {
        display: flex !important;
    }
    
    .btn-reservar {
        display: inline-flex !important;
    }
    
    .btn-reservar-mobile {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
}

/* ===== WHATSAPP FLOAT RESPONSIVE ===== */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 35px 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul li a {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--blanco-humo);
}

::-webkit-scrollbar-thumb {
    background: var(--rojo);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--naranja);
}