/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #1F6EB3;
  text-decoration: none;
}

a:hover {
  color: #00A4E7;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 95px;
  bottom: 15px;
  z-index: 996;
  background: #00A4E7;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #211B89;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #111111;
}

#header .logo a span {
  color: #1F6EB3;
}

#header .logo img {
  max-height: 65px;
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  padding-left:10px;
  padding-right:25px!important;
  padding-top:10px;
  padding-bottom:10px;
  background-color: #1F6EB3;
  color: #ffffff!important;
  border-radius: 7px;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}


.get-started-btn:hover {
  /*background-color:#180963!important;
  color:#ffffff;*/
   background-position: right center;
}

.btn-1 {
  background-image: linear-gradient(to right, #1f6e96 0%, #180963 51%, #1f6e96 100%);
}

/*.get-started-btn:active {
  background-color:#180963!important;
  color:#ffffff;
}*/


@media (max-width: 992px) {
  .get-started-btn {
    width:130px;
    margin: 0 15px 0 15px;
    padding: 6px 18px;
  }
}


/*////////////////////////////////////////////////////////////////////////////////////////*/

/*/////// Boton Enviar ///////*/

.buttn {
  cursor: pointer;
  flex: 1 1 auto;
  margin-top:0px;
  padding: 12px 40px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border: none;
  background-image: linear-gradient(to right, #1f6e96 0%, #180963 51%, #1f6e96 100%);
 /* text-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px #eee;*/
  border-radius: 8px;
 }

/* Demo Stuff End -> */

/* <- Magic Stuff Start */

.buttn:hover {
  background-position: right center; /* change the direction of the change here */
  color: white;
 }

.btn-1 {
  background-image: linear-gradient(to right, #1f6e96 0%, #180963 51%, #1f6e96 100%);
}


.contacto-txt {
  color: #444444;
}

.contacto-txt:hover {
  color: #1F6EB3;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color:#1F6EB3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1F6EB3;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #111111;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #111111;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #1F6EB3;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #1F6EB3;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/* //// se agrega linea rollover y activo ////*/

/* Línea animada en los ítems del menú principal */
.navbar ul li:not(:last-child) a {
  position: relative;
  display: inline-block; /* hace que el ancho del enlace se ajuste al texto */
  padding: 10px 0; /* mantiene espacio vertical, elimina el padding izquierdo */
  margin-left: 30px; /* reemplaza padding del original */
  overflow: hidden;
  transition: color 0.3s ease;
}

/* Línea base oculta */
.navbar ul li:not(:last-child) a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #1F6EB3;
  transition: width 0.3s ease;
}

/* Al hacer hover: la línea crece de izquierda a derecha */
.navbar ul li:not(:last-child) a:hover::after {
  width: 100%;
}

/* Ítem activo: línea visible y fija */
.navbar ul li:not(:last-child) a.active::after,
.navbar ul li:not(:last-child):hover a.active::after {
  width: 100%;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/* ---- HERO SLIDER ---- */
   
    .hero-carousel {
      height: 900px;
      overflow: hidden;
      position: relative;
    }

    .hero-carousel .carousel-item {
      height: 900px;
      position: relative;
    }

    .hero-carousel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      transition: transform 6s ease, opacity 1s ease;
    }

    /* efecto zoom-in mientras la imagen está activa */
    .hero-carousel .carousel-item.active img {
      transform: scale(1.1);
    }

    /* --- Animación inicial del primer slide --- */
    .hero-carousel .carousel-item:first-child.active img {
      animation: initialZoom 6s ease forwards;
    }

    @keyframes initialZoom {
      0% { transform: scale(1); }
      100% { transform: scale(1.1); }
    }

    /* capa oscura semitransparente sobre la imagen */
    .hero-carousel .carousel-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      z-index: 1;
    }



/* ---- TEXTO FIJO SOBRE EL SLIDER ---- */ 
    .hero-content { 
      position: absolute; 
      top: 50%; 
      left: 10%; 
      transform: translateY(-50%); 
      text-align: left; 
      z-index: 3; 
      opacity: 0; 
      animation: fadeUp 1.8s ease-out forwards; 
      animation-delay: 0.3s; 
      } 

    .hero-content h1 { 
      font-size: 3.7rem; 
      font-weight: 700; 
      color: #fff; 
      text-shadow: 0 2px 10px rgba(0,0,0,0.7); 
      margin-bottom: 2.3rem;
      opacity: 0;
      transform: translateY(30px);
      margin-bottom: 1rem;
      animation: fadeUp 1.5s ease-out forwards;
      animation-delay: 0.3s; /* comienza primero */ 
      }

      html {
       scroll-behavior: smooth;
      }

      .button-scroll{
        position:absolute;
        z-index: 6; 
        top: 91%!important;
        left:44%!important; 
        bottom:0px;
      }


      @media (max-width: 1300px) {
         
         .button-scroll{
           top: 91%!important;
           left:42%!important;
        }

      }



      @media (max-width: 1200px) {
         
         .button-scroll{
           top: 91%!important;
           left:40%!important;
        }

      }


      @media (max-width: 1100px) {
         
         .button-scroll{
           top: 91%!important;
           left:38%!important;
        }

      }


      @media (max-width: 990px) {
         
         .button-scroll{
           top: 91%!important;
           left:39%!important;
        }

      }


      @media (max-width: 767px) {
         
         .button-scroll{
           top: 91%!important;
           left:29% !important;
        }

      }

    
     /* BOTÓN: aparece después */
     #buttonhero.buttn { 
        padding: 0.75rem 1.5rem; 
        font-size: 1.1rem; 
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1.5s ease-out forwards;
        animation-delay: 1.0s; /* desfase respecto al título */
        display: inline-flex;
        align-items: center;
        gap: 8px; /* separa el texto del ícono */
        transition: all 0.3s ease;
        color: #fff; /* texto blanco */ 
        }    
 
      /* Animación común */
      @keyframes fadeUp { 
        0% { opacity: 0; 
             transform: translateY(30px); 
            } 
        100% { opacity: 1; 
               transform: translateY(-50%); 
               } 
        } 

      /* Ícono blanco */
      #buttonhero i {
        color: #fff; /* flecha blanca */
        transition: transform 0.3s ease;
      }

      /* Al pasar el mouse: la flecha se desplaza suavemente */
      #buttonhero:hover i {
        transform: translateX(6px);
      } 

      @media (max-width: 767px) {
          
          .hero-content h1 { 
            font-size: 2.5rem;
          }

          #buttonhero.buttn { 
           padding: 0.75rem 1.5rem; 
           font-size: 0.95rem; 
          }
      } 

  
    /* ---- INDICADORES ---- */
    .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.6);
      transition: all 0.3s ease;
    }

    .carousel-indicators .active {
      background-color: #fff;
      transform: scale(1.3);
    }


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

