/* Estilos Gerais */
:root {
    --primary-color: #d32f2f;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --border-radius: 5px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #b71c1c;
}

.btn {
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #b71c1c;
    border-color: #b71c1c;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header */
.header {
    padding-top: 80px;
}

.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 10px;
}

.logo {
    height: 40px;
}

.nav-link {
    font-weight: 600;
    padding: 10px 15px !important;
}

.social-icons {
    display: flex;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    margin-left: 10px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: #b71c1c;
    color: white;
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    background-color: #f9f9f9;
}

.hero-content {
    padding-right: 30px;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-content .title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--dark-color);
}

.hero-content .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

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

.about-section .subtitle {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-section .section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(211, 47, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-form {
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    margin-bottom: 20px;
}

.contact-list li i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-list li div {
    flex: 1;
}

.contact-list li h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-list li p {
    margin: 0;
    color: var(--secondary-color);
}

.social-media {
    margin-top: 30px;
}

.social-media h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact p a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.developer {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.developer a {
    color: var(--accent-color);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.btn-whatsapp, .btn-phone {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

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

.btn-phone {
    background-color: var(--primary-color);
    color: white;
}

.btn-whatsapp:hover, .btn-phone:hover {
    transform: scale(1.1);
    color: white;
}

.btn-whatsapp i, .btn-phone i {
    font-size: 24px;
}

/* Bairros Section */
.bairros-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.bairro-search-container {
    max-width: 500px;
    margin: 0 auto;
}

.bairros-grid {
    margin-top: 30px;
}

.bairro-item {
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bairro-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content .title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .developer {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-content .title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .hero-content .title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 8px 20px;
    }
    
    .floating-buttons {
        right: 10px;
        bottom: 10px;
    }
    
    .btn-whatsapp, .btn-phone {
        width: 50px;
        height: 50px;
    }
    
    .btn-whatsapp i, .btn-phone i {
        font-size: 20px;
    }
}
