/* ==========================================================================
   ABELHA GOURMET — responsive.css
   Media queries: Desktop > Notebook > Tablet > Celular
   ========================================================================== */

/* ----- NOTEBOOK / TELAS MÉDIAS (max 1200px) ----- */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.4rem; }
    .hero-title-script { font-size: 4.4rem; }
    .galeria-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----- TABLET (max 992px) ----- */
@media (max-width: 992px) {
    :root { --espaco-secao: 70px; }

    .nav-links,
    .nav-cta { display: none; }

    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--cinza-escuro);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 26px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        display: flex;
    }

    .nav-links .nav-cta {
        display: inline-flex;
        margin-top: 10px;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sobre-images { margin-top: 20px; }

    .info-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .depoimento-card { min-width: calc(50% - 30px); }
}

/* ----- TABLET PEQUENO / CELULAR GRANDE (max 768px) ----- */
@media (max-width: 768px) {
    .topbar-container { gap: 18px; justify-content: flex-start; overflow-x: auto; }
    .topbar-item span { white-space: nowrap; }
    .topbar-item { font-size: 0.72rem; }

    .hero { min-height: 100vh; text-align: center; }
    .hero-title { font-size: 2.5rem; letter-spacing: 3px; }
    .hero-title-script { font-size: 3.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }

    .section-title { font-size: 2.2rem; }

    .galeria-grid { grid-template-columns: repeat(2, 1fr); }

    .info-grid { grid-template-columns: 1fr 1fr; }

    .depoimento-card { min-width: calc(100% - 30px); }

    .cta-container { flex-direction: column; text-align: center; }
    .cta-arrow { transform: rotate(90deg); }

    .footer-grid { grid-template-columns: 1fr; gap: 45px; }

    .whatsapp-float, .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
    }

    .whatsapp-float { left: 20px; }
    .back-to-top { right: 20px; }
}

/* ----- CELULAR (max 480px) ----- */
@media (max-width: 480px) {
    .container { width: 92%; }

    .logo-title { font-size: 0.9rem; }
    .logo-subtitle { font-size: 0.55rem; }
    .logo-icon { font-size: 1.5rem; }

    .hero-title { font-size: 2rem; }
    .hero-title-script { font-size: 2.6rem; }
    .bee-icon { font-size: 1.3rem; }
    .hero-badge { font-size: 0.7rem; padding: 6px 16px; }

    .sobre-features { grid-template-columns: 1fr; }

    .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    .info-grid { grid-template-columns: 1fr; }

    .footer-photos { grid-template-columns: repeat(4, 1fr); }

    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
