/* style.css */
body {
  background-color: white;
  margin: 0;
  /* font-family: "Public Sans", sans-serif; */
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  color: #212529;
  font-weight: 400;
  font-style: normal;
}

b,
strong {  
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: #212529;
}

.texto-color {
  color: #212529;
}

html {
  font-family: sans-serif;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.5rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #212529;
  border-radius: 5rem;
}

.h1,
h1 {
  /* font-weight: 700; */
  font-weight: 400;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  /* font-weight: 700; */
  font-weight: 400;
}


.btn-dark {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  background: #212529;
  margin: 20px 0px;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus {
  background-color: #212529;
  color: white;
}

.section {
  padding: 30px 0;
}

.rounded-image {
  position: relative;
  /* necesario para que el ::before se posicione respecto a la imagen */
  display: inline-block;
  z-index: 1;
}

.rounded-image img {
  border-radius: 50px 0px;
  margin-bottom: 20px;
}

.rounded-image::before {
  content: '';
  position: absolute;
  top: -30px;
  /* desplaza hacia arriba */
  left: -30px;
  /* desplaza hacia la izquierda */
  width: 100%;
  height: 100%;
  border: 2px dotted rgba(2, 149, 193, 0.3);
  /* líneas punteadas suaves */
  border-radius: 50px 0px;
  /* opcional, que siga la forma de la imagen */
  z-index: -1;
  /* atrás de la imagen */
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0);
  /* Arranca transparente */
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 1);
  /* Al scrollear se vuelve blanco sólido */
  padding: 30px 0;
  height: 92px;
  transition: all 0.5s;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover,
#header #logo h1 a:active,
#header #logo h1 a:focus {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin-top: -15px;
  max-width: 233px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 80%;
  left: 0;
  z-index: 99;
  max-width: 300px;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu>li {
  float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 270px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}


/* Nav Meu Styling */
.nav-menu a {
  padding: 8px 15px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-size: calc(10px + 0.4vw);  
  outline: none;
}

.nav-menu a::before {
  display: none;
}

.header-scrolled .nav-menu a {
  color: #212529;
}

.nav-menu li:hover>a,
.nav-menu>.menu-active>a {
  color: #212529;
}

.nav-menu>li {
  margin-left: 10px;
  margin-right: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.nav-menu ul li:hover>a {
  color: #212529;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}


/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 1);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #212529;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a::before {
  display: none;
}

#mobile-nav ul li a:hover,
#mobile-nav ul li a:active,
#mobile-nav ul li a:focus {
  color: #212529;
}

#mobile-nav ul li li {
  padding-left: 20px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #212529;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #212529;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #212529;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}


/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

@media (max-width: 1024px) {
  #header #logo img {
    max-width: 197px;
  }
}



/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

.hero-text {
  display: table;
}

.hero-text-tablecell {
  display: table-cell;
}

.hero-text .boxed-btn {
  padding: 8px 30px 9px 30px;
  color: #212529;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  background: white;
}

.hero-text .boxed-btn:hover,
.hero-text .boxed-btn:active,
.hero-text .boxed-btn:focus {
  background-color: #212529;
  color: white;
}

#bg-video {
  min-width: 100%;
  min-height: 100vh;
  max-width: 100%;
  max-height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#bg-video::-webkit-media-controls {
  display: none !important;
}

.main-banner .overlay {
  width: 100vw;
  height: 100vh !important;
  background: #212529;
  opacity: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
}

.m-auto {
  margin: auto !important;
}

.main-banner {
  position: relative;
}

.main-banner .hero-text p.subtitle {
  color: white;
  letter-spacing: 0;
  font-size: 22px;
  margin-bottom: 0;
}

.main-banner .contenido {
  position: absolute;
  z-index: 2;
  max-width: 100% !important;
}

.main-banner .hero-text h1 {
  font-size: 48px;
  line-height: 1.3;
  color: #fff;
}


.main-banner div {
  height: 100%;
}

.main-banner div.hero-text {
  height: 100%;
  width: 100%;
}

.main-banner div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.main-banner div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}

.main-banner .hero-btns {
  margin-top: 35px;
}

.main-banner .hero-btns a.bordered-btn {
  margin-left: 15px;
}

.main-banner .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  background: #212529;
}

.about-btn:hover,
.about-btn:active,
.about-btn:focus {
  color: white;
  background-color: #212529;
}

