/*CSS RESET WEBSITE */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Montserrat", sans-serif;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8); /* Darken on scroll */
  transition: background-color 0.3s; /* Smooth transition */
}
/* Custom styles for Swiper */
.swiper-button-prev,
.swiper-button-next {
  color: white;
  /* Adjust size, color, etc., as needed */
}
.swiper-pagination-bullet-active {
  background-color: white;
  /* Adjust active pagination bullet color, etc., as needed */
}
.swiper-pagination-bullet {
  opacity: 0.5;
  background-color: white;
  /* Adjust inactive pagination bullets, etc., as needed */
}
/* Custom styles for overlay text */
.overlay-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  /* Adjust as needed */
}

.border-glow {
  box-shadow: 0 4px 15px 0 rgba(30, 144, 255, 0.75);
}
.navbar {
  transition: box-shadow 0.3s ease-in-out;
}
@keyframes borderFade {
  from {
    box-shadow: 0 4px 15px 0 rgba(30, 144, 255, 0);
  }
  to {
    box-shadow: 0 4px 15px 0 rgba(30, 144, 255, 0.75);
  }
}

.navbar.fade-border {
  animation: borderFade 1.5s ease-in-out infinite alternate;
}

/* Estilos para el slider */
.slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  display: none;
  position: absolute;
}

.slide.active {
  display: block;
}

/* Estilos para las secciones */
.section {
  padding: 20px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 15px;
}

/* Ajustes para el servicio y productos */
.service-container,
.product-container {
  display: flex;
  justify-content: space-between;
}

.service-box,
.product-box {
  width: calc(33.333% - 10px);
  margin-right: 15px;
}

.service-box:last-child,
.product-box:last-child {
  margin-right: 0;
}

/* Ajustes para los testimonios */
.testimonial {
  background: #f0f0f0;
  padding: 10px;
  margin-top: 20px;
}
/* Estilos para el slider */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Ajusta al ancho máximo deseado */
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none; /* Ocultar slides por defecto */
  position: absolute;
  width: 100%;
}

.slide.active {
  display: block; /* Mostrar slide activo */
}

.slider-container img {
  width: 100%;
  height: auto;
}

/* Controles del Slider */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 70%;
  width: auto;
  margin-top: -10px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 50; /* Asegúrate de que las flechas estén sobre los otros elementos */
  margin-bottom: 30px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.indicators {
  margin-top: -30px;
}

.progress-bar-container {
  height: 20px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
  width: 100px;
  margin: auto;
}
.progress-bar {
  height: 100%;
  transition: width 4.4s ease;
}
.progress-label {
  text-align: right;
  margin-top: 5px;
}
.hover-effect:hover .progress-bar {
  background-color: #cbd5e1; /* Cambio de color en hover */
}
.chart-container {
  width: 400px; /* Ajusta esto según el tamaño que desees */
  height: 400px; /* Ajusta esto para la altura */
}
/* Responsiveness */
@media (min-width: 768px) {
  .chart-container {
    width: 500px; /* Tamaño mayor en pantallas más grandes */
    height: 500px;
  }
}

.backgroundcc {
  background-color: #3b82f6;
}

h3,
ul,
p {
  color: #3b82f6;
}

barras {
  padding-bottom: 40px;
}

.loader {
  width: 100px; /* Tamaño del spinner */
  height: 100px; /* Tamaño del spinner */
  border: 5px solid transparent; /* Borde transparente */
  border-top-color: #3498db; /* Color del borde superior */
  border-radius: 50%; /* Hacerlo circular */
  animation: spin 1s linear infinite, fill 1s forwards; /* Animaciones de giro y de relleno */
  background-size: 0% 100%; /* Inicio sin relleno */

  /* ...resto del CSS... */
}

@keyframes spin {
  0% {
    transform: rotate(0deg); /* Inicio del giro */
  }
  100% {
    transform: rotate(360deg); /* Fin del giro */
  }
}

@keyframes fill {
  0% {
    background-size: 0% 100%; /* Inicio sin relleno */
  }
  100% {
    background-size: 100% 100%; /* Fin completamente relleno */
  }
}

#loadingScreen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.9); /* Fondo semi-transparente */
}

@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.progress-bar {
  animation: fillBar 2s ease-in-out forwards;
}

#progressBar1 .progress-bar {
  animation-delay: 0.5s; /* Empieza a los 0.5 segundos */
}

#progressBar2 .progress-bar {
  animation-delay: 0.75s; /* Empieza a los 0.75 segundos */
}

#progressBar3 .progress-bar {
  animation-delay: 1s; /* Empieza a los 1 segundo */
}

bar1 {
  color: #d1d5db;
}
bar2 {
  color: #93c5fd;
}
bar3 {
  color: #60a5fa;
}

body {
  background-color: white;
}

textarea {
  resize: none;
}

/* =========================================================================================================
    CONTAINER 4: NOVEDADES
========================================================================================================= */