.section-title {
  color: #1F6EB3;
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  padding-top: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #1F6EB3;
  bottom: 0;
  left: calc(50% - 25px);
}

/*//////////////////////*/

.title-wrap {
    margin: 0 auto 0px;
    max-width: 300px;
}
.section-title-box::before {
    background-color: #1F6EB3;
    bottom: 0;
    content: "";
    display: block;
    height: 4px;
    left: 35%;
    margin: 0 0 -2px;
    position: absolute;
    width: 30%;
}
.section-title-box {
    border-bottom: 1px solid #686868;
    margin: 0 0 40px;
    position: relative;
}

.title-wrap .section-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    margin: 0px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

/*//////titulos2///////*/

.title-wrap2 {
    margin: 0 auto 0px;
    max-width: 400px;
}
.section-title-box2::before {
    background-color: #1F6EB3;
    bottom: 0;
    content: "";
    display: block;
    height: 4px;
    left: 0%;
    margin: 0 0 -2px;
    position: absolute;
    width: 30%;
}
.section-title-box2 {
    border-bottom: 1px solid #686868;
    margin: 0 0 20px;
    position: relative;
}
.title-wrap2 .section-title2 {
    font-size: 32px;
    font-weight: bold;
    color: #1F6EB3;
    line-height: 1.2;
    margin: 0px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}


