body {
  font-family: 'Montserrat', sans-serif;
  color: #e7e7e7;
  background-color: #010935;
}

p{
  font-family: inherit;
  font-size:16px;
  line-height:1.7;
  color:#e7e7e7;
}

h1, h2, h3{
  font-family: 'Oswald', sans-serif;
  color: #e7e7e7;
}

.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

/* Título */
.section-title {
  margin-bottom: 30px;
  font-size: 1.8rem;
  color: #fff;
}

/* Contenedor clickeable */
.video-link {
  text-decoration: none;
}

.hero-video {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;

  /* Halo blanco más grueso (varias capas) */
  box-shadow: 
    0 0 10px rgba(255,255,255,0.8),
    0 0 25px rgba(255,255,255,0.6),
    0 0 50px rgba(255,255,255,0.4);

  transition: all 0.4s ease;
}

/* Hover: halo naranja más intenso */
.video-link:hover .hero-video {
  transform: scale(1.08);

  box-shadow: 
    0 0 15px rgba(255,140,0,0.9),
    0 0 35px rgba(255,140,0,0.7),
    0 0 70px rgba(255,140,0,0.5);
}
/* Video */
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: blur(4px) brightness(0.8);
  transition: all 0.4s ease;
}

/* HOVER: crece + cambia halo */
.video-link:hover .hero-video {
  transform: scale(1.08);

  box-shadow: 
    0 0 15px rgba(255,140,0,0.9),
    0 0 35px rgba(255,140,0,0.7),
    0 0 70px rgba(255,140,0,0.5);
}

.video-link:hover .hero-video video {
  filter: blur(0px) brightness(1);
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-video {
    width: 200px;
    height: 200px;
  }
}

.custom_heading-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.custom_heading-container h3 {
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
  position: relative;
}

.custom_heading-container h3::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 50px;
  height: 7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: linear-gradient(to right, #ff7b00, #0077cc); /* naranja → azul */
  border-radius: 15px;
}

.btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Poppins", sans-serif;
}

