
:root, [data-bs-theme=light]{
    --primary-color: rgb(0 53 106) !important;
    --secundary-color:rgb(0 183 255) !important;
    --bs-tertiary-bg-rgb: rgb(28 34 47) !important;
    --bs-nav-text-color: rgb(1 55 101) !important;
    --bs-text-color: rgb(0, 53, 106) !important;
    --zoom-scale: 1.09;      /* cuánto acercar */
    --zoom-duration: 6000ms; /* duración por defecto */
    
}
body,html{
    min-height: -webkit-fill-available;
    overscroll-behavior: none;
    scroll-behavior: smooth;
    
}
body{
    overflow-y: visible;
    --bs-body-color: #fafafa !important;
    --bs-bg-opacity: 1;
    background-color: var(--bs-body-color);
    width: 100vw;
    overflow-x: hidden;
    font-family:Helvetica;
}

body.no-scroll {
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-weight: 200;
    color: var(--bs-text-color) !important;
    
}
p{
    font-weight: 300;
    font-size: 1.16em;
    letter-spacing: 0.02em;
}
.label-s-2{
    font-family: sans-serif;
    font-size: 0.8em;
    
    
}
.description-text{
    font-family: Helvetica;
    font-weight: 400;
    font-size: 1.3em;
    letter-spacing: 0.02em;
}
.description-text >strong.strong-2{
    font-weight: 700 !important;
}
p>.strong-2{
    font-weight: 700 !important;
}
.titulo-degradado-animado {
  font-weight: bold;
  background: linear-gradient(
    270deg,
    #2357a4,
    #008bdb,
    #093576
  );
  background-size: 300% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: moverDegradadoElegante 5s ease-in-out infinite;
}
.titulo-sm{
    font-size: 2em !important;
    font-weight: 700;
}
.titulo-secction{
    font-size: 1.9em;
    line-height: 1.7em;
}
.titulo-secction strong{
    font-weight: 600;
}
.titulo-secction .titulo-degradado-animado{
    font-size: 2.5em !important;
}

@keyframes moverDegradadoElegante {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
hr{
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border: 0;
    opacity: 0.8;
}
hr.white{
    background-color: #ffffff;
}
/*loader*/
.loader{
    content: "";
    position: fixed;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.5s;
    overflow: hidden;
}
.loader::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 200vh;
    background-image: linear-gradient(180deg, rgba(20, 32, 56, 0.73), rgb(7, 9, 18));
    backdrop-filter: blur(60px);
    z-index: -1;
}
.loader img{
    height: 12em;
}
.loader img {
    animation: fade 1.6s ease-in-out infinite;
}

