/* =========================================
   Reset e Configurações Globais
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FAFAFA;
    color: #1A1A1A;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================
   Layout e Utilitários
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.bg-light { background-color: #F3F4F6; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

/* Responsividade Básica (Tablets e Desktop) */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   Tipografia
   ========================================= */
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
h3 { font-size: 2rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.subtitle { color: #6B7280; margin-top: 10px; }
.hero p { color: #6B7280; font-size: 1.125rem; max-width: 600px; margin: 0 auto 30px auto; }

/* =========================================
   Botões e Links
   ========================================= */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}

.btn-dark {
    background-color: #1A1A1A;
    color: #FFFFFF;
}
.btn-dark:hover { background-color: #333333; }

.btn-primary {
    background-color: #2563EB;
    color: #FFFFFF;
}
.btn-primary:hover { background-color: #1D4ED8; }

.btn-large {
    padding: 15px 30px;
    font-size: 1rem;
}

.shadow { box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3); }

.link-primary {
    color: #2563EB;
    font-weight: 600;
}
.link-primary:hover { text-decoration: underline; }

/* =========================================
   Navegação (Navbar)
   ========================================= */
.navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -1px; }
.logo span { color: #2563EB; }

.nav-links {
    display: none;
    gap: 30px;
}
.nav-links a { color: #6B7280; font-weight: 400; }
.nav-links a:hover { color: #1A1A1A; }

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding: 100px 0;
}
.hero span { color: #2563EB; }

@media (min-width: 768px) {
    .hero { padding: 150px 0; }
    h2 { font-size: 3.5rem; }
}

/* =========================================
   Cards (Serviços e Unidades)
   ========================================= */
.card {
    background-color: #FFFFFF;
    border: 1px solid #F3F4F6;
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card p { color: #6B7280; }

.icon {
    width: 60px;
    height: 60px;
    background-color: #EFF6FF;
    color: #2563EB;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-location { text-align: center;  }
.card-location p { margin-bottom: 13px; }


/* =========================================
   Rodapé (Footer)
   ========================================= */
.footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 60px 0;
}

.footer-subtitle { color: #9CA3AF; margin-bottom: 30px; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #9CA3AF;
    margin-bottom: 30px;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact-info { flex-direction: row; gap: 30px; }
}

.copyright {
    border-top: 1px solid #374151;
    padding-top: 30px;
    color: #6B7280;
    font-size: 0.875rem;
}