/* ===== MAPA DO SITE STYLES ===== */

/* Hero Section */
.mapa-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.mapa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.mapa-hero .container {
    position: relative;
    z-index: 2;
}

.mapa-hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mapa-hero .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 12px 24px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Content Section */
.mapa-content {
    background: #f8f9fa;
    min-height: 100vh;
}

.mapa-section {
    margin-bottom: 3rem;
}

.section-title {
    color: #1e3c72;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.section-title i {
    font-size: 1.8rem;
}

/* Mapa Cards */
.mapa-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mapa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.mapa-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.mapa-card h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mapa-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mapa-card h3 a:hover {
    color: #2a5298;
}

.mapa-card h3 a.disabled {
    color: #6c757d;
    cursor: not-allowed;
    pointer-events: none;
}

.mapa-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Subsections */
.subsections {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.subsections h4,
.subsections h5 {
    color: #1e3c72;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.subsections h5 {
    font-size: 1rem;
    color: #495057;
}

/* Mapa List */
.mapa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mapa-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mapa-list li:last-child {
    border-bottom: none;
}

.mapa-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #1e3c72;
    font-weight: bold;
    font-size: 0.9rem;
}

.mapa-list li:hover {
    background: rgba(30, 60, 114, 0.02);
    padding-left: 2rem;
}

.mapa-list li a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mapa-list li a:hover {
    color: #1e3c72;
    text-decoration: underline;
}

/* Contact Info */
.contato-info {
    display: grid;
    gap: 1rem;
}

.contato-info .contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.contato-info .contato-item:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contato-info .contato-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contato-info .contato-item div {
    flex: 1;
}

.contato-info .contato-item strong {
    color: #1e3c72;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contato-info .contato-item a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contato-info .contato-item a:hover {
    color: #1e3c72;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mapa-hero h1 {
        font-size: 2.5rem;
    }
    
    .mapa-hero .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-title i {
        font-size: 1.5rem;
    }
    
    .mapa-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mapa-card h3 {
        font-size: 1.2rem;
    }
    
    .subsections {
        padding: 1rem;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .contato-info .contato-item {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .mapa-hero h1 {
        font-size: 2rem;
    }
    
    .mapa-card {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .mapa-list li {
        padding: 0.4rem 0 0.4rem 1.2rem;
    }
    
    .mapa-list li::before {
        font-size: 0.8rem;
        top: 0.4rem;
    }
}

/* Print Styles */
@media print {
    .mapa-hero {
        background: white !important;
        color: black !important;
    }
    
    .mapa-hero h1,
    .mapa-hero .lead {
        color: black !important;
    }
    
    .mapa-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .section-title {
        color: black;
    }
    
    .mapa-card h3 {
        color: black;
    }
} 