:root {
    --primary: #15325c;
    --primary-light: #1e4580;
    --primary-dark: #0f2442;
    --secondary: #fdb913; /* Yellow/Gold */
    --action-green: #00d06b;
    --action-green-hover: #00b35c;
    --action-blue: #1b4279;
    --action-blue-hover: #15325c;
    --background: #f8f9fa;
    --surface: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --border: #e9ecef;
    --dark-bg: #0b1118;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
}

/* Header */
header {
    background-color: var(--surface);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.header-btn {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-green {
    background-color: var(--action-green);
    color: white;
}

.btn-green:hover {
    background-color: var(--action-green-hover);
}

.btn-blue {
    background-color: var(--action-blue);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-blue:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge-top {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--secondary);
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

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

.hero-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 550px;
    border-radius: 20px;
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    height: auto;
    object-fit: contain;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--surface);
    color: var(--text-main);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.floating-badge .icon {
    font-size: 2rem;
}

.floating-badge .text {
    display: flex;
    flex-direction: column;
}

.floating-badge strong {
    font-size: 1rem;
    color: var(--primary);
}

.floating-badge span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
}

.section-title p {
    color: var(--text-muted);
    margin-top: 10px;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--background);
}

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

.service-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid var(--secondary);
}

.service-card:nth-child(even) .service-img {
    filter: hue-rotate(20deg) brightness(0.9);
}

.service-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex: 1;
}

.service-card .btn-green {
    width: 100%;
    border-radius: 8px;
    padding: 12px;
}

/* Neighborhoods */
.neighborhoods {
    padding: 80px 0;
    background: white;
}

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

.bairro-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bairro-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.bairro-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.bairro-btn {
    background: var(--action-green);
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
}

/* Why Choose Us (Yellow Section) */
.features-yellow {
    background-color: var(--secondary);
    padding: 80px 0;
}

.features-yellow .section-title h2 {
    color: var(--primary);
}

.features-yellow .section-title p {
    color: var(--primary);
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--surface);
}

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

.review-card {
    background: var(--background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.review-name {
    flex: 1;
}

.review-name h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.review-stars {
    color: #fbbc05;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.google-rating {
    text-align: center;
    margin-bottom: 40px;
}

.google-rating .stars {
    color: #fbbc05;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.google-rating p {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Dark Emergency Section */
.emergency {
    background-color: var(--dark-bg);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.emergency .badge {
    background: rgba(0, 208, 107, 0.1);
    color: var(--action-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(0, 208, 107, 0.2);
}

.emergency h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.emergency p {
    color: #a0aab2;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-question {
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding-top: 15px;
    color: var(--text-muted);
    display: none;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

footer .logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

footer p {
    color: #889ec1;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content .badge-top {
    color: var(--primary);
    border-color: var(--primary);
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 20px;
    text-align: left;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-content h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 30px 0 15px 0;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 500;
}

.about-list li::before {
    content: '✓';
    color: var(--action-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: var(--background);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* Changed to 0 so map fills the right side completely */
    background: var(--surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.location-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 1.5rem;
    background: rgba(0, 208, 107, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.info-item p, .info-item a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 1.5;
}

.info-item a:hover {
    color: var(--primary);
}

.location-map {
    min-height: 400px;
}

.mt-4 {
    margin-top: 20px;
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }
    .about-list {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-container {
        flex-direction: column;
        padding-top: 50px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
        width: 90%;
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .emergency h2 {
        font-size: 2rem;
    }
    .emergency-btns {
        flex-direction: column;
    }
}