/* Call To Action Index
--------------------------------*/
#call-to-action {
  background-color: #000000;
  background:linear-gradient(45deg, rgba(31, 110, 150, 1), rgba(34, 9, 99, 1)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-blend-mode: multiply;
  background-size: cover;
  padding: 60px 0;
  text-align: left;
}

/*#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}*/
 
.contenedor-cta {
   display: flex;
   flex-direction:row;
   flex-wrap:wrap;
} 

.cta-txt{
  font-family: "Raleway", sans-serif;
  font-size: 30px;
}

#call-to-action p {
  color: #fff;
}
#call-to-action .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 30px;
  transition: 0.5s;
  margin-top: 20px;
  border: 2px solid #fff;
  color: #fff;
}


#call-to-action .cta-btn:hover {
  background: #ffffff;
  border: 2px solid #fff;
  font-family: "Raleway", sans-serif;
  color:#1F6EB3;
}


@media (max-width: 768px) {
   #call-to-action .cta-btn {
      font-family: "Raleway", sans-serif;
      font-weight: 500;
      font-size: 18px;
      letter-spacing: 1px;
      display: inline-block;
      text-align: center;
      padding: 8px 28px;
      border-radius: 30px;
      transition: 0.5s;
      margin-top: 10px;
      border: 1px solid #fff;
      color: #fff;
  }

  .cta-btn {

      margin-left:30%;
  }

  #call-to-action .cta-btn:hover {
    background: #ffffff;
    border: 1px solid #fff;
    font-family: "Raleway", sans-serif;
    color:#1F6EB3;
  } 

  .cta-txt{
      font-family: "Raleway", sans-serif;
      font-size: 18px;
      text-align: center;
      
  } 
}

/*/////// GRACIAS //////////////*/

.cont-volver {

  margin-bottom:2rem;
  margin-top:-4rem!important;
  margin-left:0rem!important;
  background: transparent;
  border: 1px solid transparent;
}

.container-gracias {
    width: 100%;
    background-color: #ffffff;
    margin-top:120px;
}

.gracias {
    height:120px;
    text-align:center!important;
    font-family: "Open-sans", sans-serif;
    font-size: 1rem;
    color: #444444!important;
}

.btn-volver {
   background:#1F6EB3;
   padding:8px 25px;
   color:#ffffff;
   margin:0 auto;
   border-radius:50px;
   transition: 0.3s; 
}

.btn-volver:hover {
   background:#ffffff;
   color:#1F6EB3;
   border: 1px solid #1F6EB3;
   margin:0 auto;
}

.volver {
    position: relative;
    margin: auto 0;
    left: 0;
    top: 2.0rem;
    bottom: 0;
    border-radius: 50%;
    text-align:center!important;
}



/*///////////  FOOTER  ////////////////*/

.section-title-box3::before {
    background-color: #ffffff;
    bottom: 0;
    content: "";
    display: block;
    height: 4px;
    left: 0%;
    margin: 0 0 -2px;
    position: absolute;
    width: 30%;
}

.section-title-box3 {
    border-bottom: 1px solid #ffffff;
    margin: 0 0 15px;
    position: relative;
    width: 75%;
}

.title-wrap3 .section-title3 {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.2;
    margin: 0px;
    position: relative;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}


