/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Superior */
.top-header {
    background: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-nav a:hover {
    color: #ff6b35;
}

.coverage-info {
    color: #ff6b35;
    font-weight: 500;
}

/* Header Principal */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: -5px;
}

.logo span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover {
    color: #ff6b35;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #ff6b35;
}

.contact-info .whatsapp-btn a {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.contact-info .whatsapp-btn a:hover {
    background: #128c7e;
}

/* Menu de Serviços */
.services-menu {
    background: #2c3e50;
    padding: 12px 0;
}

.services-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.services-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 14px;
}

.services-nav a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

/* Banner Principal */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.hero-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Serviços Principais */
.main-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.main-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-service {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #ff6b35;
    color: white;
}

/* Área de Cobertura */
.coverage-area {
    padding: 80px 0;
    background: white;
}

.coverage-area h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.coverage-area > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.area-column h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 5px;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.coverage-area .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Formulário de Contato */
.contact-form {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .services-nav {
        justify-content: center;
        gap: 10px;
    }
    
    .services-nav a {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .hero-banner .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .main-services h2,
    .coverage-area h2,
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}


/* Estilos para Páginas de Serviço */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

.service-page {
    padding: 40px 0;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main {
    background: white;
}

.service-description {
    margin-bottom: 40px;
}

.service-description h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.service-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

.service-types {
    margin-bottom: 40px;
}

.service-types h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.type-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.type-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.type-card p {
    color: #666;
    line-height: 1.6;
}

.service-process {
    margin-bottom: 40px;
}

.service-process h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.service-areas h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-areas > p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.area-group h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 5px;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 5px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.related-services {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.related-services h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.related-services ul {
    list-style: none;
}

.related-services li {
    margin-bottom: 10px;
}

.related-services a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.related-services a:hover {
    color: #ff6b35;
}

.emergency-box {
    background: #ff6b35;
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.emergency-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.emergency-box p {
    margin-bottom: 5px;
}

/* Responsividade para páginas de serviço */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .areas-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}


/* Estilos para Página de Áreas de Atendimento */
.areas-page {
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.coverage-intro {
    margin-bottom: 50px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.coverage-intro h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.coverage-intro p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.regional-coverage {
    margin-bottom: 50px;
}

.regional-coverage h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.regional-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 4px solid #ff6b35;
}

.regional-card h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.regional-card > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.neighborhoods h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.neighborhoods ul {
    list-style: none;
    columns: 2;
    column-gap: 20px;
}

.neighborhoods li {
    padding: 5px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    break-inside: avoid;
    font-size: 0.9rem;
}

.neighborhoods li strong {
    color: #2c3e50;
}

.metropolitan-area {
    margin-bottom: 50px;
}

.metropolitan-area h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

.metropolitan-area > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.metro-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.city-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.city-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.city-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.city-card ul {
    list-style: none;
    text-align: left;
}

.city-card li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

.emergency-coverage {
    margin-bottom: 50px;
    background: #2c3e50;
    color: white;
    padding: 50px;
    border-radius: 15px;
}

.emergency-coverage h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

.emergency-coverage > p {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.emergency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature p {
    opacity: 0.9;
}

.contact-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
}

.contact-cta h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-cta p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsividade para áreas de atendimento */
@media (max-width: 768px) {
    .regional-grid {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods ul {
        columns: 1;
    }
    
    .metro-cities {
        grid-template-columns: 1fr;
    }
    
    .emergency-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .regional-card {
        padding: 20px;
    }
    
    .emergency-coverage {
        padding: 30px 20px;
    }
}


/* Estilos para Seção de Benefícios */
.service-benefits {
    margin-bottom: 40px;
}

.service-benefits h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid #ff6b35;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Estilos para Seção FAQ */
.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ff6b35;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsividade para novas seções */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item,
    .faq-item {
        padding: 20px;
    }
}


/* Estilos para Páginas de Cidades */
.city-page {
    padding: 40px 0;
    background: #f8f9fa;
}

.city-header {
    text-align: center;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.city-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.city-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.city-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.city-description {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.city-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.city-services {
    margin-bottom: 40px;
}

.city-services h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #ff6b35;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    color: #555;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.service-card ul li:before {
    content: "✓ ";
    color: #ff6b35;
    font-weight: bold;
}

.city-neighborhoods {
    margin-bottom: 40px;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.neighborhood-group {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.neighborhood-group h4 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.neighborhood-group ul {
    list-style: none;
    padding: 0;
}

.neighborhood-group ul li {
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.city-emergency {
    margin-bottom: 40px;
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.emergency-card {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.emergency-card h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.emergency-card p {
    line-height: 1.6;
}

.city-sidebar {
    position: sticky;
    top: 20px;
}

.coverage-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.coverage-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.coverage-info ul {
    list-style: none;
    padding: 0;
}

.coverage-info ul li {
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.related-cities {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.related-cities h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.related-cities ul {
    list-style: none;
    padding: 0;
}

.related-cities ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.related-cities ul li a {
    color: #ff6b35;
    text-decoration: none;
}

.related-cities ul li a:hover {
    text-decoration: underline;
}

/* Responsividade para páginas de cidades */
@media (max-width: 768px) {
    .city-content {
        grid-template-columns: 1fr;
    }
    
    .city-header h1 {
        font-size: 2rem;
    }
    
    .city-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-info {
        grid-template-columns: 1fr;
    }
}

