/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10000;
    opacity: 0.05;
}

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

/* Barra azul superior */
.top-bar {
    background: #0C2448;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Menu de navegação */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.logo-img {
    height: 44px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #0C2448;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-align: center;
}

.nav-link:hover,
.nav-link.active {
    color: #0C2448;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0C2448;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    margin-left: 40px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Carrossel Bootstrap personalizado */
.hero-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-carousel .carousel {
    height: 100%;
}

.hero-carousel .carousel-inner {
    height: 100%;
    min-height: 100vh;
}

.hero-carousel .carousel-item {
    height: 100vh;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    background: #fff;
    border-left: 12px solid #fff;
    border-right: 12px solid #fff;
    display: block;
}

.hero-carousel .carousel-item:first-child img {
    border-left: none;
    border-right: none;
    background: none;
    object-fit: cover;
}

.hero-carousel .carousel-caption {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
}

.cta-button {
    display: inline-block;
    background: #0C2448;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Controles do carrossel Bootstrap */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    background: #0C2448;
    border: none;
    color: #fff;
    font-size: 28px;
    padding: 18px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(12, 36, 72, 0.25);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    z-index: 3;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: #0C2448;
    color: #fff;
    box-shadow: 0 8px 24px rgba(12, 36, 72, 0.35);
    border: 2px solid #fff;
}

.hero-carousel .carousel-control-prev {
    left: 20px;
}

.hero-carousel .carousel-control-next {
    right: 20px;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Indicadores do carrossel Bootstrap */
.hero-carousel .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.hero-carousel .carousel-indicators button.active,
.hero-carousel .carousel-indicators button:hover {
    background: white;
    transform: scale(1.2);
}

/* Seções gerais */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0C2448;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0C2448;
}

/* Seção Quem Somos */
#quem-somos {
    background: transparent;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4b5563;
}

.text-block {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0C2448;
}

.text-block p {
    font-size: 1rem;
    margin: 0;
    color: #4b5563;
    line-height: 1.5;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #0C2448;
    margin-bottom: 10px;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

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

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Seção Obras Realizadas */
#obras {
    background: transparent;
}

.obras-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.obras-intro p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Carrossel de Obras */
#obrasCarousel {
    position: relative;
}

.obras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.obra-card {
    background: #0C2448;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(12, 36, 72, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(12, 36, 72, 0.4);
}

.obra-content {
    display: flex;
    height: 200px;
}

.obra-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.obra-logo {
    width: 100%;
    height: 40px;
    background: white;
    border-radius: 8px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.obra-logo-img {
    width: 20%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.obra-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
    padding: 8px 0;
}

.obra-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.obra-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.obra-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
}

.obra-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0C2448;
    font-size: 14px;
    transition: all 0.3s ease;
}

.obra-overlay:hover {
    background: white;
    transform: scale(1.1);
}

.obra-image:hover .obra-img {
    transform: scale(1.05);
}

/* Ajuste específico para o quarto card do segundo slide do carrossel de obras */
#obrasCarousel .carousel-item:nth-child(2) .obra-card:nth-child(4) .obra-img {
    height: 100%;
    aspect-ratio: 1.5/1;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

/* Garantir que todos os cards do carrossel de obras tenham altura consistente */
#obrasCarousel .carousel-item .obra-card .obra-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#obrasCarousel .carousel-item .obra-card .obra-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.obra-logo-desc {
    color: #0C2448;
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
    display: inline-block;
}

/* Controles do carrossel de obras */
#obrasCarousel .carousel-control-prev,
#obrasCarousel .carousel-control-next {
    background: #0C2448;
    border: none;
    color: #fff;
    font-size: 20px;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(12, 36, 72, 0.25);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    z-index: 3;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

#obrasCarousel .carousel-control-prev:hover,
#obrasCarousel .carousel-control-next:hover {
    background: #0C2448;
    color: #fff;
    box-shadow: 0 8px 24px rgba(12, 36, 72, 0.35);
    border: 2px solid #0C2448;
}

#obrasCarousel .carousel-control-prev {
    left: -50px;
}

#obrasCarousel .carousel-control-next {
    right: -50px;
}

#obrasCarousel .carousel-indicators {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 3;
    justify-content: center;
}

#obrasCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(12, 36, 72, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

#obrasCarousel .carousel-indicators button.active,
#obrasCarousel .carousel-indicators button:hover {
    background: #0C2448;
    transform: scale(1.2);
}

/* Estilos para os modais das galerias */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: #0C2448;
    color: white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 0;
}

.modal-body .carousel {
    border-radius: 0 0 15px 15px;
}

.modal-body .carousel-item img {
    border-radius: 0 0 15px 15px;
    max-height: 500px;
    object-fit: contain;
    background-color: #f8f9fa;
    width: 100%;
    height: 500px;
}

