/* ========== TERRESTRES.CSS - VERSIÓN COMPLETAMENTE RESPONSIVA ========== */

:root {
    --primary-blue: #004aad;
    --secondary-blue: #5170ff;
    --accent-orange: #ff9f1c;
    --accent-orange-dark: #e68a00;
    --whatsapp-green: #25D366;
    --bg-light: #f8f9fa;
    --text-dark: #333;
    --text-gray: #666;
    --text-light-gray: #888;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.06);
    --shadow-orange: 0 4px 15px rgba(255, 159, 28, 0.3);
    --shadow-orange-hover: 0 6px 20px rgba(255, 159, 28, 0.5);
    --shadow-wa: 0 10px 20px rgba(37, 211, 102, 0.3);
    --shadow-blue: 0 4px 20px rgba(0, 74, 173, 0.1);
    --shadow-blue-hover: 0 5px 15px rgba(0, 74, 173, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 74, 173, 0.08);
    --radius-sm: 15px;
    --radius-md: 20px;
    --radius-lg: 25px;
    --radius-xl: 30px;
    --radius-full: 50px;
    --transition-default: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== NAVBAR RESPONSIVE CON HAMBURGUESA ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--accent-orange));
    border-image-slice: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
}

.main-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-bounce);
}

.logo-text {
    font-weight: 800;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    letter-spacing: -0.5px;
}

.navis { color: var(--primary-blue); }
.mx { color: var(--secondary-blue); }

/* Botón hamburguesa - para móviles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: var(--transition-default);
    border-radius: 3px;
}

/* Animación del botón hamburguesa cuando está activo */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    transition: var(--transition-default);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    transition: var(--transition-default);
    white-space: nowrap;
}

.nav-links a:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-hover);
}

.nav-links a.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    box-shadow: var(--shadow-blue-hover);
}

/* ========== PAGE TITLE ========== */
.page-title {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease;
    word-break: break-word;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8%;
}

.category-subtitle {
    color: var(--primary-blue);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-orange);
    padding-left: 20px;
    word-break: break-word;
}

/* ========== GRID DE ACTIVIDADES - CORREGIDO ========== */
/* ✅ AHORA USA AUTO-FIT PARA EVITAR ESPACIOS VACÍOS */
.actividades-grid-marinas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0 60px 0;
}

/* Para tablets y móviles - 1 columna */
@media (max-width: 900px) {
    .actividades-grid-marinas {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ========== TARJETA HORIZONTAL ========== */
.card-horizontal-marinas {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-xl);
    min-height: auto;
    overflow: hidden;
    border: 1px solid rgba(0, 74, 173, 0.1);
    box-shadow: var(--shadow-card);
    transition: var(--transition-default);
    position: relative;
}

.card-horizontal-marinas:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 74, 173, 0.2);
}

/* ========== IMAGEN ========== */
.card-image-placeholder {
    width: 40%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,74,173,0.3), rgba(255,159,28,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-horizontal-marinas:hover .card-image-placeholder::before {
    opacity: 1;
}

/* ========== CONTENIDO ========== */
.card-content-marinas {
    width: 60%;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
}

.text-top h3 {
    color: var(--primary-blue);
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.text-top h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.card-horizontal-marinas:hover .text-top h3::after {
    width: 60px;
}

.short-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========== PRECIO ========== */
.price-tag {
    background: rgba(0, 74, 173, 0.05);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0 10px 0;
    width: fit-content;
    flex-wrap: wrap;
}

.price-label {
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price-amount {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.3rem;
}

.price-note {
    font-size: 0.75rem;
    color: var(--text-light-gray);
}

/* ========== BOTONES ========== */
.card-buttons-marinas {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card-buttons-marinas .btn-filled {
    flex: 1;
    padding: 14px 8px;
    font-size: 0.9rem;
    text-align: center;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-default);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    border: 2px solid transparent;
    color: var(--white);
    box-shadow: var(--shadow-orange);
    min-width: 180px;
}

.card-buttons-marinas .btn-filled:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-orange-hover);
}

/* ========== ESTILOS PARA COMBOS ========== */
.combo-full-width {
    max-width: 1400px;
    margin: 0 auto 40px;
}

.combo-card-5 {
    max-width: 100% !important;
    display: flex;
    flex-direction: row;
    min-height: auto;
}

.combo-image-5 {
    flex: 1;
    min-height: 400px;
}

.combo-content-5 {
    flex: 1.2;
}

/* Para el grid de actividades dentro del combo */
.combo-actividades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: var(--radius-md);
}

