/* Gordinhas Assumidas - Responsive Styles */

/* Tablet */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .site-header {
        padding: 1.5rem 0;
    }

    .logo h1 {
        font-size: 2.5rem;
    }

    .logo .tagline {
        font-size: 1rem;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .main-navigation a {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }

    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-image .image-placeholder {
        height: 250px;
        font-size: 4rem;
    }

    .main-content {
        padding: 2rem 0;
    }

    .content-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .content-section h2 {
        font-size: 2.2rem;
    }

    .content-section h3 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem 0;
    }

    .content-section h3::before {
        left: -40px;
        font-size: 1.3rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .post-content {
        padding: 1.5rem;
    }

    .community-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .community-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }

    .logo .tagline {
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section h3 {
        font-size: 1.4rem;
    }

    .content-section h3::before {
        left: -35px;
        font-size: 1.2rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .post-content h3 {
        font-size: 1.4rem;
    }

    .community-intro h3 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-section h4 {
        font-size: 1.3rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .content-section h3::before {
        display: none;
    }

    .hero-image .image-placeholder {
        height: 200px;
        font-size: 3rem;
    }

    .post-image {
        height: 150px;
    }

    .post-image .image-placeholder {
        font-size: 2.5rem;
    }

    .whatsapp-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.7rem;
    }
}

/* High-resolution displays */
@media (min-width: 1200px) {
    .hero h2 {
        font-size: 5.5rem;
    }

    .hero p {
        font-size: 1.6rem;
    }

    .content-section h2 {
        font-size: 3.5rem;
    }

    .content-section h3 {
        font-size: 2.5rem;
    }

    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .community-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Print styles */
@media print {
    .site-header,
    .main-navigation,
    .cta-button,
    .join-button,
    .whatsapp-button {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .content-section {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
    }

    .post-card {
        break-inside: avoid;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    .community-section {
        background: white !important;
        color: black !important;
    }

    .footer-section a {
        color: black !important;
        text-decoration: underline !important;
    }
}