/*//////////////////////////////*/

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.index {
  width:80%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.txt-home, .txt-innerpage {
  font-size: 1.05rem;
  font-weight: normal;
  color:#5B5B5B;
  text-align: justify;
}

.txt-innerpage {
  font-size: 1.15rem;
}

.backg-home {
  background: url("../img/backg/backg1-home.jpg") top center no-repeat;
  background-size:cover;
  position: relative;
  width: 100%;
  height: 50vh;
  padding-top: 80px;
}



@media (max-width: 768px) {
  .index {
    width:80%;
    margin-left: auto;
    margin-right: auto;
  }

  .backg-home {
    background: url("../img/backg/backg1-home.jpg") top center no-repeat;
    background-size:cover;
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top:80px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  height:256px!important;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 90px;
  padding-bottom: 0px;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 105px;
  color: #fff;
}

.backg-prod, .backg-serv, .backg-calidad, .back-clientes, .back-contacto {
  width: 100%;
  background: url("../img/breadcrumbs-backg/backg-productos.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
}

.backg-serv {
  background: url("../img/breadcrumbs-backg/backg-servicios.jpg") top center no-repeat;
}

.backg-calidad {
  background: url("../img/breadcrumbs-backg/backg-calidad.jpg") top center no-repeat;
}

.backg-clientes {
  background: url("../img/breadcrumbs-backg/backg-clientes.jpg") top center no-repeat;
}

.backg-contacto {
  background: url("../img/breadcrumbs-backg/backg-contacto.jpg") top center no-repeat;
}


.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #ffffff;
}

.breadcrumbs ol a:hover {
  color: #aaaaaa;
  transition: 0.3s;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ffffff;
  content: "/";
}

/*--------------------------------------------------------------
# Clientes
--------------------------------------------------------------*/
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1F6EB3;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1F6EB3;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}

@media (max-width: 768px) {

    .briapharma {
        margin-left:-40px;
    }

    .lazar {
        margin-left:-34px;
    }

    .mintlab {
        margin-left:-40px;
    }

    .macpharma {
        margin-left:-40px;
    }

    .dalban-pharma {
        margin-left:-40px;
    }

    .quiral {
        margin-left:-40px;
    }

    .fapasa {
        margin-left:-40px;
    }

}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #1F6EB3;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: #e35052;
  background: #1F6EB3;
}

.about .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i {
  font-size: 40px;
  color: #1F6EB3;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}



/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: #1F6EB3;
}

.tabs .nav-link.active {
  background: #1F6EB3;
  color: #fff;
  border-color: #1F6EB3;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1F6EB3;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

h2.serv-title {
  color:#1F6EB3;
}

.servspace {
  margin-bottom: 4rem;
}

.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #252525;
  transition: 0.3s;
}

.services .icon-box:hover {
  background: #2b2b2b;
}

