/* Estilos Gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    color: #333;
}

section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #3271b3;
    margin-top: 10px;
}
.pt-3, .py-3 {
    padding-top: 3rem!important;
    padding-bottom: 1rem!important;
}
.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Sobre Section */
.icon-box {
    width: 50px;
    height: 50px;
    background-color: #3271b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Serviços Section */
#servicos {
    padding: 60px 0;
    background-color: #fff !important;
}

#servicos .section-title {
    font-weight: bold;
    margin-bottom: 30px;
}

#servicos p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.servico-item {
    margin-bottom: 30px;
}

.servico-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.servico-titulo {
    margin-top: 15px;
    font-weight: bold;
    font-size: 16px;
}

/* Existing service card styles can remain but won't be used for this section */
.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    font-size: 30px;
}

/* Obras Section */
.obra-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.obra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.obra-card img {
    height: 200px;
    object-fit: cover;
}

/* Contato Section */
/* Contato Section */
#contato {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#contato .section-title {
    font-weight: bold;
    margin-bottom: 40px;
}

.contato-icon {
    color: #3271b3;
    font-size: 40px;
    margin-bottom: 15px;
}

.contato-titulo {
    color: #3271b3;
    font-weight: bold;
    margin-bottom: 15px;
}

.contato-form .form-control {
    border-radius: 0;
    padding: 12px 15px;
    margin-bottom: 0;
    border: 1px solid #ddd;
}

.contato-form textarea.form-control {
    min-height: 150px;
}

.contato-form .btn-primary {
    background-color: #3271b3;
    border-color: #3271b3;
    padding: 10px 30px;
    border-radius: 0;
    font-weight: bold;
}

.contato-form .btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}
.contact-info i {
    color: #3271b3;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #3271b3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #0077a9;
    padding: 40px 0 20px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: white;
    color: #0077a9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #f8f9fa;
    color: #0077a9;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 12px;
}

.footer-links a:hover {
    color: #f8f9fa;
    padding-left: 5px;
}

footer p {
    margin-bottom: 5px;
    color: white;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    color: #FFF;
    background-color: #1da851;
}
footer a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer a:hover {
    color: #fff;
    opacity: 1;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

/* Sobre Section */
#sobre {
    padding: 60px 0;
    background-color: #fff;
}

#sobre .section-title {
    font-weight: bold;
    margin-bottom: 30px;
}

#sobre p {
    margin-bottom: 15px;
    line-height: 1.6;
}

#sobre .btn-primary {
    background-color: #3271b3;
    border-color: #3271b3;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

#sobre .btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

#sobre img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Vantagens Section */
#vantagens {
    padding: 60px 0;
    background-color: #f8f9fa;
}

#vantagens .section-title {
    font-weight: bold;
    margin-bottom: 30px;
}

#vantagens p {
    line-height: 1.6;
}

.vantagens-icons .vantagem-icon {
    color: #3271b3;
    font-size: 40px;
    margin-bottom: 15px;
}

.vantagem-titulo {
    color: #3271b3;
    font-weight: bold;
    margin-bottom: 15px;
}

.vantagem-item p {
    font-size: 14px;
}

#vantagens strong {
    font-weight: bold;
}

#vantagens .embed-responsive {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Contato Rápido Banner */
.contato-banner {
    position: relative;
    background-image: url('../img/contato-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

.contato-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 105, 148, 0.8);
}

.contato-banner .container {
    position: relative;
    z-index: 1;
}

.contato-banner h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.contato-banner .form-control {
    height: 50px;
    border-radius: 0;
    border: none;
}

.contato-banner .btn-primary {
    height: 50px;
    border-radius: 0;
    background-color: #3271b3;
    border-color: #3271b3;
    font-weight: bold;
    font-size: 14px;
}

.contato-banner .btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.navbar .navbar-expand-lg .navbar-dark .bg-dark .fixed-top {
    background-color: #c9c9c9!important;
}
.bg-dark {
    background-color: #eeeeee!important;
}
.navbar-dark .navbar-nav .nav-link {
    color: #343434!important;
}
@media (max-width: 768px) {
    .contato-banner .row > div {
        margin-bottom: 15px;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 500px;
}

.hero-slider .carousel-item {
    height: 100vh;
    min-height: 500px;
    background-color: #000;
}

.hero-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 20px;
}

.hero-slider h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-slider p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.carousel-indicators {
    z-index: 3;
}

.carousel-control-prev, .carousel-control-next {
    z-index: 3;
}

@media (max-width: 768px) {
    .hero-slider h1 {
        font-size: 2.5rem;
    }
    
    .hero-slider p {
        font-size: 1.2rem;
    }
}