/* ==========================================================================
   NAVBAR & FOOTER
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img { height: 50px; object-fit: contain; }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover:not(.btn-primary) { color: var(--primary-color); }

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.pulse { animation: pulse-glow 2s infinite; }

/* ==========================================================================
   HERO SECTION (Video Background)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 70px;
}

.video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9));
}

.hero-content h1 { font-size: var(--text-xl); margin: 1rem 0; line-height: 1.1; }
.hero-content p { font-size: var(--text-lg); margin-bottom: 2.5rem; max-width: 800px; margin-inline: auto; opacity: 0.9; }

.badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--text-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   BENTO GRID (Serviços)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 1.5rem;
}

.bento-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.bento-card:hover { transform: translateY(-5px); }
.bento-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.bento-card h3 { font-size: var(--text-lg); margin-bottom: 0.5rem; }

.video-card {
    grid-column: span 3;
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.bento-video {
    width: 100%; height: 100%; object-fit: cover;
}

.bento-video-text {
    position: absolute;
    bottom: 2rem; left: 2rem;
    color: white;
    font-size: var(--text-lg);
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
    .bento-grid { grid-template-columns: 1fr; }
    .video-card { grid-column: 1; }
}

/* ==========================================================================
   GALERIA DE ENTREGAS
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
}

.gallery-img:hover { transform: scale(1.02); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   EQUIPE & GLASSMORPHISM
   ========================================================================== */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-photo { flex: 1; }
.main-team-img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }

.contact-info { flex: 1; }
.contact-info p { margin-bottom: 2rem; color: #cbd5e1; }

.contact-buttons { display: flex; flex-direction: column; gap: 1rem; }

.btn-whatsapp {
    display: flex; align-items: center; gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: background 0.3s;
}

.btn-whatsapp:hover { background: rgba(255,255,255,0.2); }
.btn-whatsapp .avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }

@media (max-width: 900px) {
    .glass-panel { flex-direction: column; }
}

/* ==========================================================================
   MAPA & FOOTER
   ========================================================================== */
.map-container { border-radius: var(--radius-lg); overflow: hidden; margin-top: 2rem; }
.address-text { text-align: center; font-size: var(--text-lg); font-weight: 600; }

.footer { padding: 3rem 0; text-align: center; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.logo-img-footer { height: 60px; object-fit: contain; }
.social-btn {
    display: inline-block; padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color); text-decoration: none;
    border-radius: 50px; font-weight: 600;
    transition: all 0.3s;
}
.social-btn:hover { background: var(--primary-color); color: var(--white); }

/* ==========================================================================
   AJUSTE DE RESPONSIVIDADE MOBILE (NAVBAR)
   ========================================================================== */
@media (max-width: 900px) {
    .nav-content {
        justify-content: space-between;
    }
    
    /* Oculta os links de texto no celular para limpar o visual */
    .nav-links a:not(.btn-primary) {
        display: none; 
    }
    
    /* Ajusta o botão principal e a logo para caberem perfeitamente */
    .nav-links .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 40px; 
    }
}