/*--------------------------------------------------------------
# Particles
--------------------------------------------------------------*/

.main-banner-image {
  position: relative;
  display: flex;
  align-items: center;
  /* centra verticalmente */
  justify-content: center;
  /* centra horizontalmente */
  min-height: 100vh;
  /* asegura altura completa */
  overflow: hidden;
  /* evita scroll por partículas */
}

.main-banner-image .contenido {
  position: relative;
  /* ya no hace falta absoluto */
  z-index: 3;
  max-width: 100% !important;
}

.main-banner-image .hero-text p.subtitle {
  color: white;
  letter-spacing: 0;
  font-size: 22px;
  margin-bottom: 0;
}

.main-banner-image .hero-text h1 {
  font-size: 48px;
  line-height: 1.3;
  color: #fff;
}

.main-banner-image div.hero-text {
  height: 100%;
  width: 100%;
}

.main-banner-image div.hero-text-tablecell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* centra verticalmente el contenido */
  height: 100%;
  text-align: center;
}

.main-banner-image .hero-btns {
  margin-top: 35px;
}

.main-banner-image .hero-btns a.bordered-btn {
  margin-left: 15px;
}

.main-banner-image .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  /* por debajo del contenido pero encima de la imagen de fondo */
}

.main-banner-image .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(2, 89, 116, 0);
  /* ajuste de opacidad del overlay */
  z-index: 2;
  /* entre partículas y contenido */
}


/**********************
Ws botón redondo con tooltip ws-tooltip
***********************/
#chat-ws-redondo.ws.tooltip {
  position: fixed;
  bottom: 13px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  cursor: pointer;
  display: block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  z-index: 999;
  background: #1ca550;
  padding: 8px 11px;
  opacity: 1;
}

#chat-ws-redondo.ws.tooltip img {
  padding-left: 0px;
  padding-top: 0px;
  width: 100%;
}

#chat-ws-redondo.ws.tooltip i {
  font-size: 44px;
  color: white;
}

.ws.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #1ca550;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.ws.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #1ca550 transparent transparent transparent;
}

.ws.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/**********************
Tenología
***********************/
.tecnologias {
  background: #f5f8f9;
}

.tech-accordion {
  display: flex;
  gap: 5px;
  height: 400px;
  /* alto fijo del acordeón */
  overflow: hidden;
}

.tech-item {
  position: relative;
  flex: 1;
  /* todas mismas proporciones inicialmente */
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: flex 0.5s ease;
  display: flex;
  align-items: stretch;
  /* mantiene el alto constante */
}

.tech-item h4 {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  color: white;
  text-align: center;
  padding: 20px;
  transform-origin: bottom;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
  margin: 0;
  font-size: 1.2rem;
}

.tech-item img {
  width: 100%;
  height: 100%;
  /* mantiene la imagen del mismo alto que el contenedor */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tech-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 40px 20px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), opacity 0.3s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

.tech-overlay h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #212529;
  order: 0;
  position: relative;
  z-index: 4;
}

.tech-overlay p {
  margin: 0;
  margin-top: 8px;
  font-size: 0.9rem;
  order: 1;
  position: relative;
  z-index: 3;
}

.tech-item:hover .tech-overlay {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.tech-item>h4 {
  z-index: 1;
  transition: opacity 0.25s ease;
}

.tech-overlay h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #212529;
}