.notify_small_ctn {
  width: 463px;
  height: 90%;
  margin-left: 10px;
  margin-right: 10px;
  background-color: #0071b3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  top: 5%;
  transition: all 0.0001s ease-out;
  /*especifico a navegadores:*/
  -webkit-transition: all 0.0001s ease-out; /*Google*/
  -o-transition: all 0.0001s ease-out; /*Opera*/
  -moz-transition: all 0.0001s ease-out; /*Mozilla*/
  -ms-transition: all 0.0001s ease-out;
}

.notify_small_ctn:hover {
  cursor: pointer;
}

.my_notifications_ctn {
  height: 100%;
  position: relative;
  text-align: left;
  padding-left: 15%;
  padding-right: 15%;
}

.notify_small_img {
  height: 50%;
  width: auto;
  position: absolute;
  top: 0;
}

.notify_container_fullscreen_size .notify_arrow_left {
  position: absolute;
  left: 0;
  top: 0;
  width: 15%;
  height: 640px;
  z-index: 998;
  text-align: center;
}

.notify_container_fullscreen_size .notify_arrow_right {
  position: absolute;
  right: 0;
  top: 0;
  width: 15%;
  height: 640px;
  z-index: 998;
  text-align: center;
}

.notify_small_title {
  width: auto;
  height: auto;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  position: absolute;
  text-align: left;
  left: 10px;
  top: 51%;
}

.notify_small_date {
  width: auto;
  height: auto;
  font-size: 16px;
  color: #ffffff;
  position: absolute;
  text-align: right;
  right: 10px;
  top: 52%;
}

.notify_small_text {
  width: 95%;
  height: 42%;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  position: absolute;
  text-align: justify;
  bottom: 2%;
  left: 2.5%;
}

.full_screen_notification {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.9);
  background-image: url("../img/backgrounds/malla.png");
}

.fully_ctn {
  width: 90%;
  height: 90%;
  position: absolute;
  left: 5%;
  top: 5%;
  background-color: #e3e3e3;
  border-radius: 2px;
  overflow: hidden;
}

.fully_ctn .img_ctn {
  width: 60%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  overflow: hidden;
}

.fully_ctn .img_ctn img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fully_ctn .fully_text_ctn {
  width: 40%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow-y: scroll;
}

.fully_ctn .fully_text_ctn h1 {
  position: relative;
  width: auto;
  height: auto;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 18px;
  color: #0071b3;
  font-weight: bold;
  text-align: justify;
}

.fully_ctn .fully_text_ctn p {
  position: relative;
  width: auto;
  height: auto;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 18px;
  color: #000000;
  font-weight: normal;
  text-align: justify;
}

.close_notify {
  width: 30px;
  height: 30px;
  position: fixed;
  z-index: 100000;
  top: 3.5%;
  right: 4%;
}

.close_notify:hover {
  cursor: pointer;
}

.notify_arrow_left img {
  position: relative;
  width: 60px;
  padding-top: 291px;
  opacity: 0.85;
  transition: all 0.2s ease-out;
  /*especifico a navegadores:*/
  -webkit-transition: all 0.2s ease-out; /*Google*/
  -o-transition: all 0.2s ease-out; /*Opera*/
  -moz-transition: all 0.2s ease-out; /*Mozilla*/
  -ms-transition: all 0.2s ease-out;
}
.notify_arrow_right img {
  position: relative;
  width: 60px;
  padding-top: 291px;
  opacity: 0.85;
  transition: all 0.2s ease-out;
  /*especifico a navegadores:*/
  -webkit-transition: all 0.2s ease-out; /*Google*/
  -o-transition: all 0.2s ease-out; /*Opera*/
  -moz-transition: all 0.2s ease-out; /*Mozilla*/
  -ms-transition: all 0.2s ease-out;
}

@media only screen and (max-width: 1000px) {
  .fully_ctn .img_ctn {
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
  }

  .fully_ctn .img_ctn img {
    width: auto;
    height: 100%;
    top: 0;
  }

  .fully_ctn .fully_text_ctn {
    width: 100%;
    height: 50%;
    top: 50%;
    left: 0;
  }
}

.multilogos_ctn {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  height: auto;
  position: relative;
  top: 50%;
  transform: perspective(1px) translateY(-50%);
}

.multilogos_ctn img {
  width: 100px;
  height: auto;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  opacity: 0.8;
  filter: grayscale(1);
  transition: all 0.2s ease-out;
  /*especifico a navegadores:*/
  -webkit-transition: all 0.2s ease-out; /*Google*/
  -o-transition: all 0.2s ease-out; /*Opera*/
  -moz-transition: all 0.2s ease-out; /*Mozilla*/
  -ms-transition: all 0.2s ease-out;
}

.multilogos_ctn img:hover {
  cursor: pointer;
  opacity: 1;
  filter: grayscale(0);
}