@keyframes fade {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
.loader.hidden {
    opacity: 0;
    pointer-events: none;
}
/* ===== Propiedades animables (Houdini) ===== */

@property --g0 { syntax: '<color>'; inherits: false; initial-value: rgba(255,255,255,0.681); }
@property --g1 { syntax: '<color>'; inherits: false; initial-value: rgba(255,255,255,0.780); }
@property --g2 { syntax: '<color>'; inherits: false; initial-value: rgba(255,255,255,0.919); }
@property --g3 { syntax: '<color>'; inherits: false; initial-value: rgba(255,255,255,1); }
@property --ang { syntax: '<angle>'; inherits: false; initial-value: 180deg; }
@property --stop2 { syntax: '<percentage>'; inherits: false; initial-value: 70%; }
@property --blur { syntax: '<number>'; inherits: false; initial-value: 13; }       /* px sin unidad */
@property --bopc { syntax: '<number>'; inherits: false; initial-value: 0.70; }     /* opacidad borde (0–1) */
@property --shopc { syntax: '<number>'; inherits: false; initial-value: 0.323; }   /* opacidad sombra (0–1) */
@property --pad  { syntax: '<length>'; inherits: false; initial-value: 0.05rem; }  /* padding-block top */
@property --bs-navbar-toggler-icon-invert { syntax: '<number>'; inherits: false; initial-value: 1; }

/* ===== Estado base: usa TUS valores pero con vars ===== */
.navbar,
nav {
  /* tus valores, reexpresados con variables animables */
  background: linear-gradient(var(--ang), var(--g0), var(--g1), var(--g2) var(--stop2), var(--g3) 100%);
  backdrop-filter: blur(calc(var(--blur) * 1px));
  --bs-navbar-padding-y: 0rem;
  padding-top: var(--pad);
  color: var(--bs-nav-text-color) !important;
  box-shadow: 0 0 10px rgba(0,0,0,var(--shopc));
  transition: color 0.6s ease-in-out; /* el resto lo maneja keyframes */
  font-family: 'Montserrat', sans-serif;
  
}

/* ===== Clase para iniciar animación hacia oscuro (arriba del umbral) ===== */
.nav-anim-to-dark {
  animation: navToDark 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

/* ===== Clase para volver a claro (debajo del umbral) ===== */
.nav-anim-to-light {
  animation: navToLight 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}
.navbar-transparent> .container-fluid >.navbar-toggler{
    border: var(--bs-border-width) solid var(--g3);
}
.navbar-transparent> .container-fluid >* >.navbar-toggler-icon{
    filter: invert(var(--bs-navbar-toggler-icon-invert));
}
.navbar-transparent> .container-fluid > .btn-contacto>.btn-t3{
    --bs-btn-border-color: white !important;
    --bs-btn-hover-border-color: white !important;
    --bs-btn-color: white !important;
    --bs-btn-hover-bg: white !important;
    --bs-btn-hover-color: var(--primary-color) !important;
}

/* === CLARO -> OSCURO === */
/* Mantiene los “intermedios” con interpolación real de colores/ángulos/blur */
@keyframes navToDark {
  0% {
    --g0: rgba(255,255,255,0.681);
    --g1: rgba(255,255,255,0.780);
    --g2: rgba(255,255,255,0.919);
    --g3: rgba(255,255,255,1);
    --ang: 180deg;
    --stop2: 70%;
    --blur: 13;
    --bopc: 0.70;
    --shopc: 0.323;
    color: var(--bs-nav-text-color);
    --bs-navbar-toggler-icon-invert:1;
  }
  40% {
    --ang: 120deg;          /* giro gradual del gradiente */
    --stop2: 65%;
    --blur: 8;
    --bopc: 0.35;
    --shopc: 0.18;
  }
  70% {
    --ang: 60deg;
    --stop2: 55%;
    --blur: 3;
    --bopc: 0.15;
    --shopc: 0.08;
  }
  100% {
    --g0: rgba(49, 49, 49, 0);
    --g1: rgba(0,0,0,0.206);
    --g2: rgba(12,12,12,0.487);
    --g3: rgba(20, 20, 20, 0.876);
    --ang: 0deg;
    --stop2: 60%;
    --blur: 0;
    --bopc: 0;
    --shopc: 0;
    color: #fff;
    --bs-navbar-toggler-icon-invert:0;
  }
}

/* === OSCURO -> CLARO === */
@keyframes navToLight {
  0% {
    --g0: rgba(0,0,0,0);
    --g1: rgba(0, 0, 0, 0.206);
    --g2: rgba(12,12,12,0.487);
    --g3: rgba(20, 20, 20, 0.876);
    --ang: 0deg;
    --stop2: 60%;
    --blur: 0;
    --bopc: 0;
    --shopc: 0;
    color: #fff;
    --bs-navbar-toggler-icon-invert:1;
  }
  30% {
    --ang: 45deg;
    --stop2: 62%;
    --blur: 4;
    --bopc: 0.15;
    --shopc: 0.08;
  }
  70% {
    --ang: 120deg;
    --stop2: 68%;
    --blur: 9;
    --bopc: 0.45;
    --shopc: 0.22;
  }
  100% {
    --g0: rgba(255,255,255,0.681);
    --g1: rgba(255,255,255,0.780);
    --g2: rgba(255,255,255,0.919);
    --g3: rgba(255,255,255,1);
    --ang: 180deg;
    --stop2: 70%;
    --blur: 13;
    --bopc: 0.70;
    --shopc: 0.323;
    color: var(--bs-nav-text-color);
    --bs-navbar-toggler-icon-invert:0;
  }
}
.navbar-nav{
    --bs-nav-link-padding-y: 1rem;
    color: var(--bs-nav-text-color) !important;
    transition: ease-in-out 0.35s;
    
}
.navbar-brand {
  cursor: pointer;

}
.navbar-transparent> .container-fluid > .navbar-brand, .w-logo{
    filter: grayscale(100%) brightness(1000%) contrast(1);
    display: block;
}
.navbar-nav{
    --bs-nav-link-padding-y: 1rem;
    color: var(--bs-nav-text-color) !important;
    transition: ease-in-out 0.35s;
    
}
.navbar-brand {
  cursor: pointer;
}
.nav-item>*, .nav-link{
    font-weight: 500 !important;
    letter-spacing: 2px !important;
    font-size: 0.9em;
    text-transform: uppercase;
}
.header-principal> .nav-item>*, .header-principal> .nav-link{
    text-align: center;
}
.container-fluid > .navbar-collapse > ul li a{
    opacity: 1;
    transition: ease-in-out 0.25s;
    border-bottom: solid 3px transparent;
    color: var(--bs-nav-text-color) !important;
    transition: ease-in-out 0.35s;
    
}
.navbar-collapse>.navbar-nav>.nav-item{
    margin-inline: 0.5em;
}
.container-fluid > .navbar-collapse > ul li a:hover{
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    padding-inline: 1em;
    opacity: 1;
}
.container-fluid > .navbar-collapse> ul:hover > li > a:not(:hover){
    opacity: 0.7;
}
.navbar-transparent> .container-fluid > .navbar-collapse > ul li a{
    color: white !important;
}
.navbar-collapse > ul li a:hover:not(.dropdown-item) {
    border-color: var(--bs-nav-text-color);
}
.nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
    border: 0;
     border-bottom: solid 2px var(--primary-color);
    transition: ease-in-out 0.25s;
}
.navbar-transparent> .container-fluid > .navbar-collapse > ul li a:hover{
    border-color: white;
}
.navbar-transparent>.container-fluid >.navbar-collapse.collapse  > .navbar-nav>.nav-item>.dropdown-menu {
    background-color: #0f1218bf;
    backdrop-filter: blur(10px);
}
.container-fluid >.navbar-collapse.collapse  > .navbar-nav>.nav-item>.dropdown-menu > li> .dropdown-item:hover{
    background-color:   transparent !important;
}
.nav-pills{
    --bs-nav-pills-link-active-color: white;
    --bs-nav-pills-link-active-bg: var(--bs-nav-text-color);
    --bs-nav-link-color: var(--bs-nav-text-color);
    --bs-nav-link-hover-color: #5685c2;
    --bs-nav-pills-border-radius: 0rem;
}
.nav-pills .nav-link.active{
    background: linear-gradient(268deg,
    #5282cb,
    #142c64
     );
    background-size: 150% 200%;
    animation: moverDegradadoElegante 7s ease-in-out infinite;
}
.nav-pills .nav-link.active.bg-special{
    background: linear-gradient(268deg, #008bdb , #142c64);
}
.dropdown-item{
    color: var(--bs-nav-text-color);
}
section>*{
    color: var(--bs-text-color) !important;
}

.full-screen{
    height: 95vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.remate-text{
    position: absolute;
    background-color: #1c222f00;
    color: white !important;
    padding-inline: 2em;
    overflow-y: hidden;
    z-index: 2;
}
.remate-text h1{
    font-size: 5rem;
}
.remate-text p{
    font-size: 1.5rem;
}
.remate-text p,.remate-text h1 {
    color: white !important;
    font-weight: 300;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.623);
}
.pb-8{
    padding-bottom: 4em;
}
.degradado{
   position: relative;
}
.degradado::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(180deg, rgba(28, 34, 47, 0) 60%, rgba(8, 9, 13, 0.9) 100%);
    z-index: 1;
}
.degradado > *{
    position: relative;
    z-index: 2;
}
.attachment-section{
    background-image: url('../imgs/renders/FHB001a-ed.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position:center;
    background-repeat: no-repeat;
    
}
.degradado-texto, .degradado-texto-2, .degradado-texto-3{
    position: relative;
}
.degradado-texto::after, .degradado-texto-2::after, .degradado-texto-3::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    
}
.degradado-texto::after{
    background-image: linear-gradient(180deg, rgb(209, 231, 255) 0%, rgba(230, 240, 255, 0.882) 45%);
    backdrop-filter: blur(10px);
}
.degradado-texto-2::after{
    background-image: linear-gradient(270deg, rgba(186, 186, 186, 0) 15%, rgba(8, 16, 32, 0.831) 55%);
}
.degradado-texto-3::after{
    background-image: linear-gradient(0deg, rgba(4, 4, 4, 0.495), rgba(0, 0, 0, 0.783));
    backdrop-filter: blur(25px);
}
.degradado-texto>*, .degradado-texto-2>*, .degradado-texto-3>*{
    position: relative;
    z-index: 2;
}

.degradado-imagen > img{
    mask-image: linear-gradient(315deg, #00000000 21%, #edebeb 29%, var(--bs-body-color) 100%);
}
.full-window-item{
    height: 100vh;
    object-fit: cover;
}

.carousel-item{
    position: relative;
}
.carousel-caption{
    position: absolute;
    display: flex !important;
    flex-direction: column !important;
    justify-content: end !important;
    align-items: center !important;
    width: 100%;
    height: 100%;
    text-indent: 0;
    background-image: linear-gradient(180deg, rgba(28, 34, 47, 0) 45%, rgba(8, 9, 13, 0.921) 75%);
    z-index: 2;
    right: 0%;
    left: 0;
    bottom: 0;
    padding-inline: 0.5em;
}

.carousel-caption p{
    font-size: 1.3rem;
    font-weight: 200;
    opacity: 0.8;
    font-family: "Montserrat", sans-serif !important;
}
.carousel-caption h2{
    font-size: 2.8rem;
    text-transform:uppercase;
    font-weight: 200;
}
.carousel-caption a{
    font-size: 1rem;
    min-width: 320px;
}
.carousel-caption >h2, .carousel-caption p , .carousel-caption p a:not(:hover){
    color: var(--bs-body-color)!important;
}
.carousel-indicators button{
    width: 100px !important;
    height: 3px !important;
}
.carousel-item.animation-zoomin{ overflow:hidden; }
.carousel-item.animation-zoomin img{
  transform-origin:center center;
  will-change: transform;
}

/* corre cada vez que el item está activo */
.carousel-item.animation-zoomin.active img{
  animation: zoomIn var(--zoom-duration) ease-in-out forwards;
}

@keyframes zoomIn{
  from{ transform: scale(1); }
  to  { transform: scale(var(--zoom-scale)); }
}

/* Accesibilidad: respeta “reduced motion” */
@media (prefers-reduced-motion: reduce){
  .carousel-item.animation-zoomin.active img{
    animation: none !important;
    transform: none !important;
  }
}
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1); /* Curva de aceleración suave */
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0);
    filter: blur(0px); /* Sutil desenfoque si es necesario */
}
.rounded{
    border-radius: 1rem !important;
}
/*alturas*/
.h-90-s{
    height: 90vh !important;
}
.h-80-s{
    height: 80vh !important;
}
.h-70-s{
    height: 70vh !important;
}
.h-60-s{
    height: 60vh !important;
}
.mh-90-s{
    min-height: 90vh !important;
}
.mh-80-s{
    min-height: 80vh !important;
}
.mh-70-s{
    min-height: 70vh !important;
}
.mh-50-s{
    min-height: 50vh !important;
}
.h-30-s{
    height: 30vh !important;
}
h2 .strong{
    font-weight: 700;
}
.text-big{
    font-size: 2.3rem !important;
    font-weight: 700 !important;
}
.text-big-light{
    font-family: "Montserrat", sans-serif !important;
    font-size: 2.3rem !important;
    font-weight: 200 !important;
}
.card-style{
    border-radius: 5px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.268);
}
.card-style >* >p{
    
    font-weight: 400;
    line-height: 1.35em;
}
.bg-size-cover{
    background-size: cover;
}
.bg-position-center{
    background-position: center;
}
.card {
    position: relative;  /* Necesario para crear un contexto de apilamiento */
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.052);
    background-color: #ffffff00;
    border: 0;
    transition: 0.3s ease-in-out;
}
.card:hover{
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.449);
    transition: 0.3s ease-in-out;
}