.btn-box a{
  background: #ff7b00;
  color: white;
  padding: 12px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse{
  0%{
    box-shadow: 0 0 0 0 rgba(255,123,0,0.7);
  }
  70%{
    box-shadow: 0 0 0 15px rgba(255,123,0,0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(255,123,0,0);
  }
}

/* tarjetas de servicio */

.service-card{
  transition: all 0.35s ease;
  border-radius: 8px;
  overflow: hidden;
}

.service-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* imagen zoom suave */

.service-card .img-box img{
  transition: transform 0.4s ease;
}

.service-card:hover .img-box img{
  transform: scale(1.05);
}

/* boton ver mas */

.btn-servicios{
  background:#ff7b00;
  color:white;
  padding:14px 40px;
  border-radius:5px;
  text-decoration:none;
  font-weight:600;
  transition:all .3s ease;
}

.btn-servicios:hover{
  background:#e86f00;
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.3);
}

.btn-box hr {
  width: 75px;
  height: 1.2px;
  border: none;
  background-color: #ff7b00;
  margin: 0;
}

/*header section*/
.sub_page .hero_area {
  height: auto;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section {
  background: linear-gradient(to right, #ff7b00, #0077cc); /* naranja → azul */
  font-family: "Poppins", sans-serif;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 10px 30px;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::before {
  content: "";
  display: none;
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 17px;
  height: 4px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color:  #464646;
  border-radius: 5px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover::before {
  display: block;
}

.custom_nav-container .navbar-nav .nav-item.active a::before {
  display: block;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}



.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand img {
  width: 45px;
  margin-right: 5px;
}

.navbar-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

.navbar-brand span{
  font-weight:700;
  letter-spacing:2px;
  color:#ff7b00;
}


.navbar-brand span {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
}

.custom_nav-container {
  z-index: 99999;
  padding: 5px 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 42px;
}

/*end header section*/
/* slider section */
.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .img-box img {
  width: 100%;
}
.service_section .box{
  height:100%;
  padding:25px;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  font-size: 4rem;
  color: #c05005;
}

.slider_section .detail-box h1 span {
  color:  #c05005;
}

.slider_section .slider_nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .slider_nav-box .custom_carousel-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  position: unset;
  width: 50px;
  height: 50px;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

.slider_section .carousel-control-prev {
  left: 2%;
  background-image: url(../images/left-arrow-black.png);
}

.slider_section .carousel-control-prev:hover {
  background-image: url(../images/left-arrow.png);
}

.slider_section .carousel-control-next {
  right: 2%;
  background-image: url(../images/right-arrow-black.png);
}

.slider_section .carousel-control-next:hover {
  background-image: url(../images/right-arrow.png);
}

/* end slider section */

/* TARJETAS */

.service-card{
  padding:25px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:all .35s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.2);
}

/* IMAGENES */

.glow-img img{
  width:100%;
  border-radius:10px;
  border:3px solid #ff7b00;
  box-shadow:
    0 0 12px rgba(255,123,0,0.6),
    0 0 25px rgba(0,119,204,0.4);
  transition:all .35s ease;
}

.glow-img img:hover{
  transform:scale(1.05);
  box-shadow:
    0 0 18px rgba(255,123,0,0.9),
    0 0 35px rgba(0,119,204,0.6);
}

/* IMAGEN GUIAS */

.guia-img{
  max-width:800px;
  border-radius:10px;
  border:3px solid #ff7b00;
  box-shadow:0 0 20px rgba(255,123,0,0.6);
}

.bg {
  background-image: url(../images/bg.jpg);
  background-size: cover;
}

/* TEXTO ABOUT */

.about-text{
  line-height:1.8;
  color:#555;
  margin-bottom:18px;
}

/* IMAGEN ABOUT */

.about-img-box img{
  width:100%;
  max-width:520px;

  border-radius:10px;

  border:4px solid #ff7b00;

  box-shadow:
    0 0 15px rgba(255,123,0,0.6),
    0 10px 30px rgba(0,0,0,0.25);
  transition:all .35s ease;
}

.about-img-box img:hover{
  transform:scale(1.03);
  filter: blur(4px) brightness(0.8);
  transition: all 0.4s ease;
}

.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGEN BASE */
.img-link img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;

  /* BLUR inicial */
  filter: blur(4px) brightness(0.8);

  /* Halo blanco grueso */
  box-shadow:
    0 0 10px rgba(255,255,255,0.8),
    0 0 25px rgba(255,255,255,0.6),
    0 0 50px rgba(255,255,255,0.4);

  transition: all 0.4s ease;
}

/* HOVER */
.img-link:hover img {
  transform: scale(1.08);

  /* Quita blur */
  filter: blur(0px) brightness(1);

  /* Halo naranja */
  box-shadow:
    0 0 15px rgba(255,140,0,0.9),
    0 0 35px rgba(255,140,0,0.7),
    0 0 70px rgba(255,140,0,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .img-link img {
    width: 200px;
    height: 200px;
  }
}

/* ===== TARJETA ===== */
.service-card {
  transition: all 0.4s ease;
}

/* ===== CONTENEDOR CUADRADO ===== */
.service-card .img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;  
  overflow: hidden;
  border-radius: 50%;    /* círculo perfecto */
}

/* ===== IMAGEN / VIDEO ===== */
.service-card .img-box img,
.service-card .img-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: blur(2px);
  transition: all 0.5s ease;
}

/* ===== HALO ===== */
.service-card {
  box-shadow:
    0 0 10px rgba(255,255,255,0.6),
    0 0 25px rgba(255,255,255,0.4);
}

/* ===== HOVER ===== */
.service-card:hover {
  transform: scale(0.98);

  box-shadow:
    0 0 15px rgba(255,140,0,0.9),
    0 0 35px rgba(255,140,0,0.7),
    0 0 70px rgba(255,140,0,0.4);
}

.service-card:hover img,
.service-card:hover video {
  filter: blur(0px) brightness(1);
}

/* ===== CAROUSEL SUAVE ===== */
.carousel .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;

  transition: opacity 0.8s ease; /*  transición suave */
}

.carousel .img-box img.active {
  opacity: 1;
}

/* TARJETAS MISION VISION */

.mv-card{

  background:#ffffff;

  padding:30px 25px;

  border-radius:12px;

  box-shadow:0 8px 25px rgba(0,0,0,0.12);

  transition:all .35s ease;

  height:100%;
}

.mv-card:hover{

  transform:translateY(-10px);

  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* TITULOS TARJETA */

.mv-card h6{

  font-size:18px;

  font-weight:700;

  color:#000000;

  margin:15px 0 10px;

  text-transform:uppercase;
}
.about_section .img-box img {
   width: 300px;       /* puedes ajustar tamaño */
    height: 300px;      /* asegúrate que sea cuadrado */
    object-fit: cover;  /* recorta la imagen sin deformarla */
    border-radius: 50%; /* la hace circular */
    margin: 0 auto;     /* centra la imagen */
    display: block;
    border: 3px solid #ccc; /* opcional: un borde elegante */
}
/* TEXTO */

.mv-card p{

  font-size:14px;

  color:#0077cc;

  line-height:1.7;
}
.service_section {
  text-align: center;
  
  position: relative;
}
.service_section .detail-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service_section .detail-box .btn-box{
  margin-top: 15px;
}
.service_section .custom_heading-container {
  margin-bottom: 15px;
}

.service_section .service_container {
  padding: 45px 0 75px 0;
}

.service_section .box.b-2 .detail-box {
  width: 60%;
  text-align: right;
}

.service_section .box.b-2 .detail-box p {
  min-height: 52px;
}

.service_section .box.b-2 .detail-box a {
  min-width: 100px;
}

.service_section .box.b-3 .detail-box {
  width: 70%;
  margin-left: auto;
  text-align: left;
}

.service_section .box.b-3 .detail-box p {
  min-height: 52px;
}

.service_section .box.b-3 .detail-box a {
  min-width: 100px;
}

.service_section .detail-box h6 {
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;

  /* GRADIENTE */
  background: linear-gradient(90deg, #ff7b00, #0077cc);
  background-clip: text;              /* 👈 estándar */
  -webkit-background-clip: text;      /* 👈 Safari/Chrome */

  color: transparent;                 /* 👈 estándar */
  -webkit-text-fill-color: transparent; /* 👈 WebKit */

  /* GLOW */
  animation: glow 2s infinite alternate;
}

/* ANIMACIÓN */
@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255,123,0,0.6);
  }
  to {
    text-shadow: 0 0 15px rgba(0,119,204,0.9);
  }
}







