html {
  scroll-behavior: smooth;
}

:root {
  scroll-padding-top: 69px; /* ajusta según la altura de tu navbar */
}

body {
  font-family: 'Poppins', sans-serif;
  padding-top: 70px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}

.navbar-brand {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d6efd;
}

.nav-link {
  font-weight: 500;
  margin-right: 1rem;
  color: #333;
}

.nav-link:hover {
  color: #0d6efd;
}


.navbar-toggler {
  border: none;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-carousel .hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.hero-carousel .owl-stage-outer {
  height: 100%;
}

@media (max-width: 768px) {
  .hero-slide {
    height: 60vh;
  }
}

.hero-fixed-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  padding: 1rem;
  max-width: 90%;
}

@media (max-width: 768px) {
  .hero-fixed-text {
    max-width: 95%;
    padding: 0rem;
  }
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-phone {
  font-size: 1.75rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* Responsive Text */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-phone {
    font-size: 1.5rem;
  }
}

/* Mejora la visibilidad del fondo */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.road-separator {
  background-color: #333;
  height: 80px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.road-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transform: translateY(-50%);
}

.road-line .dashes {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    to right,
    white,
    white 20px,
    transparent 20px,
    transparent 40px
  );
}


.about-title {
  font-size: 2rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}

.feature-title {
  font-family: 'Fredoka', sans-serif; /* Misma fuente que About */
  font-size: 1.5rem;
  font-weight: 700; /* Igual al título de About Us */
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.about-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.about-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  margin: 2rem auto;
  display: block;
}


.icon-box {
  width: 60px;
  height: 60px;
  background-color: #0d6efd; /* Azul Bootstrap */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon-box i {
  color: white !important; /* Asegura que el ícono sea blanco */
  font-size: 1.5rem;
}

.full-banner {
  background-image: url('image/bs.png'); /* Cambia a tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 6rem 1rem;
}

.full-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Capa oscura para legibilidad */
  z-index: 0;
}

.full-banner .container {
  position: relative;
  z-index: 1;
}

.banner-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin: 0;
  color: white;
}


.banner-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400; /* Más delgado que el título principal */
  font-size: 2rem;
  margin: 0;
  color: white;
}

.services-section {
  background-color: #f8f9fa;
}

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.service-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-img {
  max-height: 400px;
  object-fit: contain;
}

.service-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #444;
}

.gallery-thumb {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover {
  transform: scale(1.03);
}

.site-footer a {
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #0d6efd;
}

.about-box.mt-auto.mb-auto {
  padding-top: 1.5rem;
}

.about-box.my-auto {
  padding-top: 2rem; /* Ajusta este valor a gusto */
}

#contact h6 {
  letter-spacing: 0.07em;
}

#contact .fs-5 {
  font-size: 1.25rem;
}

#contact .fs-6 {
  font-size: 1.1rem;
}

#contact iframe {
  border-radius: 12px;
  margin-top: 10px;
}