.card-media {
    border: 0;
    position: absolute; /* Lo posicionamos en el eje Z */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Hace que el video cubra todo el espacio */
    z-index: 1;  /* El video estará en el fondo */
    transition: transform 0.3s ease-in-out
}
.card:hover .card-media{
    transform: scale(1.03);
}
.card-body {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    color: white;
    z-index: 2;  /* El texto estará encima del video */
    padding: 20px;
    background-image: linear-gradient(180deg, rgba(28, 34, 47, 0)25%, rgba(19, 19, 19, 0.835) 70%,rgb(0, 0, 0) 100%);
    transition: 0.3s ease-in-out
}
.card-body>*{
    color: #fafafa !important;
    font-weight: 200;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.677);
}
.card-body-center{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white !important;
    z-index: 2;
    background-color: #050b18dd;
    padding: 20px;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(9px);
}
.card-body-center>*{
    color: #fafafa !important;
    font-weight: 200;
}
.card-body > hr{
    margin-block: 1em;
    background: white;
    margin: 0 0 0.5em 0;
    height: 1px;
    opacity: 1;
}
.card-body > .border-left{
    padding-left: 0.5em;
    border-left: 3px solid white;
}
.card-logo {
    height:4em;
    width: auto;
    margin-block: 0.8em;
    object-fit:fill;
    display: block;
}
.card-title{
    font-size: 1.8rem;
    font-weight: 300;
}
.card-body-center .card-title{
    font-size: 3rem;
    font-weight: 500;
}
.card-text{
    font-family: sans-serif;
    font-size: 1.05rem;
    text-align: start;
    font-weight: 300;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.425);
    text-wrap: pretty;
}
.card-text, .card-title{
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.425);
    text-rendering: optimizeLegibility;
}
.card-footer button{
    padding-inline: 2.5em;
    margin-block: 0.5em;
}

