/* Mobile Responsive Styles */

@media (max-width: 768px) {
    /* Navbar */
    #navbar {
        padding: 10px 0;
        height: auto;
    }

    #navbar-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
    }

    .logo img {
        height: 60px;
    }

    #menu-toggle {
        display: block;
        z-index: 1001;
    }

    #navbar-items {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: none; /* Managed by JS class toggle */
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    #navbar-items.active {
        display: flex;
        animation: slideDown 0.4s ease-out;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    #navbar-items li {
        margin: 0;
        width: 100%;
    }

    #navbar-items li a {
        padding: 15px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 1.1rem;
    }

    /* Showcase */
    #showcase-container h2 {
        font-size: 2.2rem;
    }

    #showcase-container p {
        font-size: 1rem;
    }

    /* General Grids - Force 1 column */
    #destaques-container,
    #features-container,
    #testimonials-container,
    #gallery-container,
    #contact-wrapper {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    #contact-wrapper {
        gap: 30px;
    }

    #contact-info {
        text-align: center;
        align-items: center;
    }

    .info-item {
        justify-content: center;
    }

    #contact-form .btn {
        width: 100%;
    }

    .headline {
        font-size: 1.8rem;
    }
}
