@font-face {
  font-family: 'CalSans';
  src: url('../fonts/CalSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.figtree-font {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

body {
  background-color: #f0efeb;
  margin: 0;
  padding: 0;
}


.logoBANNER {
  max-width: 130px;
  height: auto;
  margin-left: 1rem;
  margin-right: 5rem;
  padding-left: 5px;
  padding-right: 5px;
}

nav.navbar {
  position: fixed;
  top: 0;
  z-index: 1030;
  background-color: #f0efeb;
  width: 100%;

}


.navbar-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 30px;
  padding-right: 40px;
}




.nav-link {
  font-family: 'CalSans', sans-serif;
  color: #C71F37;
  font-size: 17px;
  position: relative;
  transition: transform 0.2s ease, color 0.3s ease;
}


.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 0.5px;
  background-color: #590e19;
  transition: width 0.3s ease;
}

.nav-link:hover {
  transform: scale(1.10);
  color: #590e19;

}

.nav-link:hover::after {
  width: 100%;
}


.nav-item-banner-contacto {
  margin-left: auto;
}

.nav-item-banner-contacto .nav-link {
  border: 1px solid #C71F37;
  border-radius: 8px;
  padding: 6px 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-item-banner-contacto .nav-link:hover {
  background-color: #C71F37;
  color: white !important;
  transform: scale(1.2);
  transition: 0.3s;
}

.nav-item-banner-contacto .nav-link::after {
  content: none;
}


.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.fotoBannerMain {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.sloganMain {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f0efeb;
  font-family: 'CalSans', sans-serif;
  font-size: clamp(2rem, 8vw, 8rem);
  text-align: center;
  margin: 0;
  padding: 0 1rem;
  max-width: 90%;
  white-space: nowrap;
  line-height: 1.1;
}

.resaltado {
  font-weight: bold;
  color: #C71F37
}


@media (max-width: 991.98px) {
  .navbar-collapse {
    align-items: flex-start !important;
    text-align: left;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-left: 15px;
  }

  .nav-item-banner-contacto {
    margin: 0 !important;
    padding-left: 0;
    align-self: flex-start;
  }

  .nav-item-banner-contacto .nav-link {
    margin-top: 0.5rem;
  }

  .nav-link {
    padding: 5px 0;
  }
}

.btnPresupuesto {
  position: absolute;
  top: 65%;
  left: 50%;
  border-radius: 5px;
  transform: translateX(-50%);
  background-color: #C71F37;
  color: white;
  font-family: 'Figtree', sans-serif;
  font-size: 1.2rem;
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(-50%) scale(0.8);
}

.btnPresupuesto:hover {
  background-color: #a2182d;
  transform: translateX(-50%) scale(1.25);
  background-color: white;
  color: #C71F37;
  font-weight: bold;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .btnPresupuesto {
    font-size: 1rem;
    padding: 10px 20px;
    top: 70%;
  }
}

@media (max-width: 480px) {
  .btnPresupuesto {
    font-size: 0.9rem;
    padding: 8px 16px;
    top: 72%;
  }
}

.containerMainPage {
  padding: 8vh 10vw;
  max-width: 1200px;
  margin: 0 auto;
}

.mainPageTitle {
  font-size: 5.4vw;
  line-height: 1.1;
  font-weight: bold;
  text-align: left;
  margin-bottom: 4vh;
}

.mainPageText {
  font-size: 1.4vw;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .mainPageTitle {
    font-size: 9vw;
  }

  .mainPageText {
    font-size: 4vw;
  }
}

.proyectosMainContainer {
  background-color: var(--bg);
  width: 100%;
  position: relative;
}

.proyectosMainTitle {
  padding: 8vh 10vw;
  margin: 0 auto;
  text-align: center;
  background-color: #141414;
}



.proyectosMainTitleText {
  font-size: 6vw;
  line-height: 1.1;
  font-weight: bold;
  color: white;
  margin: 0 0 1.5rem 0;
}

@media (max-width: 768px) {
  .proyectosMainTitleText {
    font-size: 12vw;
  }
}


.carouselWrapper {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.contenedorImagenesProyectosMain {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  will-change: transform;
}

.proyectoItem {
  flex: 0 0 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fotosProyectosMain {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0.9;
  transition: transform .3s ease, opacity .3s ease;
  display: block;
}

@media (max-width: 1024px) {
  .fotosProyectosMain {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .fotosProyectosMain {
    height: 180px;
  }
}

.fotosProyectosMain:hover {
  opacity: 1;
  transform: scale(1.03);
}

.proyectoTexto {
  color: white;
  font-size: 1.1vw;
  margin-top: 10px;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .proyectoItem {
    flex: 0 0 calc(50% - 20px);
  }

  .proyectoTexto {
    font-size: 2.2vw;
  }
}

@media (max-width: 768px) {
  .carouselWrapper {
    padding: 0 12px;
  }

  .proyectoItem {
    flex: 0 0 100%;
  }

  .proyectoTexto {
    font-size: 4vw;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #C71F37;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background-color: #C71F37;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(199, 31, 55, 0.4);
}

.carousel-btn img {
  width: 40px;
  height: 40px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(80%) saturate(3183%) hue-rotate(336deg) brightness(77%) contrast(103%);
  transition: filter 0.3s ease;
}

.carousel-btn:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.carousel-btn.prev {
  left: 40px;
}

.carousel-btn.next {
  right: 40px;
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: rgba(255, 255, 255, 0.5);
  border-color: #ccc;
}

.carousel-btn:disabled:hover {
  transform: translateY(-50%) scale(1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:disabled img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
}

@media (max-width: 768px) {
  .carousel-btn {
    width: 45px;
    height: 45px;
  }

  .carousel-btn img {
    width: 21px;
    height: 21px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn img {
    width: 14px;
    height: 14px;
  }

  .carousel-btn.prev {
    left: 5px;
  }

  .carousel-btn.next {
    right: 5px;
  }
}

.opinionesContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}


.opinionCard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.opinionNombre {
  color: #C71F37;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'CalSans', sans-serif;
}

.opinionTexto {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Figtree', sans-serif;
}

.opinionDetalle {
  margin-top: auto;
  padding-top: 1rem;
  color: #555;
  font-size: 0.9rem;
  font-family: 'Figtree', sans-serif;
}

.footer {
  background-color: #141414;
  color: white;
  padding: 40px 20px;
  width: 100%;
}

.containerFooter {
  max-width: 1200px;
  margin: 0 auto;
}

.footer {
  background-color: #141414;
  color: white;
  padding: 40px 20px;
  width: 100%;
}

.containerFooter {
  max-width: 1200px;
  margin: 0 auto;
}

.footerContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.footerLogo {
  flex: 1;
  text-align: left;
}

.logoFooter {
  width: 160px;
}

.footerLinks {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footerLinks a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footerLinks a:hover {
  text-decoration: underline;
  color: white;
}

.footerSocials {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.footerSocials .socialIcon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
  filter: invert(27%) sepia(80%) saturate(3183%) hue-rotate(336deg) brightness(77%) contrast(103%);
}

.footerSocials .socialIcon:hover {
  transform: scale(1.15);
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(40deg) brightness(103%) contrast(106%);
}


.footerDerechos {
  text-align: center;
  font-size: 13px;
  color: #bbbbbb;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 20px;
}


@media (max-width: 768px) {
  .footerContent {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footerLogo {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }

  .footerLinks {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footerSocials {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}


.dropdown {
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  height: 40px;
}

.dropdown .btn {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
}

@font-face {
  font-family: 'CalSans';
  src: url('../fonts/CalSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.figtree-font {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.empresaHero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.empresaAsfaltoFotoMain {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empresaHeroText {
  position: absolute;
  bottom: 10%;
  left: 10%;
  font-family: CalSans;
  color: white;
  font-size: 6rem;
  font-weight: 300;
  z-index: 2;
  text-shadow: 1px 1px 15px black;
}

@media (max-width: 768px) {
  .empresaHeroText {
    font-size: 4rem;
  }
}

.seccionHistoria {
  padding: 5rem 2rem;
  background-color: #f0efeb;
}

.tituloSeccion {
  font-family: 'CalSans', sans-serif;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: #141414;
  margin-bottom: 4rem;
  position: relative;
}

.tituloSeccion::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #C71F37;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.contenedorHistoria {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.columnaTexto {
  padding-right: 2rem;
}

.bloqueTexto {
  font-family: 'Figtree', sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
}

.bloqueTexto p {
  margin-bottom: 1.5rem;
}

.columnaImagen {
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagenHistoria {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.imagenHistoria:hover {
  transform: scale(1.05);
}

.seccionEquipo {
  padding: 5rem 2rem;
  background-color: #141414;
}

.tituloEquipo {
  color: white;
}

.tituloEquipo::after {
  background-color: white;
}

.contenedorEquipo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tarjetaEquipo {
  background-color: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.tarjetaEquipo:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(199, 31, 55, 0.3);
  border-color: #C71F37;
}

.iconoEquipo {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.subtituloEquipo {
  font-family: 'CalSans', sans-serif;
  color: #C71F37;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.textoEquipo {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 992px) {
  .contenedorHistoria {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .columnaTexto {
    padding-right: 0;
  }

  .columnaImagen {
    order: -1;
  }
}

@media (max-width: 768px) {

  .seccionHistoria,
  .seccionEquipo {
    padding: 3rem 1.5rem;
  }

  .tituloSeccion {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .bloqueTexto {
    font-size: 1rem;
  }

  .contenedorEquipo {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tarjetaEquipo {
    padding: 2rem 1.5rem;
  }

  .subtituloEquipo {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .tituloSeccion {
    font-size: 2rem;
  }

  .iconoEquipo {
    font-size: 2.5rem;
  }
}

@font-face {
  font-family: 'CalSans';
  src: url('../fonts/CalSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


.figtree-font {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.empresaHero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.empresaAsfaltoFotoMain {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empresaHeroText {
  position: absolute;
  bottom: 10%;
  left: 10%;
  font-family: CalSans;
  color: white;
  font-size: 6rem;
  font-weight: 300;
  z-index: 2;
}

@media (max-width: 768px) {
  .empresaHeroText {
    font-size: 4rem;
  }
}

.textoHistoria {
  margin-top: 3rem;
  margin-left: 0;
  max-width: 50%;
  flex: 1;
  text-align: left;
  font-family: "Figtree", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.7;
}

.textoHistoriaProyecto {
  margin-top: 3rem;
  margin-left: 25%;
  margin-right: 25%;
  text-align: left;
  font-family: "Figtree", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.7;
}

.empresaHistoriaText {
  font-size: 6vw;
  line-height: 1.1;
  font-weight: bold;
  text-align: left;
  margin-bottom: 4vh;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .textoHistoria {
    font-size: 1rem;
    width: 100%;
    max-width: 98%;
    margin-left: 2%;
  }

  .empresaHistoriaText {
    max-width: 100%;
    font-size: 12vw;
    margin-bottom: 2px;
  }
}

.containerTexto {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.empresaHistoriaImagen img {
  max-width: 60vh;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  margin-top: 5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .containerTexto {
    flex-direction: column;
    align-items: center;
  }

  .empresaHistoriaImagen img {
    max-width: 100%;
    margin: 2rem 0;
  }
}

hr {
  height: 2px;
  color: #C71F37;
  opacity: 100%;
  margin-left: 20%;
  margin-right: 20%;

}

.fotosProyectos {
  width: 100%;
  background-color: #141414;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
  padding: 3rem 1rem;
}

.contenedorImagenes {
  background-color: #ffffff;
  border-radius: 10px;
  width: 40vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  position: relative;
}


.contenedorImagenes:hover {
  transform: scale(1.03);
}

.contenedorImagenes:hover .historiaProyecto {
  opacity: 1;
  pointer-events: auto;

}


.historiaProyecto {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(20, 20, 20, 0.85);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  width: 90%;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.imagenesProyectos {
  width: 100%;
  height: 45vh;
  object-fit:cover;
  border-radius: 6px;
}

.textoProyecto {
  color: #141414;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding-top: 0.8rem;
  text-align: center;
}


@media (max-width: 768px) {
  .fotosProyectos {
    grid-template-columns: 1fr;
  }

  .contenedorImagenes {
    width: 90%;
  }

  .imagenesProyectos {
    height: auto;

  }
}

.resenyasMainTitleText {
  font-size: 6vw;
  padding-top: 25px;
  text-align: center;
  line-height: 1.1;
  font-weight: bold;
  color: #141414;
  margin: 0 0 1.5rem 0;

}

@media (max-width: 768px) {
  .resenyasMainTitleText {
    font-size: 12vw;
  }
}

.TRNATURE-TAG {
  color: #5B913B;
  font-family: 'CalSans', sans-serif;
  font-size: 17px;
  position: relative;
  transition: transform 0.2s ease, color 0.3s ease;
}

.TRNATURE-TAG:hover {
  transform: scale(1.10);
  color: #2b451c;
}

.contenedorTabla {
  background-color: #141414;
  padding: 4rem 0;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tabla-servicios {
  width: 90%;
  max-width: 1200px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  font-family: 'Figtree', Arial, sans-serif;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tabla-servicios tbody tr {
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.tabla-servicios tbody tr:last-child {
  border-bottom: none;
}

.tabla-servicios tbody tr:hover {
  transform: translateX(4px);
}



.tabla-servicios td {
  padding: 1.5rem 1rem;
  vertical-align: middle;
}

.tabla-servicios td:first-child {
  width: 80px;
  text-align: center;
  padding-left: 1.5rem;
}

.tabla-servicios td:nth-child(2) {
  width: 200px;
}

.icono-servicio {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.tabla-servicios tr:hover .icono-servicio {
  transform: scale(1.1);
}

.servicio-nombre {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.servicio-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.servicio-desc:hover {
  color: black;
  font-weight: 600;
  transition: 0.4s;
}

@media (max-width: 768px) {
  .contenedorTabla {
    padding: 2rem 1rem;
  }

  .tabla-servicios {
    border-radius: 8px;
  }

  .tabla-servicios td {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .tabla-servicios td:first-child {
    padding-top: 1.5rem;
    width: 100%;
  }

  .tabla-servicios td:nth-child(2) {
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .tabla-servicios td:nth-child(3) {
    padding-bottom: 0.5rem;
  }

  .tabla-servicios td:nth-child(4) {
    width: 100% !important;
    padding-bottom: 1.5rem !important;
    padding-top: 0.5rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .tabla-servicios tbody tr {
    border-bottom: 2px solid #e8e8e8;
  }

  .icono-servicio {
    width: 50px;
    height: 50px;
  }

  .servicio-nombre {
    font-size: 1.2rem;
  }
}

.badge-cell {
  width: 100px;
  text-align: center;
  vertical-align: middle;
  padding-right: 1.5rem;
}

.badge-nuevo {
  display: inline-block;
  color: #5B913B;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 6px;
  background-color: rgba(91, 145, 59, 0.15);
  border: 2px solid #5B913B;
  animation: floatBadge 1.5s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.seccionValores {
  background-color: #141414;
  padding: 4rem 2rem;
  margin-top: 4rem;
  width: 100%;
}

.tituloValores {
  font-size: 6vw;
  line-height: 1.1;
  font-weight: bold;
  text-align: center;
  color: white;
  margin: 0 0 3rem 0;
  font-family: 'CalSans', sans-serif;
}

.contenedorValores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tarjetaValor {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjetaValor:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(199, 31, 55, 0.3);
}

.iconoValor {
  font-size: 3rem;
  color: #C71F37;
  margin-bottom: 1rem;
}

.nombreValor {
  font-family: 'CalSans', sans-serif;
  color: #C71F37;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.descripcionValor {
  font-family: 'Figtree', sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.callToAction {
  background-color: #C71F37;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  width: 100%;
}

.tituloCallToAction {
  font-family: 'CalSans', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.textoCallToAction {
  font-family: 'Figtree', sans-serif;
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.botonCallToAction {
  display: inline-block;
  background-color: white;
  color: #C71F37;
  font-family: 'CalSans', sans-serif;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botonCallToAction:hover {
  transform: scale(1.1);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  color: #C71F37;
}

@media (max-width: 768px) {
  .tituloValores {
    font-size: 10vw;
    margin-bottom: 2rem;
  }

  .contenedorValores {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tarjetaValor {
    padding: 1.5rem;
  }

  .nombreValor {
    font-size: 1.3rem;
  }

  .descripcionValor {
    font-size: 0.95rem;
  }

  .tituloCallToAction {
    font-size: 2rem;
  }

  .textoCallToAction {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .botonCallToAction {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

@media (max-width: 480px) {
  .seccionValores {
    padding: 3rem 1rem;
  }

  .callToAction {
    padding: 3rem 1rem;
  }

  .tituloCallToAction {
    font-size: 1.5rem;
  }

  .textoCallToAction {
    font-size: 1rem;
  }
}

.empresaJardineriaFoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.seccionNature {
  padding: 5rem 2rem;
  background-color: #f0efeb;
}

.tituloNature {
  font-family: 'CalSans', sans-serif;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: #5B913B;
  margin-bottom: 2rem;
  position: relative;
}

.tituloNature::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #5B913B;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.textoIntroNature {
  font-family: 'Figtree', sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  max-width: 1000px;
  margin: 0 auto 4rem;
  text-align: center;
}

.contenedorServiciosNature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tarjetaServicioNature {
  background-color: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.tarjetaServicioNature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(91, 145, 59, 0.3);
  border-color: #5B913B;
}

.iconoServicioNature {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #5B913B;
}

.tituloServicioNature {
  font-family: 'CalSans', sans-serif;
  color: #5B913B;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.descripcionServicioNature {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.seccionCompromiso {
  background-color: #5B913B;
  padding: 4rem 2rem;
  margin-top: 3rem;
  text-align: center;
  color: white;
}

.tituloCompromiso {
  font-family: 'CalSans', sans-serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.textoCompromiso {
  font-family: 'Figtree', sans-serif;
  font-size: 1.3rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.botonContactoNature {
  display: inline-block;
  background-color: white;
  color: #5B913B;
  font-family: 'CalSans', sans-serif;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.botonContactoNature:hover {
  transform: scale(1.1);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  color: #5B913B;
}

@media (max-width: 768px) {
  .tituloNature {
    font-size: 2.5rem;
  }

  .textoIntroNature {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .contenedorServiciosNature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tituloCompromiso {
    font-size: 2rem;
  }

  .textoCompromiso {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
}

.resaltadoVerde {
  font-weight: bold;
  color: #5b913b;
}

.seccionContacto {
  padding: 5rem 2rem;
  background-color: #f0efeb;
}

.contenedorContacto {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.infoContacto {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tituloInfo {
  font-family: 'CalSans', sans-serif;
  color: #C71F37;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.itemInfo {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  font-family: 'Figtree', sans-serif;
}

.iconoInfo {
  font-size: 2rem;
  color: #C71F37;
  margin-right: 1.5rem;
  min-width: 40px;
}

.textoInfo {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.textoInfo a {
  color: #C71F37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.textoInfo a:hover {
  color: #8a1526;
  text-decoration: underline;
}

.formularioContacto {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tituloFormulario {
  font-family: 'CalSans', sans-serif;
  color: #141414;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.form-label {
  font-family: 'Figtree', sans-serif;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  font-family: 'Figtree', sans-serif;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #C71F37;
  box-shadow: 0 0 0 0.2rem rgba(199, 31, 55, 0.15);
}

.form-control::placeholder {
  color: #999;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.botonEnviar {
  width: 100%;
  background-color: #C71F37;
  color: white;
  font-family: 'CalSans', sans-serif;
  font-size: 1.2rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 1rem;
}

.botonEnviar:hover {
  background-color: #8a1526;
  transform: translateY(-2px);
}

.botonEnviar:active {
  transform: translateY(0);
}

.mensajeExito {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-family: 'Figtree', sans-serif;
  display: none;
  border: 1px solid #c3e6cb;
}

.mensajeExito.mostrar {
  display: block;
}

.horario {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  border-left: 4px solid #C71F37;
}

.horario h4 {
  font-family: 'CalSans', sans-serif;
  color: #141414;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.horario p {
  font-family: 'Figtree', sans-serif;
  color: #555;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .contenedorContacto {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .infoContacto,
  .formularioContacto {
    padding: 2rem;
  }

  .tituloInfo,
  .tituloFormulario {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .seccionContacto {
    padding: 3rem 1rem;
  }

  .itemInfo {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .iconoInfo {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.contenedorLegal {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
  background-color: #f0efeb;
}

.tituloLegal {
  font-family: 'CalSans', sans-serif;
  color: #C71F37;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 150px
}

.urlSitio {
  font-family: 'Figtree', sans-serif;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contenidoLegal {
  background-color: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contenidoLegal p {
  font-family: 'Figtree', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.contenidoLegal h2 {
  font-family: 'CalSans', sans-serif;
  color: #141414;
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.contenidoLegal h2:first-child {
  margin-top: 0;
}

.botonVolver {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background-color: #C71F37;
  color: white;
  font-family: 'CalSans', sans-serif;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.botonVolver:hover {
  background-color: #8a1526;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contenedorLegal {
    padding: 3rem 1rem;
  }

  .tituloLegal {
    font-size: 2rem;
  }

  .contenidoLegal {
    padding: 2rem 1.5rem;
  }

  .contenidoLegal h2 {
    font-size: 1.5rem;
  }

  .contenidoLegal p {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {

  /* el contenedor principal del idioma */
  .navbar .dropdown {
    height: auto !important;
    width: 150px;
    padding: 2px 4px !important;
    border-radius: 8px !important;
    display: inline-flex;
    margin-left: 15px !important; /* lo mueve a la izquierda */
  }

  /* botón del idioma */
  .navbar #languageDropdown {
    padding: 0 !important;
    width: 34px !important;
    height: 34px !important;
  }

  /* bandera */
  .navbar #languageDropdown img {
    width: 18px !important;
    height: 18px !important;
  }
}