:root {
    --primary: #DC2626;
    /* Vermelho Borracharia */
    --primary-hover: #B91C1C;
    --secondary: #FBBF24;
    /* Amarelo Pneu/Alerta */
    --accent: #F59E0B;
    --dark: #1E293B;
    --light: #F8FAFC;
    --text: #334155;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo,
.btn {
    font-family: 'Outfit', sans-serif;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(220, 38, 38, 0.39);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(220, 38, 38, 0.45);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.pulsate {
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Header */
header {
    background: white;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .logo img {
        height: 120px;
    }
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.header-contact {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: flex;
    }

    .header-contact {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 120px;
    /* logo height on mobile */
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem;
    text-decoration: none;
    color: var(--dark);
    border-bottom: 1px solid #f1f5f9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    gap: 2rem;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature i {
    color: var(--secondary);
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border: 4px solid white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    /* Sombra vermelha brilhante */
    transform: rotate(-2deg);
    /* Leve inclinação para estilo */
    transition: transform 0.3s;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (min-width: 992px) {
    .hero {
        padding: 6rem 0;
    }

    .hero .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

/* Intro Section */
.intro {
    padding: 4rem 0;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #475569;
    text-align: justify;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services h2,
.features h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.services-grid,
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Local SEO Section */
.features-grid .feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon-lg {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Neighborhoods */
.neighborhoods {
    padding: 4rem 0;
    background: var(--light);
}

.neighborhoods h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.neighborhood-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.neighborhood-list li a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
    display: block;
    transition: all 0.2s;
}

.neighborhood-list li a:hover {
    background: var(--primary);
    color: white;
}

.links-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.btn-outline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-outline i {
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-outline:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    background: #fffcfc;
}

.btn-outline span {
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20b857;
}

@media (min-width: 768px) {

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}