/* En móviles, 1 columna */
@media (max-width: 768px) {
    .combo-actividades-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
}

.actividad-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-default);
    border: 1px solid rgba(0, 74, 173, 0.1);
}

.actividad-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.actividad-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.actividad-header i {
    color: var(--accent-orange);
    font-size: 1rem;
}

.actividad-nombre {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.actividad-descripcion {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-left: 24px;
}

/* Para los combos de 2 y 3 actividades */
.combo-opciones {
    background: #f0f7ff;
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.actividad-item-combo {
    background: white;
    border-radius: var(--radius-md);
    padding: 15px;
    margin: 15px 0;
}

.actividad-item-combo .actividad-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.actividad-item-combo .actividad-descripcion {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 8px;
    line-height: 1.5;
}

.opcion-icono {
    font-size: 2rem;
}

.opcion-texto {
    font-size: 1.1rem;
}

.opcion-separador {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-orange);
    margin: 15px 0;
}

.toggle-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.toggle-opciones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.opcion-badge {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.opcion-o {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-orange);
    background: white;
    padding: 8px 15px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.opcion-con-descripcion {
    text-align: center;
}

.opcion-descripcion {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 8px;
    max-width: 200px;
}

.combo-price {
    background: linear-gradient(135deg, #fff9e6, #fff3d1);
    border-left: 4px solid var(--accent-orange);
    margin-top: 15px;
}

.combo-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-blue), var(--accent-orange)) border-box;
}

.combo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 74, 173, 0.25);
}