.services .icon-box i {
  float: left;
  color: #1F6EB3;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #fff;
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
  color: #1F6EB3;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}

/*bullets*/

ul.bullet-serv {
  margin-left: -1rem;
  margin-top: 0rem;
  color: #626770;
}

.bullet-serv li {
  list-style-type:none;
  padding-top: 0.75rem;
}

.bullet-serv li::before {
  font-family:"FontAwesome";
  content: "\f013";
  font-size: 1.0rem!important;  
  color: #1F6EB3; 
  display: inline-block; 
  padding-left:0px;
  padding-top:0px;
  margin-left:-1.2rem;
  margin-top:0rem;
  text-align: left;
  line-height: 0;
  vertical-align:0px;
  width: 20px;
}


.productos {
  padding-top: 0rem;
}


/*--------------------------------------------------------------
# Galería de imágenes PRODUCTOS
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  /*padding: 10px 20px;*/
  background:#A6D4F7;
  font-size: 14px;
  line-height: 20px;
  color: #1F6EB3;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color:#fff;
  background:#1F6EB3;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: all ease-in-out 0.3s;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition:all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  text-align: center;
  background: rgba(31, 53, 72, 0.6);
  padding-bottom: 30px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.portfolio .portfolio-wrap .portfolio-info a {
  color: #1F6EB3;
  margin: 0 4px;
  line-height: 0;
  background-color: #fff;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info a i {
  font-size: 22px;
  line-height: 0;

}
.portfolio .portfolio-wrap .portfolio-info a:hover {
  background: #1F6EB3;
  color: #fff;
}
.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  padding-bottom: 0;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #428bca;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #428bca;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(31, 53, 72, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# CALIDAD
--------------------------------------------------------------*/

.calidad-temporal {  /* borrar al agregar imagen de logos de calidad */
  width:60%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
         
         .button-scroll{
           width:80%;
        }

        .calidad-temporal {  /* borrar al agregar imagen de logos de calidad */
          width:100%;
          height: auto;
          margin-left: auto;
          margin-right: auto;
        }

      }


.logos-calidad {
  width: 250px;
  margin-left: 7rem;
}

.calidad {
  padding-bottom: 30px;
}

ul.bullet-calidad {
  margin-left: -1rem;
  margin-top: 0rem;
  color: #626770;
}

.bullet-calidad li {
  list-style-type:none;
  padding-top: 1rem;
}

.bullet-calidad li::before {
  font-family:"FontAwesome";
  content: "\f058";
  font-size: 1.1rem!important;  
  color: #1F6EB3; 
  display: inline-block; 
  padding-left:0px;
  padding-top:0px;
  margin-left:-1.0rem;
  margin-top:0rem;
  text-align: left;
  line-height: 0;
  vertical-align:0px;
  width: 20px;
}


@media (min-width: 990px) and (max-width: 1199px) {
  
  .logos-calidad {
    width: 200px;
    margin-left: 4rem;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  
  .logos-calidad {
    width: 200px;
    margin-left: 7rem;
  }
}

@media (max-width: 990px) {
  
  .logos-calidad {
    width: 200px;
    margin-left: 0;
    margin-right: 0%;
  }
}


/*--------------------------------------------------------------
# Clientes
--------------------------------------------------------------*/
.txt-clientes {
  color:#444444;
  margin-top: 0rem;
  margin-bottom:0rem;
  text-align: center;
  position: relative;
}

.logo-container {
  margin-bottom:1rem!important;
}

.backg-cliente {
  text-align: center;
  align-items: center;
  background-color:none;
  padding:50px;
  margin-right:0px;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  
}



/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/

.txt-contact {
  color: #686868;
  margin-top: -1.3rem;
}

.contact-section {
  position: relative;
  z-index: 3;
}

.contact-section.cta-bg {
  clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
  z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section.cta-bg {
    clip-path: polygon(0 3%, 100% 12%, 100% 88%, 0 97%);
  }
}

@media (max-width: 767px) {
  .contact-section.cta-bg {
    clip-path: polygon(0 3%, 100% 12%, 100% 88%, 0 97%);
  }
}

.contact-section.cta-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to left, rgba(111, 88, 232, 0.18) 0%, #1F6EB3 100%);
}

.contact-section .contact-item-wrapper .contact-item {
  display: flex;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 30px;
  padding: 20px 10px;
  transition: all 0.3s ease-out 0s;
}

.contact-section .contact-item-wrapper .contact-item:hover {
  box-shadow: 0px 0px 30px rgba(215, 224, 252, 0.45);
}

.contact-section .contact-item-wrapper .contact-item:hover .contact-icon {
  box-shadow: 0px 0px 30px rgba(46, 87, 217, 0.45);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item {
    flex-direction: column;
  }
}

.bxicon {
  margin-top:50px;
  margin-bottom:25px;
  margin-left: 50px;
  margin-right:50px;
}

.contact-icon i {
  width: 50px!important;
  height: 50px!important;
}

.contact-section .contact-item-wrapper .contact-item .contact-icon  {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  width: 50px!important;
  height: 50px!important;
  border-radius: 100%;
  background: linear-gradient(#1F6EB3 0%, #180963 100%);
  color: #fff;
  transition: all 0.3s ease-out 0s;
}

.contact-section .contact-item-wrapper .contact-item .contact-content {
  margin-left: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 0px;
    margin-top: 20px;
  }
}


.contact-section .contact-item-wrapper .contact-item .contact-content h4 {
  font-size: 20px;
  color: #1F6EB3!important; /*#180963*/
  margin-bottom: 10px;
}

.comment-form-wrapper,
.contact-form-wrapper {
  padding: 50px 40px;
  background: #fff;
  border: 1px solid #e5e5e5;
  margin-left: 0px;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.comment-form-wrapper:hover,
.contact-form-wrapper:hover {
  box-shadow: 0px 0px 30px rgba(215, 224, 252, 0.45);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .comment-form-wrapper,
  .contact-form-wrapper {
    margin-left: 30px;
  }
}

.comment-form-wrapper .comment-form input,
.comment-form-wrapper .comment-form textarea,
.comment-form-wrapper .contact-form input,
.comment-form-wrapper .contact-form textarea,
.contact-form-wrapper .comment-form input,
.contact-form-wrapper .comment-form textarea,
.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
  padding: 9px 25px;
  border-radius: 5px;   /*borde redondeado del campo de formulario*/
  border: 1px solid #e5e5e5;
  margin-bottom: 25px;
  width: 100%;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .comment-form-wrapper .comment-form input,
  .comment-form-wrapper .comment-form textarea,
  .comment-form-wrapper .contact-form input,
  .comment-form-wrapper .contact-form textarea,
  .contact-form-wrapper .comment-form input,
  .contact-form-wrapper .comment-form textarea,
  .contact-form-wrapper .contact-form input,
  .contact-form-wrapper .contact-form textarea {
    padding: 12px 25px;
  }
}

.comment-form-wrapper .comment-form input:focus,
.comment-form-wrapper .comment-form textarea:focus,
.comment-form-wrapper .contact-form input:focus,
.comment-form-wrapper .contact-form textarea:focus,
.contact-form-wrapper .comment-form input:focus,
.contact-form-wrapper .comment-form textarea:focus,
.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
  border-color:#3763EB!important;
  outline: none;
}

