html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* previene cualquier desplazamiento horizontal */
}

/*NUEVAS CLASES*/
/*FUENTES*/
.ofs11 {
  font-size: clamp(100px, 11vw, 220px) !important;
}

.ofs4 {
  font-size: clamp(30px, 4vw, 60px) !important;
}

.ofs3 {
  font-size: clamp(20px, 3vw, 38px) !important;
}

.ofs1-5 {
  font-size: clamp(25px, 1.5vw, 28px) !important;
}
.ofs1-3 {
  font-size: clamp(17px, 1.5vw, 22px) !important;
}
.ofs1 {
  font-size: clamp(15px, 1vw, 17px) !important;
}

.ofs05 {
  font-size: clamp(10px, 1vw, 13px) !important;
}

/*TERMINA FUENTES*/
/*COLORES*/
.principal_color {
  background-color: #ff5e00;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.primary_color {
  background-color: #ff5e00;
}

.border_primary {
  border: 2px solid #ff5e00 !important;
}
.secundary_color {
  background-color: #f2f2f2;
}

.text_primary_color {
  color: #ff5e00;
}
.text_secondary_color {
  color: #c4955f;
}

.text_positive_color {
  color: #006837;
}
.text_danger_color {
  color: red;
}

/*TERMINA COLORES*/
/*EMPIEZA BORDES*/
.bgradient1 {
  border-width: 1px;
  border-style: solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(45deg, #ff5e00, #390000);
  border-radius: 0;
}
.bprimary_color {
  border-color: #ff5e00 !important;
}
/*TERMINA BORDES*/
/*EMPIEZA MARGIN NEGATIVOS*/
.margin_nb05 {
  margin-bottom: -0.5rem;
}
.margin_nb1 {
  margin-bottom: -1rem;
}
/*TERMINA MARGIN NEGATIVOS*/
/*EMPIEZA MARGIN POSITIVOS*/
.mb-10 {
  margin-bottom: 10rem;
}
/*TERMINA MARGIN POSITIVOS*/
/*FONDOS DE SECCIONES*/

.bg_dark {
  background-color: #333333;
}

.bg_light {
  background-color: #666666;
}

/*FONDOS DE SECCIONES*/
/*BOTONES*/
.btn_principal {
  background: #c4955f !important;
  color: #fff !important;
}

/*TERMINA BOTONES*/
/*TERMINAN NUEVAS CLASES*/

/*PARA EL HOVER DE LOS SITIOS*/
.web-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.web-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.web-card:hover img {
  transform: scale(1.05);
  filter: brightness(60%);
}

.web-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.25rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.web-card:hover .web-overlay {
  opacity: 1;
}
/*TERMINA HOVER*/

/*EL TIMELINE*/
.timeline {
  position: relative;
  margin-left: 30px;
  border-left: 4px solid #cb4443; /* azul Bootstrap */
  padding-left: 20px;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-marker {
  position: absolute;
  left: -12px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #cb4443;
  border-radius: 50%;
  border: 3px solid white;
  z-index: 1;
}

.timeline-content h5 {
  margin-bottom: 5px;
}

.timeline-content p {
  margin: 0;
}

.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: all 1.5s ease-out;
  will-change: opacity, transform;
}

/* Botón hamburguesa */
.navbar-toggler {
  width: 30px;
  height: 30px; /* cuadrado perfecto */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important; /* transparente */
  border: none;
  padding: 0;
  margin-right: 10px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none !important;
}

.toggler-line {
  position: absolute;
  width: 100%;
  height: 3px; /* grosor uniforme */
  background: #fff; /* color de las líneas */
  border-radius: 5px; /* bordes redondos */
  transition: all 0.4s ease;
  left: 0;
  box-sizing: border-box;
}

/* Posición inicial */
.toggler-line:nth-child(1) {
  top: 5px;
}
.toggler-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.toggler-line:nth-child(3) {
  bottom: 5px;
}

/* Animación X */
.navbar-toggler.active .toggler-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler.active .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-line:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

/*TERMINA BOTON HAMBURGUESA*/

/* Posición inicial */
.fade-in-left {
  transform: translateX(-30px);
}
.fade-in-right {
  transform: translateX(30px);
}

/* Cuando son visibles */
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/*TERMINA TIMELINE*/

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #b3b3b3 !important;
}

.main-text-color {
  color: #008d36 !important;
}

.secondary-bg-color {
  background-color: #008d36 !important;
}

.pb-10 {
  padding-bottom: 6rem !important;
}

.pt-10 {
  padding-top: 6rem !important;
}

.w-5 {
  width: 5% !important;
}

.w-i100px {
  width: 100px;
  margin-top: -10px;
}

#section_1 {
  background-image: url("../../images/frontpages/frontpage1.webp");
}
#p3_section_1 {
  background-image: url("../../images/frontpages/frontpage3.webp");
}
#p4_section_1 {
  background-image: url("../../images/frontpages/frontpage4.webp");
  background-size: 80%;
  background-color: #242525;
}

#section_3 {
  background-image: url(../../images/isologo.webp);
  height: auto;
  background-size: 150%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 80% 60%;

  /*animation: movimiento 50s infinite linear alternate;*/
}