/* ========== MODAL - ESTILOS COMPLETOS Y RESPONSIVOS ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: sticky;
    top: 10px;
    right: 20px;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-gray);
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 10px;
    transition: var(--transition-default);
    z-index: 10;
}

.close-modal:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

#modal-body {
    padding: 30px;
    clear: both;
}

.modal-body-content h2 {
    color: var(--primary-blue);
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 10px;
}

.modal-price {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: white;
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.modal-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.modal-body-content h3 {
    color: var(--primary-blue);
    margin: 20px 0 15px 0;
    font-size: 1.2rem;
}

.info-box {
    background: #f0f7ff;
    padding: 15px;
    border-radius: var(--radius-md);
    margin: 15px 0;
    border-left: 4px solid var(--primary-blue);
}

.info-box-highlight {
    background: #fff9e6;
    padding: 15px;
    border-radius: var(--radius-md);
    margin: 15px 0;
    border-left: 4px solid var(--accent-orange);
}

.vertical-list {
    list-style: none;
    padding: 0;
}

.vertical-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vertical-list li i {
    width: 25px;
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 15px 0;
}

.option-card {
    background: white;
    border: 1px solid rgba(0,74,173,0.2);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
    transition: var(--transition-default);
}

.option-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.option-text span {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

.modal-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition-default);
    width: 100%;
    font-size: 1.1rem;
}

.modal-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-wa);
}

/* ========== FOOTER ========== */
.main-footer {
    background: linear-gradient(135deg, var(--white) 0%, #f0f5ff 100%);
    padding: 60px 8% 40px;
    border-top: 1px solid rgba(0, 74, 173, 0.1);
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

.footer-brand .main-logo {
    height: 60px;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-social-wrap {
    text-align: center;
    background: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.footer-social-wrap p {
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.social-row {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-row a {
    font-size: 1.8rem;
    transition: var(--transition-bounce);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    text-decoration: none;
    color: var(--text-dark);
}

.social-row a:hover {
    transform: translateY(-5px) scale(1.1);
}

.icon-fb:hover { background: #1877F2; color: white; }
.icon-ig:hover { background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5); color: white; }
.icon-tk:hover { background: #000000; color: white; }

.footer-cta .btn-wa-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 800;
    box-shadow: var(--shadow-wa);
    transition: var(--transition-default);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-cta .btn-wa-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: var(--shadow-wa);
    transition: var(--transition-bounce);
    z-index: 1000;
    animation: pulse 2s infinite ease-in-out;
    border: 3px solid var(--white);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    animation: none;
}

/* ========== ANIMACIONES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========== MEDIA QUERIES MEJORADAS ========== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 5%;
    }
    
    .combo-card-5 {
        flex-direction: column;
        min-height: auto;
    }
    
    .combo-image-5 {
        min-height: 250px;
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Móviles (menos de 768px) */
@media (max-width: 768px) {
    /* Menú hamburguesa */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 10px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        white-space: normal;
        text-align: center;
        padding: 12px;
    }
    
    .navbar {
        padding: 10px 5%;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .main-logo {
        height: 45px;
    }
    
    .page-title {
        padding: 40px 20px;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .category-subtitle {
        font-size: 1.3rem;
        padding-left: 15px;
    }
    
    .card-horizontal-marinas {
        flex-direction: column;
    }
    
    .card-image-placeholder {
        width: 100%;
        height: 200px;
        min-height: 200px;
    }
    
    .card-content-marinas {
        width: 100%;
        padding: 20px;
    }
    
    .text-top h3 {
        font-size: 1.3rem;
    }
    
    .short-desc {
        font-size: 0.9rem;
    }
    
    .combo-opciones {
        padding: 15px;
    }
    
    .toggle-opciones {
        flex-direction: column;
        gap: 12px;
    }
    
    .opcion-o {
        order: 2;
    }
    
    .card-buttons-marinas .btn-filled {
        min-width: 100%;
        font-size: 0.85rem;
        padding: 12px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-social-wrap {
        width: 100%;
        padding: 20px;
    }
    
    .social-row a {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .footer-cta .btn-wa-highlight {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    /* Modal responsive */
    .modal-content {
        width: 95%;
        margin: 15% auto;
        max-height: 80vh;
    }
    
    #modal-body {
        padding: 20px;
    }
    
    .modal-body-content h2 {
        font-size: 1.3rem;
    }
    
    .modal-price {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .vertical-list li {
        font-size: 0.85rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        padding: 12px;
    }
    
    .modal-wa-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Móviles pequeños (menos de 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 4%;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .category-subtitle {
        font-size: 1.1rem;
    }
    
    .text-top h3 {
        font-size: 1.2rem;
    }
    
    .actividad-nombre {
        font-size: 0.9rem;
    }
    
    .actividad-descripcion {
        font-size: 0.75rem;
        margin-left: 0;
    }
    
    .actividad-header {
        flex-wrap: wrap;
    }
    
    .opcion-badge {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .opcion-icono {
        font-size: 1.5rem;
    }
    
    .opcion-texto {
        font-size: 0.9rem;
    }
    
    .price-amount {
        font-size: 1.1rem;
    }
    
    .price-tag {
        padding: 8px 15px;
    }
    
    .info-box, .info-box-highlight {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .vertical-list li i {
        width: 20px;
        font-size: 0.9rem;
    }
}

/* Pantallas muy grandes (más de 1400px) */
@media (min-width: 1400px) {
    .container {
        padding: 0 5%;
    }
    
    .actividades-grid-marinas {
        gap: 40px;
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .navbar {
        position: static;
    }
    
    .nav-links {
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .page-title {
        padding: 20px;
    }
    
    .card-image-placeholder {
        height: 180px;
    }
    
    .modal-content {
        margin: 5% auto;
        max-height: 90vh;
    }
}