/* ============================================================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* ============================================================================
   HEADER
   ============================================================================ */
.site-header {
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header h1 {
    font-size: 2em;
    margin-bottom: 5px;
}

.site-header p {
    font-size: 1em;
    opacity: 0.9;
}

.site-header nav {
    margin-top: 15px;
}

.site-header nav a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.site-header nav a:hover {
    background: rgba(255,255,255,0.2);
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    background: linear-gradient(135deg, #3CB371 0%, #2E8B57 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, #3CB371 0%, #2E8B57 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
}

.page-hero .subtitle {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* ============================================================================
   BADGES
   ============================================================================ */
.badge {
    background: #2E8B57;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.75em;
    margin-left: 5px;
}

.badge-large {
    background: white;
    color: #2E8B57;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    display: inline-block;
}

/* ============================================================================
   FILTRO POR ÁREA
   ============================================================================ */
.filtro-area {
    background: white;
    padding: 30px 0;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filtro-area h3 {
    color: #2E8B57;
    margin-bottom: 20px;
    text-align: center;
}

.area-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn-area {
    background: #f0f0f0;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-area:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-area.active {
    background: #2E8B57;
    color: white;
    border-color: #2E8B57;
}

/* ============================================================================
   CARDS DE CIDADES E SETORES
   ============================================================================ */
.servicos-cidades {
    padding: 40px 0;
}

.servicos-cidades h2 {
    color: #2E8B57;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2em;
}

.cidade-card {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cidade-card h3 {
    color: #2E8B57;
    margin-bottom: 20px;
    border-bottom: 2px solid #3CB371;
    padding-bottom: 10px;
}

.setor-card {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #3CB371;
}

.setor-card h4 {
    color: #2E8B57;
    margin-bottom: 15px;
}

.servicos-lista {
    list-style: none;
    padding: 0;
}

.servicos-lista li {
    margin-bottom: 10px;
}

.servicos-lista a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 10px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s;
}

.servicos-lista a:hover {
    background: #2E8B57;
    color: white;
    transform: translateX(5px);
}

/* ============================================================================
   CONTEÚDO PRINCIPAL
   ============================================================================ */
.main-content {
    padding: 40px 0;
}

.servico-info, .localizacao-info {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.servico-info h2, .localizacao-info h2 {
    color: #2E8B57;
    margin-bottom: 20px;
}

/* ============================================================================
   CONTATO
   ============================================================================ */
.contato-section {
    background: white;
    padding: 40px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contato-section h2 {
    color: #2E8B57;
    margin-bottom: 30px;
}

.contato-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-whatsapp, .btn-contato, .btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-contato {
    background: #2E8B57;
    color: white;
}

.btn-contato:hover {
    background: #3CB371;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: #2E8B57;
    color: white;
}

.btn-primary:hover {
    background: #3CB371;
    transform: translateY(-2px);
}

.contato-info {
    margin-top: 20px;
    color: #666;
}

.contato-info p {
    margin: 10px 0;
}

.contato-info a {
    color: #2E8B57;
    text-decoration: none;
}

.contato-info a:hover {
    text-decoration: underline;
}

/* ============================================================================
   SIDEBAR
   ============================================================================ */
.sidebar {
    margin-top: 30px;
}

.sidebar-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #3CB371;
}

.sidebar-card h3 {
    color: #2E8B57;
    margin-bottom: 15px;
}

.sidebar-card p {
    margin-bottom: 10px;
}

.sidebar-card a {
    color: #2E8B57;
    text-decoration: none;
}

.sidebar-card a:hover {
    text-decoration: underline;
}

/* ============================================================================
   BREADCRUMB
   ============================================================================ */
.breadcrumb {
    background: white;
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 0.9em;
}

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

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

/* ============================================================================
   ERRO
   ============================================================================ */
.error-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.error-box h2 {
    color: #856404;
    margin-bottom: 15px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    background: #2E8B57;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

/* ============================================================================
   RESPONSIVO
   ============================================================================ */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 1.5em;
    }

    .hero h2 {
        font-size: 1.8em;
    }

    .page-hero h1 {
        font-size: 1.6em;
    }

    .area-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-area {
        text-align: center;
    }

    .contato-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