.d-flex .first-card {
    margin-left: 0;
}
.team-card {
    display: flex;
    flex-direction: column;
    border-radius: 1.2em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%; 
    min-height: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
    margin-block: 0.7em;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card-image img {
    width: 100%;
    height: auto;
    max-height: 19em;
    object-fit: cover;
    object-position: top;
}

.team-card .team-card-body {
    text-align: center;
    padding: 1em;
    flex-grow: 1;
    height: 100%;
    background: white;
}

h4.team-card-name{

    color: var(--bs-text-color)!important;
    margin: 0;
    line-height: 1.4;
    font-size: 1.2em;
}
.team-card-name strong {
   font-size: 1.5em;
}
.team-card-role {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.3em;
}
/*Contacto*/
.contact-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-info-side {
    padding: 4rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form-side {
    padding: 4rem;
}
.separate{
    border-inline: 3px solid #b9d2ed;
}

/* Estilos personalizados para Floating Labels de Bootstrap */
.form-floating > .form-control,
.form-floating > .form-select {
    border: 1px solid #e0e0e0;
    
    
}
.form-floating > .form-control:focus {
    border-color: var(--ipvt-blue-accent);
    box-shadow: 0 0 0 0.25rem rgba(0, 139, 219, 0.1);
    
}
.form-floating > label {
    font-size: 0.9rem;
    padding-left: 0.75rem;
    color: rgba(235, 241, 255, 0.7) !important;
}
.form-floating>.form-control-plaintext~label>*,.form-floating>.form-control:focus~label>*,.form-floating>.form-control:not(:placeholder-shown)~label>*,.form-floating>.form-select~label>* {
    
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}
.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after {
    background-color: transparent;
    
}
input:-internal-autofill-selected {
    appearance:none;
    background-image: none !important;
    background-color: transparent !important;
    color: fieldtext !important;
}
/* Botones de redes sociales en la parte oscura */
.social-btn-dark {
    width: 45px; height: 45px;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}
.social-btn-dark:hover {
    transform: scale(1.1);
}

/* Botón principal del formulario */
.btn-corp-primary {
    background-color: var(--ipvt-dark-blue);
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}
.btn-corp-primary:hover {
    box-shadow: 0 10px 20px -10px rgba(0, 139, 219, 0.5);
}

/* Ajustes responsivos */
@media (max-width: 991px) {
    .contact-info-side, .contact-form-side {
        padding: 2.5rem;
    }
    /* En móviles, el lado azul va arriba, el blanco abajo */
    .contact-wrapper .row { flex-direction: column; }
}
/*footer*/
footer[data-bs-theme=dark], footer[data-bs-theme=light]{
    background-color:#1c222f !important;
    --bs-nav-text-color: var(--bs-secondary-color) !important;
}
footer h5, footer p, footer li, footer a{
 --bs-nav-text-color: var(--bs-secondary-color) !important;
 color: var(--bs-nav-text-color) !important;
 font-weight: 200;
}

/*margins*/
.m-0{
    margin: 0 !important;
}
/*paddings*/
.p-0{
    padding: 0 !important;
}

.pb-6{
    padding-bottom: 4rem;
}
.p-inline-3{
    padding-inline: 3rem;
}

.p-block-1{
    padding-block: 1rem;
}
.p-block-2{
    padding-block: 2rem;
}
/*anchos*/
.w-80{
    width: 80%;
}
.w-40{
    width: 40%;
}
.dynamic-width{
    --min-width: 25em;
    min-width: var(--min-width);
}
.bi{
    font-size: 1.5em;
}
.icon-list a .bi{
    color: #ffffff !important;
    font-size: 2em;
    transition: ease-in-out 0.3s;
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
}
.icon-list a:not(:hover){
    transform: scale(0.9);
    opacity: 0.95;
}
/*botones*/
.btn-t2{ 
    --btn-size:3.5em;
    --bg-color-icon: #ffffff;
    --shadow-color-icon: #00000067;
    background-color: var(--bg-color-icon);
    aspect-ratio: 1;
    width: var(--btn-size);
    height: var(--btn-size);
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    transition: ease-in-out 0.3s;
    border: 0;
    text-decoration: none;
}
.btn-t2:hover{
    box-shadow: 0px 0px 20px 0px var(--shadow-color-icon);
}
.btn-t2.green{
    --bg-color-icon:#08cd61;
    --shadow-color-icon: #08cd6161;
}
.btn-t2.blue{
    --bg-color-icon: #3991f5;
    --shadow-color-icon: #3991f560;
}
.btn-t2.red{
    --bg-color-icon: #f53939;
    --shadow-color-icon: #f5393960;
}
.btn-t2.purple{
    background-image: linear-gradient(130deg, rgb(227, 205, 33),#d157d5, #9058de);
    --shadow-color-icon: #dd4fe267;
}
.btn-t2.blackRed{
    --bg-color-icon: #360a0a;
    background-image: linear-gradient(130deg, #1c1313, #0f1218);
    border: solid 1px #222121;
    --shadow-color-icon: #8a454565;
}
.btn-t2.blueDeep{
    --bg-color-icon: #24324b;
    background-image: linear-gradient(130deg, #5589e3, #5482d1);
    --shadow-color-icon: #3e5c9082;
}
.btn-outline-primary{
    --bs-btn-color: var(--primary-color) !important;
    --bs-btn-border-color: var(--primary-color) !important;
    --bs-btn-hover-bg: var(--primary-color) !important;
    --bs-btn-hover-border-color: var(--primary-color) !important;
}
.btn-t3{
    --bs-btn-color: var(--primary-color) !important;
    --bs-btn-border-color: var(--primary-color) !important;
    --bs-btn-hover-bg: var(--primary-color) !important;
    --bs-btn-hover-color: white !important;
    --bs-btn-hover-border-color: var(--primary-color) !important;
    border: solid 2px;
    border-radius: 15px;
    padding: 0 1em;
    
}
.btn-t3 p{
    margin: 0;
    padding: 0;
}
.btn-t3  .label-sm{
    font-size: 0.73em;
    font-weight: 600;
}
.btn-t3 .label-m{
    font-size: 0.9em !important;
    font-weight: 600;
}
.btn-primary{
    --bs-btn-bg: var(--primary-color) !important;
     --bs-btn-hover-bg:var(--secundary-color)!important;
     --bs-btn-hover-border-color:var(--secundary-color)!important;
     
}
.iconItem{
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #0000003a;
    overflow: hidden;
    aspect-ratio: 1;
    min-width: 10em;
    height: 10em;
    padding: 0.3em;
}
.iconItem > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.filter-gray{
    opacity: 0.8;
}
.overflow-x-scroll{
    scrollbar-width: 0;
    scrollbar-color: transparent transparent;
}
.overflow-x-scroll::-webkit-scrollbar{
    width: 0;
    height: 0;
}
/*fondos*/
.bg-lg-bl{
    position: relative;
    background: linear-gradient(135deg, #101622, #5384cd);
    overflow: hidden;
    background-size: 150% 200%;
    animation: moverDegradadoElegante 7s ease-in-out infinite;
}
.bg-lg-bl::before {
  content: "";
  background: radial-gradient(circle at 30% 40%, #5384cd80 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, #5384cd66 0%, transparent 60%),
              radial-gradient(circle at 50% 30%, #ffffff0d 0%, transparent 60%);
  filter: blur(100px);
  opacity: 0.8;
  z-index: 0;
}
.bg-lg-bl > *, .bg-lg-bl .bg-lg-bl-container h4{
    color:  white !important;
}

.text-white{
    color: white !important;
}
.phone-visible{
    display: none;
}
.accordion{
    --bs-accordion-color: var(--primary-color) !important;
    --bs-accordion-btn-color: var(--primary-color) !important;
    --bs-accordion-active-color: var(--primary-color) !important;
    --bs-accordion-active-bg: white;
}
/* --- INICIO DEL ESTILO DEL SCROLL --- */
.mouse-scroll {
    width: 24px;
    height: 45px;
    border: 1px solid #ffffff;
    border-radius: 25px;
    position: relative;
    opacity: 0.8;
    transition: opacity 0.35s;
}

.mouse-scroll:hover {
    opacity: 1;
    cursor:default;
}

/* La "rueda" del ratón */
.mouse-scroll::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: #ffffff; 
    border-radius: 50%;
    animation: scroll-animation 3.8s infinite;
}

/* La Animación */
@keyframes scroll-animation {
    0% {
        top: 10px;
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        top: 30px; /* Distancia que baja */
        opacity: 0; /* Se desvanece al final */
    }
}
/*!Animaciones*/
/* ? Zoom in */
.animation-zoomin {
  overflow: hidden;
}

.animation-zoomin img {
  transition: transform 6s ease;
  transform: scale(1);
}

.animation-zoomin.active img {
  transform: scale(1.08);
}
/*Medidas para celular*/
@media (max-width: 768px) and (max-height: 1400px) {
    body{
        width: 100vw;
        overflow-x: hidden !important;
    }
    main{
        width: 100vw;
        overflow-x: hidden !important;
    }
    .dynamic-width{
        --min-width: 20em;
    }
    .phone-hidden{
        display: none !important;
    }
    .phone-w-100{
        width: 100% !important;
    }
    .phone-center>*{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .btn-t2{
        --btn-size: 4em;
    }
    .btn-t2 .bi{
        font-size: 2.4em !important;
    }
    .team-card {
        max-width: none;
        min-width: 100%;
        max-height: max-content;
    }
    .separate{
        border-color: transparent;
    }
    .phone-hidden{
        display: none !important;
    }
    .phone-visible{
        display: block !important;
    }
    .phone-text-start{
        text-align: start !important;
    }
    .phone-text-center{
        text-align: center !important;
    }
    .phone-column{
        flex-direction: column !important;
    }
    .degradado-texto-2::after{
        background: linear-gradient(180deg, rgba(13, 20, 42, 0.826) 15%, rgba(8, 16, 32, 0.965) 55%);
    }
    .d-reverse-phone{
        flex-direction: column-reverse !important;
    }
    .phone-center>*{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .phone-w-100{
        width: 100% !important;
    }
    .phone-pb-4{
        padding-bottom: 4em;
    }
}

/* Para pantallas grandes (cuando el contenedor es de 1320px) */
@media (min-width: 1400px) {
    .d-flex .first-card {
        margin-left: calc((100vw - 1320px) / 2);
    }
}

/* Para pantallas medianas (cuando el contenedor es de 1140px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .d-flex .first-card {
        margin-left: calc((100vw - 1140px) / 2);
    }
}


/* Para pantallas pequeñas (cuando el contenedor es de 960px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .d-flex .first-card {
        margin-left: calc((100vw - 960px) / 2);
    }
}

@media (max-width: 1159px) and (max-height: 1400px)  {
    .phone-hidden{
        display: none !important;
    }
    .phone-w-100{
        width: 100% !important;
    }
    .tab-hidden{
        display: none !important;
    }
    .titulo-secction{
        font-size: 1.3em;
        line-height: 1.9em;
    }
    .titulo-secction .titulo-degradado-animado{
        font-size: 2.5em !important;
    }
}


