/* =========================================
   1. VARIABLES & RESET
========================================== */
:root {
    /* Paleta de Colores */
    --primary-color: #0056b3;      /* Azul Profundo */
    --primary-dark: #003d80;
    --accent-color: #00c4cc;       /* Turquesa/Cian */
    --secondary-color: #f4f7f6;    /* Gris Muy Claro */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --bg-dark: #111827;
    
    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, rgba(0,86,179,0.9) 0%, rgba(0,196,204,0.8) 100%);
    --gradient-card: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);

    /* Tipografía */
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Espaciado y Diseño */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Clases de Utilidad */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.text-center { text-align: center; }

.no-scroll { overflow: hidden; }

/* Títulos y Textos Globales */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

.section-header {
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,86,179,0.3);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.8rem; /* Efecto de flecha moviéndose */
}

/* =========================================
   2. HEADER & NAV
========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('img/header-bg.jpg') center/cover no-repeat;
    transition: 0.4s ease;
    padding: 1rem 0;
}

/* Header Scrolled State */
.header.scrolled {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('img/header-bg.jpg') center/cover no-repeat;
    box-shadow: var(--shadow-sm);
    padding: 0.7rem 0;
}

.header.scrolled .logo { color: var(--white); }
.header.scrolled .nav-link { color: var(--white); }
.header.scrolled .bar { background-color: var(--white); }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span { color: var(--accent-color); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

/* =========================================
   3. HERO SECTION
========================================== */
.hero {
    height: 100vh;
    width: 100%;
    background: url('https://media.staticontent.com/media/pictures/dc67e06e-64f5-4c9e-8a36-b95e127f7bb3/1100x900') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

/* Buscador Simulado */
.search-bar-container {
    background: var(--white);
    padding: 1rem;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    max-width: 900px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border-right: 1px solid #eee;
    gap: 1rem;
    color: var(--text-light);
}

.search-item:last-of-type { border-right: none; }

.search-item i { color: var(--primary-color); font-size: 1.1rem; }

.search-item input, .search-item select {
    border: none;
    width: 100%;
    outline: none;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
}

.btn-search {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover { background: var(--primary-dark); }

/* =========================================
   4. DESTINOS (Cards)
========================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.dest-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.dest-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.dest-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-image img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--white);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.dest-content {
    padding: 1.5rem;
}

.dest-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.rating i { color: #ffc107; }

.dest-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.dest-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================
   5. OFERTAS
========================================== */
.offers-bg {
    background-color: var(--secondary-color);
}

.offers-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

/* Oferta Horizontal */
.offer-banner {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.horizontal {
    display: flex;
    background: var(--primary-color);
    color: var(--white);
}

.horizontal .offer-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horizontal .offer-img-wrapper {
    flex: 1;
    position: relative;
}

.horizontal img {
    height: 100%;
    width: 100%;
}

.offers-grid-mini {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
}

/* Oferta Vertical */
.vertical {
    background: var(--white);
    display: flex;
}

.vertical .offer-img-wrapper {
    width: 40%;
}

.vertical img { height: 100%; }

.vertical .offer-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}

.discount-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 0.8rem;
}

.offer-pricing {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.new-price {
    font-weight: 700;
    color: var(--accent-color); /* En fondo oscuro */
}

.vertical .new-price { color: var(--primary-color); }

/* =========================================
   6. PAQUETES (Travel Boxes)
========================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-box {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--white);
}

.package-box:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.package-img {
    position: relative;
    height: 220px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    overflow: hidden;
}

.package-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.btn-icon {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

.package-body {
    padding: 1.5rem;
}

.package-icons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.package-icons li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.package-footer .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.link-details {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: underline;
}

/* =========================================
   DESTINOS PAGE STYLES
========================================== */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://image-tc.galaxy.tf/wijpeg-7cvxjtbwe2bpaebl9eau49wku/cozumel-result.jpg?width=2500') no-repeat center center/cover;
    padding: 6rem 0;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.destinations-page {
    background-color: #fdfdfd;
}

.destinations-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.showcase-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.showcase-img {
    height: 400px;
    position: relative;
}

.showcase-img img {
    width: 100%;
    height: 100%;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--white);
}

.showcase-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.showcase-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.showcase-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.showcase-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.feature-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.showcase-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.showcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.showcase-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.showcase-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* =========================================
   7. TESTIMONIOS (Carousel Custom)
========================================== */
.testimonials {
    background-color: #f9fafb;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0; /* Espacio para sombras */
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.stars i { color: #ffc107; font-size: 0.8rem; }

.slider-btn {
    background: var(--white);
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    justify-items: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.show { opacity: 1; pointer-events: auto; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: min(900px, 90%);
    overflow: hidden;
}

.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.modal-image { height: 100%; }

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.modal-price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-body { grid-template-columns: 1fr; }
    .modal-image { height: 220px; }
}

/* =========================================
   8. CONTACTO
========================================== */
.contact {
    background: var(--bg-dark);
    color: var(--white);
    padding-bottom: 8rem; /* Para dar espacio al footer overlap si se quisiera */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.info-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.info-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.info-item h4 { color: var(--white); margin-bottom: 0.3rem; font-size: 1.1rem; }
.info-item p { margin: 0; font-size: 0.95rem; }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Formulario */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.error-msg {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none; /* Oculto por defecto */
}

.input-group.error input { border-color: #dc3545; }
.input-group.error .error-msg { display: block; }

.btn-block { width: 100%; }

/* =========================================
   9. FOOTER
========================================== */
.footer {
    background: #0b101a;
    color: #a0a0a0;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 4px 0 0 4px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.newsletter-form button {
    padding: 0 1.2rem;
    border: none;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* =========================================
   10. RESPONSIVE DESIGN
========================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .offers-container { grid-template-columns: 1fr; }
    .horizontal { flex-direction: column-reverse; }
    .horizontal img { height: 300px; }
    .offers-grid-mini { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; z-index: 1001; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        height: 100vh;
        justify-content: center;
        transition: 0.3s;
        z-index: 1000;
    }

    .nav-menu.active { left: 0; }
    .nav-list { flex-direction: column; align-items: center; margin-bottom: 2rem; }
    
    .hero-title { font-size: 2.5rem; }
    .search-form { flex-direction: column; width: 100%; }
    .search-item { border-right: none; border-bottom: 1px solid #eee; padding: 1rem; width: 100%; }
    .btn-search { width: 100%; margin-top: 1rem; }

    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    .offers-grid-mini { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 1.5rem; }
    .horizontal .offer-content { padding: 1.5rem; }
}

/* =========================================
   11. ANIMACIONES SCROLL
========================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