.comment-form-wrapper .comment-form textarea,
.comment-form-wrapper .contact-form textarea,
.contact-form-wrapper .comment-form textarea,
.contact-form-wrapper .contact-form textarea {
  border-radius: 5px;
}

.comment-form-wrapper .comment-form .theme-btn,
.comment-form-wrapper .contact-form .theme-btn,
.contact-form-wrapper .comment-form .theme-btn,
.contact-form-wrapper .contact-form .theme-btn {
  font-weight: 500;
  padding: 18px 90px;
}

.datos-contacto {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.nombre-campo {
  color:#1F6EB3;
  padding-left:0.3rem;
  padding-bottom:0.5rem;
}

.asterisco {
  color:#180963;
  font-weight:bold;
}

.campo-obligatorio {
  font-size: 14px;
  padding-bottom:14px;
  color:#444444;
}

/*===== All Button Style =====*/

.theme-btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 16px 48px;
  font-size: 18px;
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all .4s ease-in-out;
  border: none;
  background:linear-gradient(to left, #1F6EB3 0%, #180963 50.39%, #1F6EB3 100%)!important;
  background-size: 200% auto;
  overflow: hidden;
}

.theme-btn:hover, .theme-btn:focus {
  background-position: right center;
  color: #fff;
  box-shadow: 0px 0px 30px rgba(46, 87, 217, 0.45);
}

.theme-btn.border-btn {
  padding: 14px 40px;
  background: transparent;
  border: 1.5px solid #1F6EB3!important;
  color:#180963;
  font-size: 18px;
  box-shadow: none;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  color: #fff;
  font-size: 14px;
  background: #002c5f;
}

#footer .footer-top {
  padding: 40px 0 30px 0;
  background: #0a417c; /*#C7DAEC*/
}

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

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
  color: #ffffff;
}

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  bottom: 0;
  left: 0;
}

#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: 2px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #C7DAEC;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1F6EB3;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

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

#footer .credits {
  padding-top: 5px;
  font-size: 11px;
  color: #8ba7af;
}

.footer2 {
   padding-top: 2rem!important;
   padding-bottom: 2rem!important;
}


@media (max-width: 767px) {

  .footer2 {
     padding-top: 2rem!important;
     padding-bottom: 3rem!important;
  }


}


#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1F6EB3;
  color: #fff;
  line-height: 1;
  padding-top: 8px;
  padding-bottom: 0px;
  padding-left: 8px;
  padding-right: 0px;
  margin-right: 4px;
  border-radius: 20px;  /*4x rect corner*/
  text-align: left;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #3D93D3;    /*#3D93D3*/ /*#C7DAEC*/
  color: #fff;
  text-decoration: none;
}

.footer-title {
  color: #ffffff;
  padding-bottom: 12px;
}

.color1 {
  color:#1F6EB3;
}

ul.footer-datos {
  margin-left: -1rem;
  margin-top: 0rem;
  color: #ffffff;
}

.footer-datos li {
  list-style-type:none;
}

.footer-datos li::before {
  font-family:"FontAwesome";
  content: "\f041";
  font-size: 10px!important;  
  color: #ffffff; 
  display: inline-block; 
  padding-left:0px;
  padding-top:0px;
  margin-left:-1.0rem;
  margin-top:0rem;
  text-align: left;
  line-height: 0;
  vertical-align:0px;
  width: 30px;
}


