/* Navbar Styles */
.navbar {
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: rgba(33, 37, 41, 0.71);
  backdrop-filter: blur(10px);
}

.navbar-brand img {
  height: 40px;
  transition: all 0.3s ease;
}

.nav-link {
  position: relative;
  margin: 0 5px;
  font-weight: 500;
  color: #fdfdfd !important;
  transition: all 0.3s ease;
}

.nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover:before {
  width: 100%;
}

.nav-link:hover {
  color: #3498db !important;
}

.btn-outline-primary {
  border-color: #ffd800;
  color: #ffd800;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #3498db;
  color: white;
}

.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Efeito quando a navbar é fixada no topo */
.navbar-scrolled {
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .navbar-brand img {
  height: 35px;
}
/*

body {
  overflow-x: hidden;
}

.hero-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel {
  height: 100vh;
}

.hero-slide {
  position: relative;
  height: 100vh;
}

.hero-slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: blur(2px) brightness(0.7); 
  transition: filter 0.5s ease; 
}


.hero-slide:hover img {
  filter: blur(1px) brightness(0.6);
}

.carousel-content {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.958);
  padding: 0 20px;
}

.carousel-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.carousel-content p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #fff;
  transform: scale(1.2);
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}

.owl-nav button {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: rgba(255, 255, 255, 0.4) !important;
}

.owl-nav button span {
  font-size: 30px;
  color: white;
  line-height: 1;
}

.content-section {
  padding: 80px 0;
}

.content-section h2 {
  margin-bottom: 30px;
  font-weight: 700;
  color: #2c3e50;
}

.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; 
}

@media (max-width: 768px) {
  .hero-carousel .owl-stage-outer,
  .hero-carousel .owl-stage,
  .hero-carousel .owl-item {
    height: 400px;
  }

  .carousel-content h2 {
    font-size: 1.8rem;
  }

  .carousel-content p {
    font-size: 1rem;
  }

  .owl-nav {
    display: none;
  }
}

.map-container iframe {
  border-radius: 0 0 0.5rem 0.5rem;
}
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.contact-section {
  background: linear-gradient(135deg, #dc3545, #b71c1c);
  color: #fff;
}

.contact-section h3 {
  font-weight: bold;
}

.contact-section .card {
  border-radius: 1rem;
}

.text-color {
  color: #ffd800;
}


.about-cards {
  background: #ffffff;
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

.about-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-card .icon {
  font-size: 3rem;
  color: #dc3545;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
.elemacol-content-section {
        padding: 5rem 0;
    }
    
    .elemacol-lead {
        font-size: 1.2rem;
        color: #495057;
        line-height: 1.7;
    }
    
    .elemacol-section-title {
        color: #333;
        font-weight: 600;
        position: relative;
        padding-bottom: 15px;
    }
    
    .elemacol-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #c82333;
    }
    
    .elemacol-primary-color {
        color: #c82333;
    }
    
    .elemacol-accent-color {
        color: #ffc107;
    }
    
    .elemacol-value-card {
        transition: all 0.3s ease;
        cursor: pointer;
        border-top: 4px solid transparent;
    }
    
    .elemacol-value-card:hover {
        transform: translateY(-10px);
        border-top: 4px solid #c82333;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    }
    
    .elemacol-value-icon {
        color: #c82333;
        transition: all 0.3s ease;
    }
    
    .elemacol-value-card:hover .elemacol-value-icon {
        transform: scale(1.1);
    }
    
    .elemacol-hover-text {
        opacity: 0;
        color: #c82333;
        font-weight: 600;
        margin-top: 10px;
        transition: all 0.3s ease;
    }
    
    .elemacol-value-card:hover .elemacol-hover-text {
        opacity: 1;
    }
    
    .elemacol-card-title {
        color: #333;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .elemacol-card-text {
        color: #6c757d;
        line-height: 1.6;
    }

    .elemacol-modal .modal-content {
        border-radius: 12px;
        overflow: hidden;
    }
    
    .elemacol-modal-header {
        background-color: #f8f9fa;
        border-bottom: 2px solid #c82333;
        padding: 1.2rem 1.5rem;
    }
    
    .elemacol-modal-title {
        color: #333;
        font-weight: 600;
        margin: 0;
    }
    
    .elemacol-modal-body {
        padding: 1.5rem;
    }
    
    .elemacol-modal-text {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #495057;
    }
    
    .elemacol-values-list {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    
    .elemacol-values-list li {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
    }
    
    .elemacol-values-list li:last-child {
        border-bottom: none;
    }
    
  
    @media (max-width: 768px) {
        .elemacol-lead {
            font-size: 1.1rem;
        }
        
        .elemacol-value-card:hover {
            transform: translateY(-5px);
        }
        
        .elemacol-modal-body {
            padding: 1.2rem;
        }
        
        .elemacol-values-list li {
            font-size: 1rem;
            padding: 10px 0;
        }
    }

 .elemacol-carousel img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .elemacol-carousel img:hover {
    transform: scale(1.05);
  }

  .elemacol-carousel .card {
    border-radius: 16px;
  }
    .produto-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
  }

  .produto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }

  .produto-card img {
    height: 200px;
    object-fit: cover;
  }

  .produto-card .card-body {
    padding: 1.2rem;
  }
  */