.work_section {
  background: linear-gradient(to right, #ff7b00, #0077cc); /* naranja → azul */
}

.work_section .custom_heading-container h3 {
  color: #ffffff;
}

.work_section .custom_heading-container h3::before {
  background-color: #ffffff;
}

.work_section .work_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 45px 0;
}

.work_section .work_container .box {
   width: 275px;
  height: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* centra verticalmente el contenido */
  padding: 20px;
  background: linear-gradient(to right, #F2F2F2, #00233b); /* naranja → azul */
  border-radius: 50%;        /* ahora la caja es redonda */
  margin: 45px 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); /* sombra inicial ligera */
          
}.work_section .work_container .box .img-box {
  width: 120px;
  height: 120px;
}

.work_section .work_container .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* la imagen se ajusta sin deformarse */
  border-radius: 0;    /* la imagen queda normal, no redonda */
  box-shadow: none;    /* quitamos sombra en imagen */
}

/* Al pasar el cursor, la sombra solo aparece en la caja */
.work_section .work_container .box:hover {
  transform: scale(1.08); /* crece suavemente */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* sombra elegante */
}

.work_section .work_container .box .img-box {
  width: 150px;
}

.work_section .work_container .box .img-box img {
  width: 100%;
}

.work_section .work_container .box .name {
  margin-top: 10px;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
  animation: glow 2s infinite alternate;
  z-index: 3;
  position: relative;
}

.work_section .work_container .box.b-1, .work_section .work_container .box.b-3 {
  -webkit-animation: odd-box-animate 2s infinite;
          animation: odd-box-animate 2s infinite;
}

.work_section .work_container .box.b-2, .work_section .work_container .box.b-4 {
  -webkit-animation: even-box-animate 2s infinite;
          animation: even-box-animate 2s infinite;
}

@-webkit-keyframes odd-box-animate {
  0% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  50% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  100% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
}

@keyframes odd-box-animate {
  0% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  50% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  100% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
}

