/* Apenas Impressões Literárias - Responsive Styles */

/* Tablet */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        order: -1;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .main-navigation ul {
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .site-header {
        padding: 1.5rem 0;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .logo .tagline {
        font-size: 1rem;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .main-navigation a {
        padding: 0.5rem;
        text-align: center;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 1.5rem;
    }

    .book-stack {
        font-size: 3rem;
    }

    .main-content {
        padding: 2rem 0;
    }

    .main-area {
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
    }

    .sidebar {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }

    .resenha-card, .news-item {
        padding: 1rem;
    }

    .sidebar-widget h3 {
        font-size: 1.2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .main-area, .sidebar {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .book-stack {
        font-size: 2.5rem;
    }

    .whatsapp-button {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}

/* High-resolution displays */
@media (min-width: 1200px) {
    .hero h2 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .content-section h2 {
        font-size: 2.5rem;
    }

    .content-section h3 {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    .site-header,
    .main-navigation,
    .whatsapp-button,
    .cta-button {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .main-area,
    .sidebar {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .content-section {
        break-inside: avoid;
    }

    .resenha-card,
    .news-item {
        break-inside: avoid;
        border: 1px solid #ccc !important;
    }
}