.modal-body .carousel-control-prev,
.modal-body .carousel-control-next {
    background: rgba(12, 36, 72, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-body .carousel-control-prev:hover,
.modal-body .carousel-control-next:hover {
    background: #0C2448;
}

.modal-body .carousel-indicators {
    bottom: 20px;
}

.modal-body .carousel-indicators button {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.modal-body .carousel-indicators button.active {
    background: white;
}

/* Seção Clientes */
#clientes {
    background: transparent;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.client-logo {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo h3 {
    color: #0C2448;
    font-size: 1.2rem;
}

.client-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Seção Contato */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6b7280;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

/* Formulário de contato */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0C2448;
}

.submit-btn {
    background: #0C2448;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0C2448;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer .social-links {
    display: flex;
    gap: 15px;
}

.footer .social-links a {
    color: white;
    font-size: 20px;
    transition: opacity 0.3s ease;
}

.footer .social-links a:hover {
    opacity: 0.8;
}

.footer-logo {
    width: 180px;
    height: auto;
}

/* Botões Fixos */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.scroll-top-btn {
    width: 60px;
    height: 60px;
    background: #0C2448;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(12, 36, 72, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn:hover {
    background: #1e40af;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(12, 36, 72, 0.4);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #cbd5e1;
}

/* Responsividade */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info span {
        margin-right: 10px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        backdrop-filter: blur(10px);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .logo-img {
        width: 70%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 3/1;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    .nav-brand{
        margin-right: 0;
    }
    
    .stats-section .container {
        padding: 60px 15px;
    }
    
    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .stat-content {
        gap: 8px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Ajustar tamanhos responsivos dos ícones aumentados */
    .stat-item:first-child .stat-icon {
        width: 54px;
        height: 54px;
    }
    
    .stat-item:nth-child(2) .stat-icon {
        width: 49px;
        height: 49px;
    }
    
    .conj-logos {
        width: 150px;
        height: auto;
    }
    
    .stat-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-plus {
        font-size: 2rem;
    }
    
    .stat-label {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .hero-carousel .carousel-caption {
        padding: 0;
        max-width: none;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .hero-carousel .carousel-indicators {
        bottom: 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 500px;
    }
    
    .client-img {
        height: 100px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {

    #quem-somos{
        padding: 0 0 80px 0;
    }

    .objetivo-texto {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .objetivo-titulo {
        font-size: 0.9rem;
    }
    
    
    .logo-img {
        width: 90%;
        max-width: 200px;
        height: auto;
        aspect-ratio: 4/1;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .stats-section{
        padding: 20px 0 60px 0 !important;
    }

    .stats-section .container{
        padding: 20px !important;
    }

    
    .stats-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .stat-content {
        gap: 6px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
    }
    
    .stat-item:first-child .stat-icon {
        width: 42px;
        height: 42px;
    }
    
    .stat-item:nth-child(2) .stat-icon {
        width: 38px;
        height: 38px;
    }
    
    .conj-logos {
        width: 120px;
        height: auto;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-plus {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-carousel .carousel-caption {
        padding: 0;
        max-width: none;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .hero-carousel .carousel-indicators {
        bottom: 15px;
    }
    
    .hero-carousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-intro {
        margin-bottom: 30px;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .fixed-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .whatsapp-btn,
    .scroll-top-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
} 

/* Seção Objetivo da Visar */
.objetivo-section {
    background: url('Images/bg2.png') center center / cover no-repeat scroll;
    padding: 80px 0;
    position: relative;
    min-height: 300px;
    margin-top: 0;
    z-index: 10;
}

.objetivo-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.objetivo-texto {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.3rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.objetivo-titulo {
    font-family: 'IBM Plex Mono', monospace;
    font-style: italic;
    font-size: 1.1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Seção Estatísticas */
.stats-section {
    background: url('Images/bg2.png') center center / cover no-repeat scroll;
    padding: 20px 0 20px 0;
    position: relative;
    margin-top: 0;
    z-index: 10;
}

.stats-section .container {
    position: relative;
    z-index: 11;
    padding: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Aumentar tamanho do primeiro ícone em 30% */
.stat-item:first-child .stat-icon {
    width: 78px;
    height: 78px;
}

/* Aumentar tamanho do segundo ícone em 10% */
.stat-item:nth-child(2) .stat-icon {
    width: 66px;
    height: 66px;
}

.conj-logos {
    width: 250px;
    height: auto;
    object-fit: contain;
}

.stat-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    text-align: left;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
} 

@media (max-width: 768px) {
    .objetivo-texto {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .objetivo-titulo {
        font-size: 1rem;
    }
    
    .text-block {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .text-block p {
        font-size: 0.95rem;
    }
    
    .image-content img {
        height: auto;
        max-height: 400px;
    }
} 

@media (max-width: 768px) {
    .obras-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .obra-content {
        height: 180px;
    }
    
    .obra-info {
        padding: 15px;
    }
    
    .obra-text p {
        font-size: 1rem;
    }
    
    #obrasCarousel .carousel-control-prev,
    #obrasCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    #obrasCarousel .carousel-control-prev {
        left: 10px;
    }
    
    #obrasCarousel .carousel-control-next {
        right: 10px;
    }
}