#contact_section {
  background-image: url(../../images/isologo_neg.webp);
  height: auto;
  background-size: 150%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 80% 60%;

  /*animation: movimiento 50s infinite linear alternate;*/
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.navbar-toggler {
  color: white;
  border-color: white;
  background-color: white;
}

.navbar-top-fade .navbar-collapse {
  background-color: #ffffff;
}
.tittle_text_m {
  width: 100%;
  float: left;
  font-size: 100px;
  text-transform: uppercase;
  text-align: center;
}

.tittle_text {
  width: 100%;
  float: left;
  font-size: 100px;
  color: #090808;
  text-transform: uppercase;
  text-align: center;
}

.paragraph_text_m {
  width: 100%;
  float: left;
  font-size: 30px;
  text-align: center;
}

.paragraph_text_m_left {
  width: 100%;
  float: left;
  font-size: 30px;
  text-align: left;
}

.paragraph_text {
  width: 100%;
  float: left;
  font-size: 30px;
  color: #090808;
  text-align: center;
}

.tittle_text_secondary {
  width: 100%;
  float: left;
  font-size: 50px;
  color: #090808;
  text-transform: uppercase;
  text-align: center;
}

.paragraph_text_secondary {
  width: 100%;
  float: left;
  font-size: 25px;
  color: #090808;
  text-align: center;
}

.paragraph_text_secondary_2 {
  width: 100%;
  float: left;
  font-size: 18px;
  color: #090808;
  text-align: center;
}

.paragraph_text_secondary_3 {
  width: 100%;
  float: left;
  font-size: 18px;
  color: #090808;
}

.dropdown-menu {
  white-space: nowrap;
  max-width: 100vw; /* o algo como 300px si querés limitarlo */
  overflow-x: auto;
  right: auto !important; /* Evita que se “pegue” al borde derecho si usás dropdown-menu-end */
  left: 0 !important; /* Alinea hacia la izquierda */
  transform: translateX(0) !important; /* Asegura que no se desplace con transformaciones */
}

.dropdown-menu a:hover {
  background-color: #333333;
}

.navbar-light {
  position: fixed;
  z-index: 9999;
  width: 100%;
  /*border-bottom: 1px solid #fff;*/
  -webkit-transition: background 1.5s ease-in-out, padding 1.5s ease-in-out, color 1.5s ease-in-out,
    font-color 1.5s ease-in-out, font-size 1.5s ease-in-out;
  -moz-transition: background 1.5s ease-in-out, padding 1.5s ease-in-out, color 1.5s ease-in-out,
    font-color 1.5s ease-in-out, font-size 1.5s ease-in-out;
  transition: background 1.5s ease-in-out;
}

.navbar-light a {
  color: #ffffff !important;
  -webkit-transition: color 1.5s ease-in-out;
  -moz-transition: background 1.5s ease-in-out;
  transition: background 1.5s ease-in-out;
}
.navbar-light .dropdown-menu {
  background-color: #4d4d4d !important;
  color: #ffffff !important;
  -webkit-transition: color 1.5s ease-in-out;
  -moz-transition: background 1.5s ease-in-out;
  transition: background 1.5s ease-in-out;
}

.navbar-light img {
  width: 0px;
  -webkit-transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
  -moz-transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
  transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
}

.navbar-light .navbar-brand img {
  width: 0px;
  -webkit-transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
  -moz-transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
  transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
}

.navbar-top-fade {
  background-color: rgba(255, 255, 255, 1) !important ;
  -webkit-transition: background 1.5s ease-in-out, padding 1.5s ease-in-out, color 3s ease-in-out,
    font-color 1.5s ease-in-out, font-size 1.5s ease-in-out;
  -moz-transition: background 1.5s ease-in-out, padding 1.5s ease-in-out, color 1.5s ease-in-out,
    font-color 1.5s ease-in-out, font-size 1.5s ease-in-out;
  transition: background 1.5s ease-in-out, padding 1.5s ease-in-out, color 3s ease-in-out, font-color 1.5s ease-in-out,
    font-size 1.5s ease-in-out;
}

.navbar-top-fade a {
  color: #081a24 !important;
}

.navbar-top-fade img {
  width: 0px;
  -webkit-transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
  -moz-transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
  transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
}

.navbar-top-fade .navbar-brand img {
  width: 100px;
  -webkit-transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
  -moz-transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
  transition: height 3s ease-in-out, padding 3s ease-in-out, width 3s ease-in-out, padding 3s ease-in-out;
}

.navbar-top-fade .dropdown-menu {
  background-color: #ffffff !important;
  color: #4d4d4d !important;
  -webkit-transition: color 1.5s ease-in-out;
  -moz-transition: background 1.5s ease-in-out;
  transition: background 1.5s ease-in-out;
}

@media (max-width: 762px) {
  .navbar-collapse {
    background-color: #333333;
  }

  .navbar-top-fade {
    color: #333333;
  }
}
@media (max-width: 992px) {
  .h-100 {
    height: auto !important;
  }
}

@media (max-width: 576px) {
  #p4_section_1 {
    background-image: url("../../images/frontpages/frontpage4_mob.webp");
    background-size: 70%;
    background-color: #242525;
  }
}

footer {
  margin-top: auto; /* Empuja el footer al final */
}