ul.footer-datos1 {
  margin-left: -2rem;
  margin-top: 0rem;
  color: #ffffff;  /*#1F6EB3*/
}

ul.footer-datos1 a:hover {
  color:#C7DAEC;
}

.footer-datos1 li {
  list-style-type:none;
}


.fa-phone:before {
  content:"\f095";
  color:#ffffff; 
  font-size: 10px!important;
  display: inline-block; 
  padding-left:0px;
  margin-left:0rem;
  text-align: left;
  line-height: 0.4;
  vertical-align:0px;
  width: 30px;
}

.fa-envelope:before {
  content:"\f0e0";
  color:#ffffff; 
  font-size: 10px!important;
  display: inline-block; 
  padding-left:0px;
  margin-left:0rem;
  text-align: left;
  line-height: 0.4;
  vertical-align:0px;
  width: 30px;
}

.footer-txt1 {
  color:#ffffff;
}


@media (max-width: 767px) {

    .footer-datos li::before {
       font-family:"FontAwesome";
       content: "\f041";
       font-size: 10px!important;
     }

     .fa-phone::before {
      content:"\f095";
      color:#ffffff; 
      font-size: 10px!important;
     }

     .fa-envelope:before {
      content:"\f0e0";
      color:#ffffff; 
      font-size: 10px!important;
     }  
}


@-moz-document url-prefix() {

    .footer-datos li::before {
       font-family:"FontAwesome";
       content: "\f041";
       font-size: 5px!important;
     }
}

@-moz-document url-prefix() {

    .fa-phone::before {
      content:"\f095";
      color:#ffffff; 
      font-size: 5px!important;
    }  
}

@-moz-document url-prefix() {

     .fa-envelope:before {
      content:"\f0e0";
      color:#ffffff; 
      font-size: 5px!important;
     }  
}


    

/*///////////////////////////////*/
/* BTN LINK MODAL FOOTER */

.btn-link {
  color:#ffffff!important;
  font-size: 14px; 
  font-weight: regular;
  padding: 0 0em;
  border:none;
  text-decoration:none;
  cursor:pointer;
  background-color:transparent;
}

.btn-link button {
    color:#ffffff;
    font-weight: regular;
    padding: 0em; 
    border:none;
    background-color:transparent;
}

.btn-link button:hover {
    color:#C7DAEC!important;
    text-decoration:none;
    border:none;
    background-color:transparent;
}

.titulo-legal {
    font-weight: bold;
}

/*/////////////////*/
/*WHATSAPP BUTTON*/
/*/////////////////*/

.float{
  position:fixed;
  width:80px;
  height:80px;
  bottom:0px;
  right:10px;
  background-color:none;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  z-index:100;
}
.float:hover {
  text-decoration: none;
  color: #FFF;
  background-color:none;

}

.my-float{
  margin-top:17px;
}

i.bi-whatsapp {
  vertical-align:-0.25em;
}

.wappgif {
  width: 60px;
  height: 60px;
}

@media (max-width: 767.98px) {
  .float{
    position:fixed;
    width:80px;
    height:80px;
    bottom:0px;
    right:10px;
    background-color:none;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
  }

}



/* ==== MODAL DE ERROR ==== */

.modal-error {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.75); 
  justify-content: center;
  align-items: center;
}

.modal-content-error {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-out;
}

.modal-content-error p {
  color: #111;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}

.modal-content-error .btn-1 {
  padding: 8px 20px;
  font-size: 15px;
  background-color: #1F6EB3;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content-error .btn-1:hover {
  background-color: #155a8d;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Estado de error */
input.error, textarea.error {
  border: 2px solid #d9534f !important; /* rojo error */
  outline: none;
}

/* Campo válido (completado) */
input.valid, textarea.valid {
  border: 2px solid #1F6EB3 !important; /* azul */
}

/* Estado activo (focus) */
input:focus, textarea:focus {
  border: 2px solid #1F6EB3 !important;
  box-shadow: 0 0 5px rgba(31,110,179,0.3);
  outline: none;
  transition: 0.2s ease;
}

/* Suaviza transiciones */
input, textarea {
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
