/*-----------------------------------------------
# My Eco Lodge - Estilos Responsivos
# Autor: My Eco Lodge
# Versão: 1.0
------------------------------------------------*/

/* Grandes desktops (até 1400px) */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktops (até 1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 5rem;
    }
    
    .hero-content .tagline {
        font-size: 2.2rem;
    }
    
    /* Ajustes gerais */
    h1 {
        font-size: 4.5rem;
    }
    
    h2 {
        font-size: 3.2rem;
    }
}

/* Tablets em modo landscape (até 992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 4.5rem;
    }
    
    .hero-content .tagline {
        font-size: 2rem;
    }
    
    /* Intro Section */
    .intro .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .intro-text {
        padding-right: 0;
        order: 2;
    }
    
    .intro-image {
        order: 1;
    }
    
    /* Highlights Section */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Gallery Preview */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Location Section */
    .location .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .location-info {
        order: 2;
    }
    
    .location-map {
        order: 1;
    }
    
    /* Blog Preview */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md) var(--spacing-lg);
    }
}

/* Tablets em modo portrait (até 768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    /* Header e Navegação */
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 82px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-md) 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-fast);
        z-index: 1000;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
    }
    
    .nav-list a {
        display: block;
        padding: var(--spacing-sm) 0;
    }
    
    .nav-list a::after {
        display: none;
    }
    
    /* Hero Section */
    .hero-video {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content .tagline {
        font-size: 1.8rem;
    }
    
    /* Ajustes gerais */
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    h3 {
        font-size: 2.2rem;
    }
    
    section {
        padding: var(--spacing-md) 0;
    }
    
    /* Intro Section */
    .intro {
        padding: var(--spacing-lg) 0;
    }
    
    /* Blog Preview */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Roda */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-logo, .footer-links, .footer-contact, .footer-social {
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Smartphones (até 576px) */
@media (max-width: 576px) {
    /* Hero Section */
    .hero-video {
        height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 3.6rem;
    }
    
    .hero-content .tagline {
        font-size: 1.6rem;
    }
    
    .hero-content .btn-primary {
        font-size: 1.6rem;
        padding: 1.2rem 3rem;
    }
    
    /* Ajustes gerais */
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    /* Highlights Section */
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery Preview */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: auto;
        grid-row: auto;
    }
    
    /* CTA Section */
    .cta h2 {
        font-size: 3rem;
    }
    
    .cta p {
        font-size: 1.8rem;
    }
    
    /* Botões */
    .btn-primary, .btn-secondary, .btn-reservar {
        width: 100%;
        text-align: center;
    }
}

/* Smartphones pequenos (até 380px) */
@media (max-width: 380px) {
    /* Hero Section */
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-content .tagline {
        font-size: 1.4rem;
    }
    
    /* Ajustes gerais */
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    h3 {
        font-size: 2rem;
    }
}