/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* ===== SCROLLBAR COLORIDA ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
}

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

/* ===== HEADER ===== */
.header {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo-link {
    text-decoration: none;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-phone,
.btn-whatsapp {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.btn-phone {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone::before,
.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-phone:hover::before,
.btn-whatsapp:hover::before {
    left: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.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 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-cta-whatsapp .cta-icon {
    font-size: 1.5rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.hero-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 20s linear infinite;
    border-radius: 50%;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.map-container {
    display: flex;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
}

.whatsapp-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.whatsapp-link:hover::before {
    left: 100%;
}

.whatsapp-icon {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    font-size: 1.3rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #5dade2;
}

.hours-list,
.services-list,
.links-list,
.gov-links {
    list-style: none;
    padding: 0;
}

.hours-list li,
.services-list li,
.links-list li,
.gov-links li {
    margin-bottom: 0.5rem;
    padding-left: 20px;
    position: relative;
}

.hours-list li::before,
.services-list li::before,
.links-list li::before,
.gov-links li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.links-list a,
.gov-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-list a:hover,
.gov-links a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* ===== SITEMAP STYLES ===== */
.sitemap-main {
    padding: 60px 0;
    background: white;
}

.sitemap-main h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.5rem;
}

.sitemap-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.sitemap-section {
    margin-bottom: 3rem;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sitemap-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
}

.sitemap-section h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.sitemap-list li {
    padding: 8px 0;
}

.sitemap-list a {
    color: #34495e;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.sitemap-list a:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(5px);
}

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

.bairro-column {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.info-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.info-card a {
    color: #3498db;
    text-decoration: none;
}

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

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== SEO CONTENT SECTIONS ===== */
.seo-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
}

.seo-section {
    margin-bottom: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.seo-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.seo-section h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    margin: 0;
    padding: 25px 30px;
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    position: relative;
}

.seo-section h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.seo-content-block {
    padding: 40px 30px;
    line-height: 1.8;
}

.seo-content-block p {
    margin-bottom: 25px;
    color: #555;
    font-size: 1.05rem;
}

.seo-content-block strong {
    color: #2c3e50;
    font-weight: 700;
}

/* ===== CTA SEPARATORS ===== */
.cta-separator {
    text-align: center;
    margin: 35px 0;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(24, 140, 126, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(37, 211, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.05), transparent);
    animation: sweep 4s ease-in-out infinite;
}

.inline-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255,255,255,0.2);
}

.inline-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    border-color: rgba(255,255,255,0.4);
}

.inline-cta-btn.secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.inline-cta-btn.secondary:hover {
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.cta-icon {
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-placeholder {
        width: 250px;
        height: 250px;
    }

    .hero-emoji {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bairros-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-section {
        padding: 20px;
    }

    /* SEO Content Responsive */
    .seo-content {
        padding: 40px 0;
    }

    .seo-section {
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .seo-section h2 {
        padding: 20px;
        font-size: 1.4rem;
    }

    .seo-content-block {
        padding: 25px 20px;
    }

    .seo-content-block p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-separator {
        margin: 25px 0;
        padding: 20px 15px;
    }

    .inline-cta-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .cta-icon {
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0.5rem 0;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .btn-phone,
    .btn-whatsapp {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn-cta-whatsapp {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
    }

    .hero-emoji {
        font-size: 2.5rem;
    }

    .whatsapp-link {
        min-width: 160px;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .sitemap-main h1 {
        font-size: 2rem;
    }

    .sitemap-intro {
        font-size: 1rem;
    }

    /* SEO Content Mobile */
    .seo-content {
        padding: 30px 0;
    }

    .seo-section {
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .seo-section h2 {
        padding: 15px 20px;
        font-size: 1.2rem;
    }

    .seo-content-block {
        padding: 20px 15px;
    }

    .seo-content-block p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .cta-separator {
        margin: 20px 0;
        padding: 15px 10px;
        border-radius: 10px;
    }

    .inline-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-icon {
        font-size: 1.1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-placeholder {
        width: 180px;
        height: 180px;
    }

    .hero-emoji {
        font-size: 2rem;
    }

    .whatsapp-link {
        min-width: 140px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}