@-webkit-keyframes even-box-animate {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

@keyframes even-box-animate {
  0% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
  50% {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
  100% {
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}

.work_section .btn-box a {
  color: #ffffff;
}

.work_section .btn-box hr {
  background: linear-gradient(to right, #ff7b00, #0077cc); /* naranja → azul */
}

.contact_section input,
.contact_section select {
  width: 100%;
  border: 0;
  padding: 15px 12px;
  background-color: #f2f2f2;
  outline: none;
  margin: 10px 0;
}

.contact_section input::-webkit-input-placeholder,
.contact_section select::-webkit-input-placeholder {
  color: #3a3a3a;
}

.contact_section input:-ms-input-placeholder,
.contact_section select:-ms-input-placeholder {
  color: #3a3a3a;
}

.contact_section input::-ms-input-placeholder,
.contact_section select::-ms-input-placeholder {
  color: #3a3a3a;
}

.contact_section input::placeholder,
.contact_section select::placeholder {
  color: #3a3a3a;
}

.contact_section button {
  background: linear-gradient(to right, #ff7b00, #0077cc); /* naranja → azul */
  padding: 12px 55px;
  outline: none;
  border: none;
  border: 1px solid  #1a2e35;
  color: #fff;
  margin-top: 25px;
}

.contact_section button:hover {
  color:  #1a2e35;
  background-color: transparent;
}

.client_section .client_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 600px;
  border: 1px solid #cccccc;
  padding: 45px 35px 35px 25px;
  background-color: #000000;
  margin: 0 auto;
}

.client_section .client_container .detail-box p {
  text-align: center;
}

.client_section .client_container .client_id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
}

.client_section .client_container .client_id .img-box {
  width: 75px;
  margin-right: 10px;
}

.client_section .client_container .client_id .img-box img {
  width: 100%;
}

.client_section .client_container .client_id .name h5 {
  text-transform: uppercase;
}

.client_section .client_container .client_id .name h6 {
  color:  #1a2e35;
}

.info_section{
background:#000000;
color:white;
}

.footer-title{
font-weight:700;
letter-spacing:3px;
text-transform:uppercase;
position:relative;
}

.footer-title::after{
content:"";
display:block;
width:80px;
height:4px;
background:#ff7b00;
margin:12px auto;
}

/* tarjetas */

.info-card{
background:#000000;
padding:25px;
border-radius:8px;
transition:all .3s ease;
height:100%;
}

.info-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.4);
border-bottom:3px solid #ff7b00;
}

/* links */

.info-link{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
margin:10px 0;
color:white;
text-decoration:none;
}

.info-link img{
width:22px;
}

.info-link:hover{
color:#ff7b00;
}

/* logo */

.footer-logo{
  width:160px;
max-width:100%;

filter:drop-shadow(0 5px 10px rgba(0,0,0,0.5));
}

@media (max-width: 768px) {
  .work_section .work_container .box {
    transform: none !important; /* se queda normal */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* sombra fija */
  }
}

/* end footer section*/
/*# sourceMappingURL=style.css.map */
/* Centrar contenido de la sección de servicios */
.service_container {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    flex-wrap: wrap;         /* Si hay más cajas, se acomodan */
    gap: 30px;               /* Espacio entre tarjetas */
    text-align: center;      /* Centra el texto */
}

.service_section p {
    text-align: center; /* Centra el párrafo debajo del título */
}
.btn-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.btn-box a {
    flex-shrink: 0;
}

/* Líneas a los lados */
.btn-box::before,
.btn-box::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ffffff; /* color de las líneas */
    margin: 0 10px;
}
/* Forzar la tipografía Roboto en toda la sección de Vision */
.work_section,
.work_section * {
    font-family: 'Roboto', sans-serif !important;
    color: #000000;
}

/* Ajustar título para que combine con el resto */
.work_section h3 {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Ajustar los textos debajo de los iconos */
.work_section h6 {
    font-weight: 500;
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
}
.message-box {
  width: 100%;
  height: 150px;
  resize: none;
  padding: 10px;
  border-radius: 4px;
}
/* Centrar el texto perfectamente */
.slider_section .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  width: 80%;
}