.tech-overlay p {
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Hover ancho fijo */
.tech-item:hover {
  flex: 2;
  /* aumenta solo ancho */
}

.tech-item:hover img {
  transform: scale(1.05);
  /* zoom leve */
}

.tech-item:hover .tech-overlay {
  transform: scaleY(1);
  opacity: 1;
}


/* Responsive */
@media (max-width: 992px) {
  .tech-accordion {
    flex-wrap: wrap;
    height: auto;
    /* deja que el alto se ajuste a las filas */
  }

  .tech-item {
    flex: 1 1 48%;
    height: 200px;
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .tech-item {
    flex: 1 1 100%;
    height: 280px;
  }
}


/**********************
Mercados
***********************/

.market-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Fondo animado */
.market-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #212529;
  z-index: 0;
  transition: height 0.4s ease;
}

/* Contenido sobre el fondo */
.market-card .icon,
.market-card h4 {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.market-card .icon {
  font-size: 40px;
  color: #212529;
  margin-bottom: 20px;
}

.market-card h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
}

/* Hover */
.market-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.market-card:hover::before {
  height: 100%;
  /* sube desde abajo hasta cubrir */
}

.market-card:hover .icon,
.market-card:hover h4 {
  color: #fff;
  /* ícono y título en blanco */
}


/* Responsive */
@media (max-width: 992px) {
  .market-card {
    padding: 30px 15px;
  }
}

@media (max-width: 576px) {
  .market-card {
    padding: 25px 15px;
  }

  .market-card .icon {
    font-size: 36px;
  }
}



/**********************
Mercados
***********************/

.parallax {
  background-image: url("../imagenes/garantia.jpg");
  height: 100%;
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.parallax .parallax-text {
  left: 0;
  padding: 5vw;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: stretch;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  height: 100%;
}

.parallax .parallax-text h1 {
  color: white;
  font-size: calc(28px + 0.5vw);
  margin-bottom: 20px;
}

.parallax .parallax-text p {
  color: white;
  font-size: calc(16px + 0.5vw);
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000;
  padding: 0px 30px 30px 30px;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
}

#footer .footer-top .footer-info h3 img {
  max-width: 188px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #212529;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: white;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #212529;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-contact p i {
  color: white;
  margin-right: 15px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #212529;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #212529;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
  border-top: 1px solid #212529;
  padding-top: 40px;
}

#footer .credits a {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}


/* Estilos para la nueva versión */
#valor-unificado .card-box {
  background: #f9f9f9;
  /* grisado muy sutil */
  border: 1px solid #e0e0e0;
  /* borde fino */
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 30px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#valor-unificado h1,
#valor-unificado h3 {
  color: inherit;
  /* hereda colores actuales */
}

#valor-unificado .btn-dark {
  margin-top: 10px;
  display: inline-block;
}


/* Agregados nuevo slider */

#header {
  background: rgba(0, 0, 0, 0.6);
}

.nav-menu a {
  color: white;
}

#mobile-nav-toggle i {
  color: white !important;
}

.main-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.main-banner .carousel-item {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.main-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.main-banner .container {
  position: relative;
  z-index: 2;
}

.main-banner .hero-text h1 {
  color: #fff;
  font-weight: 700;
}

.main-banner .hero-text p.subtitle,
.main-banner .hero-text h3.subtitle {
  color: #fff;
}

.boxed-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: 0.3s;
}

.boxed-btn:hover {
  background: #212529;
  color: #fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}


/* Flechas blancas del carousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
  width: 3rem;
  height: 3rem;
  filter: none;
  position: relative;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  mask-size: cover;
  -webkit-mask-size: cover;
  background-color: #fff;
}

.carousel-control-prev-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 12L6 8l4-4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 12L6 8l4-4'/%3E%3C/svg%3E");
}

.carousel-control-next-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 4l4 4-4 4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 4l4 4-4 4'/%3E%3C/svg%3E");
}


/* Termina slider */

#section-uno,
#section-dos,
#section-tres,
#section-cuatro,
#section-cinco,
#section-seis,
#section-siete,
#section-ocho,
#section-nueve,
#section-diez,
#section-operadoras, 
#section-cooperativas,
#section-datacenters,
#section-transporte,
#section-energias,
#section-industria,
#section-fabricantes {
  position: absolute;
  top: -80px;
}

.contacto-flotante {
  position: fixed;
  bottom: 13px;
  right: 120px;
  z-index: 999;
  opacity: 1;
}

.contacto-flotante a {
  background: #7f7f7f;
  padding: 8px 11px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  box-shadow: 0px 0px 20px 0px rgba(91, 91, 91, 0.5);
  width: 60px;
  height: 60px;
  border-radius: 50% !important;
  cursor: pointer;
  display: block;
  color: white;
  font-size: 34px;
  text-align: center;
}

/* Contacto */

a:hover,
a:focus,
a:active,
.form-control:focus,
.form-control:active,
.form-control:hover,
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled),
.btn-success.focus,
.btn-success:focus,
button:hover,
button:active,
button:focus,
.btn-success,
.btn,
[type=button],
[type=reset],
[type=submit],
button,
.btn:hover,
.btn:active,
.btn:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

textarea.form-control {
  min-height: 140px;
  margin-bottom: 20px;
}

