/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
======================================== */

/* Tablets y dispositivos medianos (768px y menos) */
@media (max-width: 768px) {
    
    /* Header responsive */
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .company-info h1 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    /* Navegación responsive */
    .navbar {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--accent-green);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        border-radius: 0 0 10px 10px;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: white !important;
        text-decoration: none;
        transition: background 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .nav-link.active {
        background: var(--primary-green);
        color: var(--golden-yellow) !important;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 2px;
        top: 10px;
        transform: none;
        cursor: pointer;
        gap: 4px;
        padding: 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .hamburger:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }
    
    .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(7px, -6px);
    }
    
        .all-tours-grid {
            grid-template-columns: 1fr !important;
            gap: 20px;
            margin-bottom: 30px;
        }
    body.menu-open .nav-menu {
        display: flex !important;
    }
    
    /* Mejoras para la navegación en tablets */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 999;
    }
    
    /* Hero section responsive */
    .slide {
        height: 60vh;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Slick arrows responsive */
    .slick-prev {
        left: 15px;
    }
    
    .slick-next {
        right: 15px;
    }
    
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .slick-prev:before,
    .slick-next:before {
        font-size: 20px;
    }
    
    /* Secciones responsive */
    .popular-tours,
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Tours grid responsive */
    .tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .tour-card img {
        height: 200px;
    }
    
    .tour-info {
        padding: 20px;
    }
    
    .tour-info h3 {
        font-size: 1.3rem;
    }
    
    /* Features grid responsive */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .feature {
        padding: 25px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    /* Experiencias Amazónicas responsive */
    .amazon-experiences {
        padding: 60px 0;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }
    
    .experience-card,
    .experience-card.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
    
    .experience-overlay {
        opacity: 1;
        background: linear-gradient(45deg, rgba(45, 80, 22, 0.7), rgba(74, 124, 89, 0.5));
    }
    
    .experience-content h3 {
        font-size: 1.4rem;
    }
    
    .experience-content p {
        font-size: 1rem;
    }
    
    /* TripAdvisor responsive */
    .tripadvisor-reviews {
        padding: 60px 0;
    }
    
    .tripadvisor-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .tripadvisor-logo {
        height: 50px;
    }
    
    .rating-info {
        text-align: center;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    /* Ubicación responsive */
    .location-section {
        padding: 60px 0;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .map-container {
        height: 350px;
        order: -1;
    }
    
    /* Información turística responsive */
    .tourism-info {
        padding: 60px 0;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .info-card {
        padding: 25px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
    
    .container {
        padding: 0 15px;
    }
    
    /* Header móvil */
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .company-info h1 {
        font-size: 1.5rem;
    }
    
    .slogan {
        font-size: 0.8rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-media {
        order: 1;
    }
    
    .phone {
        order: 2;
        font-size: 0.9rem;
    }
    
    .language-selector {
        order: 3;
    }
    
    .search-box {
        order: 4;
        width: 100%;
        max-width: 250px;
    }
    
    .search-box input {
        width: 180px;
    }
    
    .cart {
        order: 5;
    }
    
    /* Hero móvil */
    .slide {
        height: 50vh;
    }
    
    .slide-content h2 {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        width: auto;
        max-width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }
    }
    
    /* Tours móvil */
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-card {
        margin: 0 10px;
    }
    
    .tour-details {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    /* Features móvil */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    /* Secciones móvil */
    .popular-tours,
    .why-choose-us {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Experiencias móvil */
    .experiences-grid {
        margin: 0 -10px;
    }
    
    .experience-card {
        margin: 0 10px;
        height: 220px;
    }
    
    .experience-content h3 {
        font-size: 1.2rem;
    }
    
    .experience-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .btn-outline {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    /* TripAdvisor móvil */
    .tripadvisor-logo {
        height: 40px;
    }
    
    .stars {
        font-size: 1.2rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 20px;
        margin: 0 5px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .review-header {
        gap: 10px;
    }
    
    .btn-tripadvisor {
        padding: 12px 25px;
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .btn-tripadvisor img {
        height: 20px;
    }
    
    /* Ubicación móvil */
    .location-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .location-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .location-details h3 {
        font-size: 1.1rem;
    }
    
    .btn-contact {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-button {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    /* Información turística móvil */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
        margin: 0 5px;
    }
    
    /* Tours section móvil */
    .all-tours-section {
        padding: 40px 0;
    }
    
    .tour-filters {
        /* flex-direction: column; */
        align-items: center;
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
        width: 200px;
        text-align: center;
    }
    
    .all-tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .tour-item {
        margin: 0 10px;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tour-content {
        padding: 18px;
    }
    
    .tour-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .tour-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .tour-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .tour-features {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .tour-features span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .tour-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .price-savings {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .btn-book-tour {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .tour-overlay {
        opacity: 1;
        background: linear-gradient(45deg, rgba(45, 80, 22, 0.4), rgba(74, 124, 89, 0.3));
    }
    
    .tour-actions {
        position: absolute;
        bottom: 15px;
        right: 15px;
        display: flex;
        gap: 12px;
        z-index: 2;
    }
    
    .tour-actions button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-load-more {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .load-more-section {
        margin-top: 30px;
    }
    
    /* Modales responsivos */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 15px 20px 10px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 0 20px 15px;
    }
    
    .info-section {
        padding: 15px;
    }
    
    .info-section h3 {
        font-size: 1rem;
    }
    
    .day {
        padding: 15px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .modal-price {
        justify-content: center;
    }
    
    .btn-book-modal {
        width: 100%;
    }
    
    /* Botones de tours en móvil */
    .tour-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-details,
    .tour-buttons .btn-book-tour {
        flex: none;
    }
    
    /* Footer responsivo */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .terms-link,
    .privacy-link {
        justify-content: center;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Tours page móvil */
    .tours-hero {
        height: 40vh;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    
    .stat {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .info-cards-grid {
        gap: 20px;
    }
    
    .info-card-tour {
        padding: 30px 20px;
    }
    
    .info-card-tour .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .info-card-tour h3 {
        font-size: 1.3rem;
    }
    
    .tours-info-section {
        padding: 40px 0;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    /* Tours section responsive */
    .all-tours-section {
        padding: 60px 0;
    }
    
    .tour-filters {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .all-tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .tour-image {
        height: 220px;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .tour-content h3 {
        font-size: 1.3rem;
    }
    
    .tour-content p {
        font-size: 0.9rem;
    }
    
    .tour-features {
        gap: 10px;
    }
    
    .tour-features span {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .price-current {
        font-size: 1.6rem;
    }
    
    .btn-book-tour {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .tour-actions {
        gap: 12px;
    }
    
    .tour-actions button {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Tours page responsive */
    .tours-hero {
        height: 50vh;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tours-info-section {
        padding: 50px 0;
    }
    
    /* Footer móvil */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }


/* Móviles muy pequeños (360px y menos) */
@media (max-width: 360px) {
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .tours-grid {
        margin: 0 -5px;
    }
    
    .tour-card {
        margin: 0 5px;
    }
    
    .tour-info {
        padding: 15px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
    
    /* Tours muy pequeños */
    .all-tours-grid {
        margin: 0 -5px;
    }
    
    .tour-item {
        margin: 0 5px;
    }
    
    .tour-content {
        padding: 15px;
    }
    
    /* Tours page muy pequeño */
    .tours-hero {
        height: 35vh;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }
    
    .stat {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .tour-content h3 {
        font-size: 1.1rem;
    }
    
    .tour-features span {
        font-size: 0.7rem;
    }
    
    .btn-book-tour {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* Tablets en orientación horizontal (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .slide-content h2 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    /* Tours en tablets */
    .all-tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Pantallas grandes (1200px y más) */
@media (min-width: 1200px) {
    
    .container {
        max-width: 1400px;
    }
    
    .tours-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .slide-content h2 {
        font-size: 4rem;
    }
    
    .slide-content p {
        font-size: 1.4rem;
    }
    
    .section-header h2 {
        font-size: 3.2rem;
    }
    
    /* Tours en pantallas grandes */
    .all-tours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .tour-image {
        height: 280px;
    }
    
    .tour-content {
        padding: 30px;
    }
    
    /* Tours page pantallas grandes */
    .tours-hero {
        height: 70vh;
    }
    
    .hero-text h1 {
        font-size: 4.5rem;
    }
    
    .hero-text p {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    
    .stat {
        padding: 30px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .info-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

/* Orientación landscape en móviles */
@media (max-height: 500px) and (orientation: landscape) {
    
    .slide {
        height: 80vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .btn-primary {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Mejoras de accesibilidad para pantallas táctiles */
@media (hover: none) and (pointer: coarse) {
    
    .nav-link,
    .btn-primary,
    .btn-secondary,
    .social-link,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tour-card:hover {
        transform: none;
    }
    
    .feature:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .social-link:hover,
    .social-links a:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    
    .header,
    .navbar,
    .carousel,
    .footer {
        display: none;
    }
    
    .popular-tours,
    .why-choose-us {
        page-break-inside: avoid;
    }
    
    .tour-card,
    .feature {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-header h2 {
        font-size: 18pt;
        color: black !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    
    :root {
        --primary-green: #000000;
        --secondary-green: #333333;
        --accent-green: #006600;
        --white: #ffffff;
        --dark-gray: #000000;
    }
    
    .slide::before {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .carousel {
        scroll-behavior: auto;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }
    
    .popular-tours {
        background: #2a2a2a;
    }
    
    .tour-card {
        background: #333333;
        color: #e0e0e0;
    }
    
    .tour-info h3 {
        color: var(--light-green);
    }
    
    .tour-info p {
        color: #cccccc;
    }
}


/* =============================================
   RESPONSIVE ESPECÍFICO PARA PÁGINAS NUEVAS
   ============================================= */

/* Tablets y dispositivos medianos (768px y menos) */
@media (max-width: 768px) {
    
    /* Hero sections de páginas internas */
    .page-hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Contacto responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cards {
        gap: 20px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .btn-contact {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    /* FAQ responsive */
    .category-filters {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .faq-category h2 {
        font-size: 1.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .faq-question {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .search-faq input {
        padding: 15px 50px 15px 20px;
        font-size: 1rem;
    }
    
    /* Galería responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .modal-image-container img {
        height: 40vh;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    .modal-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-navigation {
        padding: 0 10px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Nosotros responsive */
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text .section-header h2 {
        font-size: 2rem;
    }
    
    .story-text .section-header p {
        font-size: 1.1rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .mv-card h3 {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .member-photo {
        height: 200px;
    }
    
    .member-info {
        padding: 25px 20px;
    }
    
    .member-info h3 {
        font-size: 1.3rem;
    }
    
    .member-badges {
        justify-content: center;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-card {
        padding: 30px 20px;
    }
    
    .achievement-year {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }
    
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .commitment-text h2 {
        font-size: 2rem;
    }
    
    .program {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .program-icon {
        margin: 0 auto;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: -15px;
        left: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* CTAs responsive */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
        text-align: center;
        padding: 15px 25px;
    }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
    
    /* Hero más compacto */
    .page-hero {
        height: 40vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Contacto en móviles pequeños */
    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .contact-methods {
        gap: 15px;
    }
    
    .method-card {
        padding: 25px 15px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 1.5rem;
    }
    
    /* FAQ en móviles pequeños */
    .faq-category h2 {
        font-size: 1.4rem;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .search-faq input {
        padding: 12px 40px 12px 15px;
        font-size: 0.9rem;
    }
    
    .search-faq button {
        width: 40px;
        height: 40px;
        right: 5px;
    }
    
    .category-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    /* Galería en móviles pequeños */
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-info h3 {
        font-size: 1.2rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .view-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .btn-load-more {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .modal-content {
        max-width: 98%;
        max-height: 98%;
    }
    
    .modal-image-container img {
        height: 30vh;
    }
    
    .modal-info {
        padding: 15px;
    }
    
    .modal-info h3 {
        font-size: 1.3rem;
    }
    
    .modal-info p {
        font-size: 0.9rem;
    }
    
    .close-modal {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
        font-size: 1.2rem;
    }
    
    /* Nosotros en móviles pequeños */
    .story-text .section-header h2 {
        font-size: 1.8rem;
    }
    
    .story-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .mv-card {
        padding: 25px 15px;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
    }
    
    .mv-icon i {
        font-size: 1.5rem;
    }
    
    .mv-card h3 {
        font-size: 1.3rem;
    }
    
    .mv-card p {
        font-size: 0.9rem;
    }
    
    .team-member {
        margin-bottom: 20px;
    }
    
    .member-photo {
        height: 180px;
    }
    
    .member-info {
        padding: 20px 15px;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-info p {
        font-size: 0.9rem;
    }
    
    .member-overlay .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .achievement-card {
        padding: 25px 15px;
    }
    
    .achievement-icon {
        width: 60px;
        height: 60px;
    }
    
    .achievement-icon i {
        font-size: 1.5rem;
    }
    
    .achievement-card h3 {
        font-size: 1.3rem;
    }
    
    .achievement-card p {
        font-size: 0.9rem;
    }
    
    .commitment-text h2 {
        font-size: 1.8rem;
    }
    
    .commitment-text > p {
        font-size: 1rem;
    }
    
    .program {
        padding: 15px;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
    }
    
    .program-icon i {
        font-size: 1.2rem;
    }
    
    .program-content h3 {
        font-size: 1.1rem;
    }
    
    .program-content p {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -10px;
        left: 15px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    /* CTAs en móviles pequeños */
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Ajustes adicionales para pantallas muy pequeñas */
@media (max-width: 360px) {
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 15px 10px;
    }
    
    .contact-form {
        padding: 20px 10px;
    }
    
    .faq-question {
        padding: 12px;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .mv-card,
    .achievement-card,
    .method-card {
        padding: 20px 10px;
    }
    
    .member-info {
        padding: 15px 10px;
    }
    
    .testimonial-card {
        padding: 20px 10px;
    }
    
    .modal-info {
        padding: 12px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* ========================================
   ESTADO RESERVA - RESPONSIVE
======================================== */

@media (max-width: 768px) {
    .estado-reserva-container {
        margin: 100px 20px 40px;
        padding: 20px;
    }
    
    .acciones-reserva {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-accion {
        width: 100%;
        max-width: 300px;
    }
    
    .detalle-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detalle-item span:first-child {
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .codigo-reserva {
        font-size: 20px;
        padding: 10px;
    }
    
    .icono-estado {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .estado-reserva-container {
        margin: 90px 10px 20px;
        padding: 15px;
    }
    
    .detalles-reserva {
        padding: 20px;
    }
    
    .btn-accion {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .loading {
        padding: 40px 15px;
    }
}

/* === RESPONSIVE ESPECÍFICO PARA ESTADO DE RESERVA === */

@media (max-width: 768px) {
    /* Estado de reserva responsive */
    .estado-reserva-container {
        margin: 20px;
        padding: 15px;
    }

    .reserva-info {
        grid-template-columns: 1fr;
    }

    .accion-disponible {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .acciones-generales {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-accion {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .estado-reserva-container {
        margin: 10px;
        padding: 10px;
    }

    .estado-reserva-form {
        padding: 20px;
    }

    .info-section {
        padding: 15px;
    }

    .accion-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .modal-content {
        width: 98%;
        margin: 5% auto;
    }

    .modal-header {
        padding: 15px;
    }

    .modal form {
        padding: 15px;
    }
    
    /* ===============================================
       BOTÓN FLOTANTE DE WHATSAPP - RESPONSIVE
       =============================================== */
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-button i {
        font-size: 28px;
    }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
    
    /* ===============================================
       BOTÓN FLOTANTE DE WHATSAPP - MÓVILES PEQUEÑOS
       =============================================== */
    
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
}