/* Texto más elegante */
.slider_section .carousel-caption h1 {
  font-size: 60px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.slider_section .carousel-caption h1 span {
  font-size: 40px;
  font-weight: 300;
}

.slider_section .carousel-caption p {
  font-size: 20px;
  max-width: 700px;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

/* Difuminar el video al pasar el mouse */
.slider_section video {
  transition: 0.5s ease;
}

.slider_section:hover video {
  filter: blur(3px) brightness(0.7);
}

/* Opcional: fondo oscuro detrás del texto para más contraste */
.slider_section .carousel-caption::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  border-radius: 10px;
  padding: 20px;
}
/* Efecto brillo */
@keyframes textGlow {
  0% {
    text-shadow: 0 0 0px rgba(255,255,255,0);
  }
  100% {
    text-shadow: 0 0 15px rgba(255,255,255,0.7);
  }
}

/* Se aplica al título */
.slider_section .carousel-caption h1 {
  animation: fadeUp 3s ease forwards, textGlow 3s ease forwards;
  animation-delay: 0.2s;
}
@keyframes softGlow {
  0% {
    text-shadow: 0 0 0px rgba(255,255,255,0);
  }
  100% {
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
  }
}

.slider_section .carousel-caption p {
  animation: fadeUp 5s ease forwards, softGlow 5s ease forwards;
  animation-delay: 5s;
}
/* Animación del botón */
@keyframes glowButton {
  0% {
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 0 0px rgba(255,140,0,0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 15px #F2F2F2;
  }
}

.slider_nav-box .btn-box a {
  animation: glowButton 1.8s ease forwards;
  animation-delay: 1s;

}
/* Centrado general */

/* Animación de entrada */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 5s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.clientes_section{
background:#010935;
}

/* TARJETAS */

.cliente-card{
background:white;
padding:30px;
border-radius:10px;
border-top:4px solid #ff7b00;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:all .35s ease;
height:100%;
}

.cliente-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
border-top:4px solid #0077cc;
}

/* TITULO */

.cliente-card h5{
font-weight:700;
color:#1a2e35;
margin-bottom:15px;
}

/* TEXTO */

.cliente-card p{
color:#3f3f3f;
line-height:1.6;
}




@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* Imagen del logo */
.main-logo {
  width: 160px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

/* Texto con brillo */
.glow-text {
  font-size: 2.2rem;
  margin-top: 10px;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
  animation: glow 2s infinite alternate;
  z-index: 3;
  position: relative;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 8px #ffdf6b, 0 0 15px #ffdf6b;
  }
  100% {
    text-shadow: 0 0 18px #ffd74d, 0 0 28px #ffdd66;
  }
}

/* Caja con hover */
.info-box {
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-scale:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Enlaces estilizados */
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.info-link:hover {
  color: #ffcc33;
}

/* Íconos */
.info-link img {
  width: 20px;
  filter: brightness(1.1);
}
/* Quitar subrayado y estilo base */
.navbar-nav .nav-link {
  color: #ffffff;
  padding: 10px 18px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* Efecto de brillo dorado */
.nav-glow:hover {
  color: #ffda6b !important;
  text-shadow: 0 0 8px #ffda6b, 0 0 14px #ffb400;
  transform: scale(1.08);
}

/* Línea luminosa debajo */
.nav-glow::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #ffda6b;
  box-shadow: 0 0 6px #ffe08a;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.nav-glow:hover::after {
  width: 80%;
}

/* Eliminación del botón de búsqueda */
.nav_search-btn {
  display: none !important;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* INTRO TEXTO */

.vision-intro{
  max-width:750px;
  margin:20px auto;
  color:#dfdfdf;
  line-height:1.7;
}

/* TARJETAS */

.vision-card{
  background:#ffffff;
  padding:30px 20px;
  border-radius:12px;

  box-shadow:0 8px 20px rgba(0,0,0,0.1);

  transition:all .35s ease;
 text-align:center;
  height:100%;
}

/* HOVER */

.vision-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* ICONOS */

.vision-icon img{
  width:70px;
  margin-bottom:15px;

  filter:drop-shadow(0 0 8px rgba(255,123,0,0.4));
}

/* TITULOS */

.vision-card h6{
  font-weight:700;
  font-size:18px;
  margin-top:10px;
  margin-bottom:12px;
  color:#ff7b00; /* naranja minero */

  letter-spacing:1px;
  text-transform:uppercase;

  position:relative;
  display:inline-block;
}

/* línea decorativa debajo */

.vision-icon{
  width:90px;
  height:90px;
  margin:0 auto 15px;

  border-radius:50%;

  background:linear-gradient(135deg,#0077cc,#ff7b00);

  display:flex;
  align-items:center;
  justify-content:center;

  padding:4px;

  transition:all .35s ease;
}

/* IMAGEN INTERNA */

.vision-icon img{
  width:70px;
  height:70px;

  border-radius:50%;

  background:#fff;
  padding:8px;

  transition:all .35s ease;
}


/* EFECTO HOVER */

.vision-card:hover .vision-icon{

  transform:scale(1.15);

  box-shadow:
    0 0 15px rgba(255,123,0,0.6),
    0 0 25px rgba(0,119,204,0.4);
}

/* RESALTE DEL ICONO */

.vision-card:hover .vision-icon img{
  transform:scale(1.05);
}

.vision-card:hover h6{
  color:#0077cc;
  
}

.vision-card h6::after{
  content:"";
  display:block;
  width:40px;
  height:3px;
  margin:6px auto 0;

  background:linear-gradient(90deg,#ff7b00,#0077cc);
  border-radius:3px;
}

.vision-card h6{
  font-weight:700;
  margin-bottom:10px;
  color:#0d1b2a;
}

/* TEXTO */

.vision-card p{
  font-size:16px;
  text-align: justify;
  color:#333333;
  line-height:1.6;
}


/* CONTENEDOR CENTRAL */
.center-logo-box {
  position: relative;
  width: 220px;
  height: 260px;
  margin: 0 auto;
  text-align: center;
}
/* SECCIÓN GENERAL */
.ubicacion-section {
  background: #010935; /* gris claro elegante */
}

/* TÍTULO */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #d8d8d8; /* azul oscuro corporativo */
  letter-spacing: 1px;
  text-transform: uppercase;
  
}
.section-text{
  max-width:750px;
  margin:15px auto 0;
  font-size:1.05rem;
  color:#555;
  line-height:1.7;
}

/* LÍNEA DECORATIVA */


@keyframes slideGrow {
  from { width: 0; opacity: 0; }
  to { width: 120px; opacity: 1; }
}

/* CONTENEDOR DEL MAPA */
.map-box {
  background: #F2F2F2;
  padding: 15px;
  border-radius: 16px;
  max-width: 820px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

/* GLOW SUAVE */
.map-box::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: radial-gradient(
    rgba(255, 123, 0, 0.20),
    transparent
  );
  filter: blur(12px);
  border-radius: 50%;
}

.cliente-logo{
  width:110px;
  height:110px;
  object-fit:cover;
  border-radius:50%;
  display:block;
  margin:0 auto 15px auto;
  border:4px solid #ff7b00;
  padding:6px;
  background:white;
  transition:all .3s ease;
}

.cliente-logo:hover{
  transform:scale(1.08);
  border-color:#0077cc;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* TITULO PRINCIPAL */

.glow-title{
 font-size:2.5rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#ffffff;
  display:inline-block;
  position:relative;

  animation:breathingColor 3s ease-in-out infinite;

}
@keyframes breathingColor{

  0%{
    color:#ffffff;
    text-shadow:0 0 0 rgba(255,123,0,0);
  }

  50%{
    color:#ff7b00;
    text-shadow:
      0 0 8px rgba(255,123,0,0.8),
      0 0 18px rgba(255,123,0,0.6);
  }

  100%{
    color:#ffffff;
    text-shadow:0 0 0 rgba(255,123,0,0);
  }



}
/* LINEA ANIMADA DEBAJO */



/* ANIMACION DE ENTRADA */

@keyframes titleFade{
  from{
    opacity:0;
    transform:translateY(-20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ANIMACION DE LINEA */

@keyframes lineGrow{
  from{
    width:0;
    opacity:0;
  }
  to{
    width:120px;
    opacity:1;
  }
}

/* EFECTO DE BRILLO SUAVE */

.glow-title:hover{
  color:#ff7b00;
  text-shadow:
    0 0 8px rgba(255,123,0,0.7),
    0 0 16px rgba(255,123,0,0.5);
}

.linea-minera{
  width:80%;
  height:4px;


  background:linear-gradient(
    90deg,
    #ff7b00,
    #ffb347,
    #0077cc,
    #ff7b00
  );

  background-size:300% 100%;

   margin:25px auto;

  animation:lineFlow 6s linear infinite;
}

/* animación que mueve el gradiente */

@keyframes lineFlow{

  0%{
    background-position:0% 50%;
  }

  100%{
    background-position:300% 50%;
  }

}