.no-margin {
  margin: 0px !important;
}

.help-block.with-errors {
  color: #313875;
  margin-top: 5px;
}

.alert-success {
  color: #fff;
  background-color: transparent;
  border-color: #f1f0f5;
}

.alert-dismissable .close,
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0px;
  color: white;
  font-weight: 300;
  background: #212529;
  border: 0;
}

.alert {
  position: relative;
  padding: 2rem;
  margin-bottom: 1rem;
  border: 0px solid transparent;
  border-radius: 0px;
}

.text-muted {
  color: #313875;
}

.history-text p.text-muted {
  color: #313875;
}

.messages {
  background: #212529;
  color: white;
}

.btn.disabled,
.btn[disabled],
.btn-send,
.btn-success,
fieldset[disabled] .btn {
  background: #212529;
  color: white;
  text-transform: uppercase;
  width: 165px;
  border: none;
  height: 46px;
  cursor: pointer;
  font-size: calc(12px + 0.4vw);
  opacity: 1;
  line-height: 1;
  border-radius: 50px;
}

.btn.disabled:hover,
.btn.disabled:active,
.btn.disabled:focus,
.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn[disabled]:hover,
.btn[disabled]:active,
.btn[disabled]:focus,
fieldset[disabled] .btn:hover,
fieldset[disabled] .btn:active,
fieldset[disabled] .btn:focus,
.btn-send:hover,
.btn-send:active,
.btn-send:focus {
  background: #212529;
  color: white;
  opacity: 1;
  border-radius: 50px;
}

.alert-danger {
  color: #212529;
  background-color: #f1f0f5;
  border-color: #f1f0f5;
}

.form-group {
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-group input {
  min-height: 45px;
  border-color: #e8e8e8;
  background-color: white!important;
}
textarea.form-control {
  background-color: white!important;
}

.d-none {
  display: none !important;
}

.nice-select.wide {
  width: 100%;
  border-radius: 0;
}

.input-group-addon {
  position: absolute;
  right: 10px;
  z-index: 1;
  top: 8px;
}

/* Termina Contacto */

.nav-menu a.btn-contacto {
  border-radius: 50px;
  background-color: black;
  color: #fff;
}
.nav-menu a.btn-contacto:focus,
.nav-menu a.btn-contacto:hover,
.nav-menu a.btn-contacto:active {
  color: white;
}
.nav-menu a.btn-consultas {
  border-radius: 50px;
  background-color: #7f7f7f;
  color: #fff;
  margin-left: 50px;
}

#mobile-nav ul li a.btn-contacto {
  border-radius: 50px;
  background-color: black;
  color: #fff;
  margin-top: 20px;
  width: 90%;
  margin-left: 5px;
}

#mobile-nav ul li a.btn-consultas {
  border-radius: 50px;
  background-color: #7f7f7f;
  color: #fff;
  margin-top: 50px;
  width: 90%;
  margin-left: 5px;
}


@media (max-width: 1024px) {
  #header #logo img {
    max-width: 197px;
  }

  #footer .footer-top .footer-info h3 img {
    max-width: 214px;
  }
}
@media (min-width: 1024px) {
  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 991px) {
  #footer .footer-top .footer-contact {
    margin-left: 0 !important
  }
}

@media (max-width: 768px) {

   h3 {
    font-size: 1.1rem;
  }
  #header #logo h1 {
    font-size: 28px;
  }

   #nav-menu-container {
    display: none;
  }

  #header #logo img {
    max-height: 40px;
  }
  .section {
    padding: 30px 0;
  }
  #mobile-nav-toggle {
    display: inline;
  }

  .main-banner .hero-text h1,
  .main-banner-image .hero-text h1 {
    font-size: 2rem;
  }

  .main-banner .hero-text p.subtitle,
  .main-banner-image .hero-text p.subtitle {
    font-size: 1.2rem;
  }
  .nav-menu a.btn-consultas {
    margin-left: 0px;
  }
}

.bg {
  padding: 80px 0px;
    background-repeat: no-repeat;
    background-size: cover;
}
.bg .header-text {
  background: rgba(255, 255, 255, 0.75);
    padding: 5%;
}

.section[id^="section-"] {
    position: relative;
    scroll-margin-top: 40px; /* Ajustá según la altura de tu header */
}
