/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
    top: 0 !important;
    position: static !important;
}

/* BANDEIRAS (FIXO) */
.floating-lang-panel {
    position: fixed;
    bottom: 25px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    border: 2px solid #003087;
    backdrop-filter: blur(5px);
}
.lang-option { cursor: pointer; width: 30px; height: 20px; transition: transform 0.3s; }
.lang-option img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.lang-option:hover { transform: scale(1.3); }

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1100;
    padding: 12px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
}
.main-header.show { transform: translateY(0); opacity: 1; }
.header-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.header-logo { height: 45px; width: auto; }
.main-header nav a { margin-left: 20px; text-decoration: none; color: #003087; font-weight: 700; }

/* HERO */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; transform: translate(-50%, -50%); object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0, 48, 135, 0.65); }
.hero-content { position: relative; z-index: 2; padding: 20px; }
.hero-logo { width: 340px; height: auto; margin-bottom: 20px; filter: drop-shadow(0 8px 25px rgba(0,0,0,0.5)); }

@media (max-width: 768px) {
    .hero-logo { width: 380px !important; max-width: 95vw !important; margin-bottom: 30px !important; }
    .catalog-title { font-size: 1.25rem !important; }
}

.catalog-title { font-size: clamp(1.8rem, 7vw, 3.8rem); font-weight: 900; text-transform: uppercase; font-family: 'Montserrat'; }
.btn-explore { margin-top: 20px; padding: 15px 40px; background: #003087; color: #fff; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; }

/* LOCALIZAÇÃO */
.strategic-location { padding: 80px 20px; }
.location-container { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.location-text { flex: 1; min-width: 320px; }
.location-text h2 { color: #003087; font-size: 2.5rem; margin-bottom: 20px; }
.map-wrapper { flex: 1.2; border-radius: 20px; overflow: hidden; box-shadow: 0 0 40px rgba(0, 48, 135, 0.5); }
.strategic-map { width: 100%; display: block; }

/* SOBRE E HIGHLIGHTS */
.company-intro { padding: 80px 20px; background: #f9fbff; text-align: center; }
.highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1100px; margin: 40px auto; }
.highlight-item { background: white; padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.highlight-item i { font-size: 2.5rem; color: #0066cc; margin-bottom: 15px; }
.highlight-item span { display: block; font-size: 2.2rem; font-weight: 900; color: #003087; }

/* SERVICOS */
.services { padding: 80px 20px; text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 50px auto; }
.service-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-decoration: none; color: inherit; transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-image { height: 220px; overflow: hidden; }
.service-card h3 { padding: 20px 0 10px; color: #003087; }
.btn-details { display: inline-block; margin: 20px; padding: 10px 30px; background: #003087; color: white; border-radius: 50px; font-weight: 600; }

/* BOTÕES FLUTUANTES DIREITA */
.float-buttons { position: fixed; bottom: 25px; right: 20px; display: flex; flex-direction: column; gap: 15px; z-index: 1000; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.3s; }
.float-btn:hover { transform: scale(1.1); }
.contact-btn { background: #003087; }
.social-btn { background: #0066cc; }

/* MODAIS */
.contact-modal, .social-modal { position: fixed; inset: 0; background: rgba(0, 48, 135, 0.7); display: none; align-items: center; justify-content: center; z-index: 9000; padding: 20px; }
.contact-modal.active, .social-modal.active { display: flex; }
.contact-modal-content, .social-modal-content { background: white; padding: 40px; border-radius: 25px; max-width: 450px; width: 100%; position: relative; text-align: center; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 2.5rem; background: none; border: none; color: #999; cursor: pointer; }
.btn-whatsapp { display: block; margin-top: 25px; padding: 15px; background: #25D366; color: white; border-radius: 50px; text-decoration: none; font-weight: 700; }
.social-icons { display: flex; justify-content: center; gap: 20px; margin-top: 25px; }
.social-link { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; text-decoration: none; }
.linkedin { background: #0077b5; }
.facebook { background: #1877f2; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
