/* Reset e Variáveis */
:root {
    --primary-color: #003366; 
    --secondary-color: #FF6600; 
    --text-color: #333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

html { scroll-behavior: smooth; }

body { color: var(--text-color); line-height: 1.6; }

/* Utilitários */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }
.section-gray { background-color: var(--light-gray); }
.highlight { color: var(--secondary-color); }
img { max-width: 100%; height: auto; border-radius: 5px; }

/* Header */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
header .container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.logo h1 { font-size: 1.8rem; color: var(--primary-color); text-transform: uppercase; letter-spacing: 1px; }

nav ul { display: flex; list-style: none; gap: 20px; }
nav a { text-decoration: none; color: var(--text-color); font-weight: 500; transition: 0.3s; }
nav a:hover { color: var(--secondary-color); }
.btn-contact { background: var(--primary-color); color: white !important; padding: 8px 15px; border-radius: 4px; }
.btn-contact:hover { background: var(--secondary-color); }

/* Mobile Menu */
.mobile-menu-icon { display: none; font-size: 24px; cursor: pointer; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,51,102,0.85), rgba(0,51,102,0.7)), url('left_image_01.jpg'); 
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero h2 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-button {
    background: var(--secondary-color); color: white; padding: 15px 30px; 
    text-decoration: none; border-radius: 5px; font-weight: bold; font-size: 1.1rem; transition: 0.3s;
}
.cta-button:hover { background: #e55b00; transform: scale(1.05); }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* Sobre */
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { margin-bottom: 10px; font-size: 1.1rem; color: var(--primary-color); font-weight: 600; }

/* Serviços */
.center-title { text-align: center; font-size: 2.5rem; color: var(--primary-color); margin-bottom: 10px; }
.center-subtitle { text-align: center; margin-bottom: 40px; color: #666; font-size: 1.1rem; }

.services-gallery { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.main-service-img { flex: 1; min-width: 300px; text-align: center; }
.main-service-img img { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.caption { margin-top: 10px; font-style: italic; font-size: 0.9rem; color: #666; }

.services-list { flex: 1; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-item { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border-left: 4px solid var(--secondary-color); }
.service-item h4 { color: var(--primary-color); margin-bottom: 10px; font-size: 1.1rem; }
.service-item p { font-size: 0.95rem; }

.tech-detail { text-align: center; margin-top: 40px; background: white; padding: 20px; border-radius: 8px; display: inline-block; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.tech-img { max-width: 200px; margin-bottom: 10px; display: block; margin: 0 auto 10px auto; }

/* Localização */
.map-container { display: flex; flex-wrap: wrap; gap: 20px; background: white; padding: 20px; box-shadow: 0 0 15px rgba(0,0,0,0.1); border-radius: 8px; }
.map-box { flex: 2; min-width: 300px; }
.address-box { flex: 1; min-width: 250px; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.address-box h4 { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 15px; }
.btn-outline { display: inline-block; margin-top: 20px; padding: 10px 20px; border: 2px solid var(--primary-color); color: var(--primary-color); text-decoration: none; border-radius: 4px; text-align: center; transition: 0.3s; }
.btn-outline:hover { background: var(--primary-color); color: white; }

/* Contato & Footer */
.footer-contact { background: var(--primary-color); color: white; padding: 50px 0; }
.contact-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.contact-info ul { list-style: none; margin-top: 20px; }
.contact-info li { margin-bottom: 10px; font-size: 1.1rem; }
footer { background: #002244; color: #aaa; text-align: center; padding: 20px; font-size: 0.9rem; }

/* Responsividade Mobile */
@media (max-width: 768px) {
    .mobile-menu-icon { display: block; }
    nav ul { display: none; flex-direction: column; width: 100%; position: absolute; top: 60px; left: 0; background: white; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    nav ul.active { display: flex; }
    .grid-2 { grid-template-columns: 1fr; }
    .hero h2 { font-size: 2rem; }
    .services-list { grid-template-columns: 1fr; }
    .tech-detail { display: block; width: 100%; }
}

/* Adicione no final do style.css */
.contact-info i {
    margin-right: 10px; /* Espaço entre o ícone e o texto */
    width: 20px;       /* Alinha os ícones verticalmente */
    text-align: center;
}