/*
 * Certinet Theme v1.1
 */
:root {
    /* === PALETA CORPORATIVA CERTINET === */
    --black: rgba(0, 0, 0, 0.75);
    --grey: #5A5C5B;
    --orange: #DC732E;
    --blue: #004489;
    --green: #5C8D55;
    --light-blue-01: #2D9CDB;
    --light-blue-02: #4B8FDE;
    --light-blue-03: #2494d3;  /* hover  info */
    
    
  /* Colores primarios */
  --bs-blue: #2a4365;
  --bs-indigo: #434190;
  --bs-purple: #805ad5;
  --bs-pink: #d53f8c;
  --bs-red: #e53e3e;
  --bs-orange: var(--orange);
  --bs-yellow: #d69e2e;
  --bs-green: #38a169;
  --bs-teal: #319795;
  --bs-cyan: #3182ce;
  --bs-white: #fff;
  --bs-gray: #718096;
  --bs-gray-dark: #2d3748;
  
  /* Colores del tema */
  --bs-primary: #2a4365;
  --bs-secondary: #4c956c;
  --bs-success: #38a169;
  --bs-info: #3182ce;
  --bs-warning: var(--orange);
  --bs-danger: #e53e3e;
  --bs-light: #f7fafc;
  --bs-dark: #2d3748;
  
  /* Grises personalizados */
  --bs-gray-100: #f7fafc;
  --bs-gray-200: #edf2f7;
  --bs-gray-300: #e2e8f0;
  --bs-gray-400: #cbd5e0;
  --bs-gray-500: #a0aec0;
  --bs-gray-600: #718096;
  --bs-gray-700: #4a5568;
  --bs-gray-800: #2d3748;
  --bs-gray-900: #1a202c;

    
    /* === INTEGRACIÓN CON BOOTSTRAP === */
    --bs-primary: var(--blue);
    --bs-primary-rgb: 0, 69, 142;
    --bs-secondary: var(--grey);
    --bs-secondary-rgb: 90, 92, 91;
    --bs-success: var(--green);
    --bs-success-rgb: 66, 149, 72;
    --bs-info: var(--light-blue-01);
    --bs-info-rgb: 45, 156, 219;
    --bs-warning: var(--orange);
    --bs-warning-rgb: 236, 108, 7;
    --bs-danger: #dc3545;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light: #f8f9fa;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark: var(--black);
    --bs-dark-rgb: 0, 0, 0;
    
    /* === VARIANTES DE COLORES CORPORATIVOS === */
    --bs-primary-dark: #003366;
    --bs-primary-light: var(--light-blue-02);
    --bs-success-dark: #367c3b;
    --bs-success-light: #52b957;
    --bs-warning-dark: #d45f06;
    --bs-warning-light: #f39c12;
    --bs-info-dark: #1f7cb4;
    --bs-info-light: #5dade2;
    
    /* === COLORES DE TEXTO Y FONDO === */
    --bs-body-color: var(--black);
    --bs-body-bg: #ffffff;
    --bs-heading-color: var(--blue);
    --bs-link-color: var(--blue);
    --bs-link-color-rgb: 0,69,143;
    --bs-link-hover-color: var(--bs-primary-dark);
    --bs-border-color: #dee2e6;
    
/*     --bs-border-radius: 15px; */
    
    --bs-btn-active-color:#fff;
    --bs-btn-active-bg:#2D9CDB;
    --bs-btn-active-border-color:#2F80ED;
    --bs-btn-border-color: #dee2e6;
    
    
/*     Info Alert */


	
--bs-info-text-emphasis: #fff;
--bs-info-bg-subtle: var(--light-blue-01);
--bs-info-border-subtle: var(--light-blue-01);

--bs-success-text-emphasis: #fff;
--bs-success-bg-subtle: var(--green);
--bs-success-border-subtle: var(--green);

    
--bs-danger-text-emphasis: #fff;
--bs-danger-bg-subtle: var(--bs-red);
--bs-danger-border-subtle: var(--bs-red);

--bs-toast-padding-x: 1rem !important;
    
--bs-toast-font-size: 0.875rem;

}

.alert-info {
    --bs-alert-color: var(--black); 
    
}

.toast {
 
    --bs-toast-padding-x: 1rem;
    --bs-toast-padding-y: 0.5rem;
 
    --bs-toast-font-size: 1rem;
 
}

.text-bg-danger { 
    background-color: var(--bs-red)!important
}
 

/* Raleway-thin-100 */
@font-face {
	font-family: 'Raleway';
	font-style: thin;
	font-weight: 100;
	font-display: swap;
	src: url('fonts/Raleway/Raleway-Thin.ttf') format('truetype');
}
/* Raleway-100italic - latin */
@font-face {
	font-family: 'Raleway';
	font-style: regular;
	font-weight: 400;
	font-display: swap;
	src: url('fonts/Raleway/Raleway-Regular.ttf') format('truetype');
}
/* Raleway-300 - latin */
@font-face {
	font-family: 'Raleway';
	font-style: bold;
	font-weight: 700;
	font-display: swap;
	src: url('fonts/Raleway/Raleway-Bold.ttf') format('truetype');
}



/*************/
/*    BASE   */
/*************/


body {
	font-family: "Raleway", "lato", "Roboto";
	font-variant-numeric: proportional-nums; /* Activa números proporcionales */
  /* También podrías usar: lining-nums para asegurar altura de mayúscula */
  /* O la combinación directa: */
  font-variant-numeric: lining-nums proportional-nums;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--black);
}

p {
	color: var(--black);
}

.clr-white {
	color: #fff;
}

.clr-cer-blue {
	color: var(--blue);
}

.blue-cert {
	color: var(--blue) !important;
	font-weight: bold;
}

.orange-cert {
	color: var(--orange) !important;
}

.danger {
 
color: var(--bs-danger);

}

.form-control {
/* 	border-radius: 0px; */
/* 	background-color: #eeeeee !important; */
	padding: 11px 30px !important;
/* 	font-size: 15px !important; */
}

.drop-shadow {
	text-shadow: 0 4px 4px #0000007a;
}

.bd-callout {
    --bs-link-color-rgb: var(--bd-callout-link);
    --bs-code-color: var(--bd-callout-code-color);
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
 
    background-color: #FFFFFF;
    border: 1px solid #C1D2D9;  
}

/* .bd-callout p{ */
/* 	font-size: 1.25rem !important; */
/* } */

/* .bd-callout p span{ */
/* 	font-size: 1.5rem !important; */
/* } */


.bd-callout-info {
 
border-left: .55rem solid var(--light-blue-01) !important;

}

.bd-callout-success {
 
border-left: .55rem solid var(--green) !important;

}

.bd-callout-danger {
    border: 1px solid var(--bs-danger);
    border-left: .55rem solid var(--bs-danger) !important;

}

.bd-callout-warning {
    border: 1px solid var(--bs-orange);
    border-left: .55rem solid var(--bs-orange) !important;

}


.text-bg-info {
    color: #fff !important;
  
}

#inputPhone {
    padding: 11px 102px !important;
}

.accordion-button:focus {
    
    box-shadow: none;  
}
 

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #fff;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


.text-bg-warning{
	background-color: var(--orange) !important;
	color:#fff !important;
}



.panel {
	background: #FFFFFF;
	box-shadow: 10px 10px 25px #BED4FF;
	border-radius: 30px;
}

.solution-p {
	padding: 40px 10px;
}

.sol {
	max-width: 300px;
}

.sol img {
	width: auto;
	padding-bottom: 20px;
	padding-top: 40px;
}

.sol p {
	padding-bottom: 10px;
	padding: 20px 40px;
	min-height: 475px;
	text-align: center;
}

.sol a {
	padding-bottom: 20px;
}

.a-card {
	color: #3C64B1;
	font-size: 18px;
	text-decoration: none;
}

.splide__slide {
	padding: 25px 25px;
}

.holographic-card {
	border-radius: 35px;
	transition: all 0.5s ease;
}

.holographic-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(0deg, transparent, transparent 30%, #1e45688c);
	transform: rotate(-45deg);
	transition: all 0.5s ease;
	opacity: 0;
}

.holographic-card:hover {
	transform: scale(1.05);
	box-shadow: 10px 10px 25px #92989d8c;
}

.holographic-card:hover::before {
	opacity: 1;
	transform: rotate(-45deg) translateY(100%);
}

.carrousel-bg {
	min-height: 600px;
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-bg-01 {
	background: url(/resources/images/inicio/banner-bg-01.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-bg-02 {
	background: url(/resources/images/inicio/banner-bg-02.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-bg-03 {
	background: url(/resources/images/inicio/banner-bg-03.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-bg-04 {
	background: url(/resources/images/inicio/banner-bg-04.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-webra {
	min-height: 420px;
	background: url(/resources/images/webra-banner.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-top {
	min-height: 600px;
	background: url(/resources/images/top-banner.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-tfc {
	min-height: 600px;
	background: url(/resources/images/tfc-banner.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.banner-productos {
	min-height: 763px;
	background: url(/resources/images/productos/banner_productos_01_v2.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.caption-img {
	position: absolute;
	left: 10%;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	color: #fff;
	text-align: center;
	top: 20%;
}

.bg-rombos {
	background-size: contain;
	background-repeat: repeat;
	background-image: url(/resources/images/inicio/fondo_rombos_blanco.jpeg);
}

.bg-rombos-grey {
	background-size: contain;
	background-repeat: repeat;
	background-image: url(/resources/images/inicio/services_background.png);
}

.ul-tfc>li {
	font-size: 32px;
	color: #fff;
	text-shadow: 0 4px 4px #0000007a;
	font-weight: bold;
}

.splide__arrow--prev {
	left: -10% !important;
}

.splide__arrow--next {
	right: -10% !important;
}

.link-cert {
	color: var(--orange);
}

.link-cert:hover {
	color: var(--orange)
}


.form-requisitos label {
  position: relative;
  padding-left: 4rem;
}

.form-requisitos input,
.form-requisitos span,
.form-requisitos svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.form-requisitos input {
  opacity: 0;
}

.form-requisitos span {
  border: 2px solid var(--grey);
  width: 2rem;
  height: 2rem;
}

.form-requisitos input:checked + span {
  border: 2px solid var(--black);
  transition: border 0.5s linear;
}

.form-requisitos input:checked + span svg {
  animation: tick 0.5s forwards;
  stroke-dashoffset: 0;
}

@keyframes tick {
  from {
    stroke-dashoffset: 20;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.form-requisitos svg {
  stroke: var(--green);
  width: 4rem;
  height: 3rem;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}


#miToast {
  width: 100% !important;
  max-width: none !important;
  border-radius: 0.5rem;
}

 
/* carousel banner */

.carousel-indicators [data-bs-target] {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #CCC;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--orange);
}


.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #CCC;
    text-align: center;
    background: 0 0;
    filter: var(--bs-carousel-control-icon-filter);
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

.banner-carousel>.carousel-control-prev {
	left: -3%;
}

.banner-carousel>.carousel-control-next {
	
}

.banner-carousel .carousel-item h2, .banner-carousel .carousel-item h1, .carrousel-bg h1 {
	font-size: 54px;
}

.lead {
	color: #fff;
	font-size: 24px;
}

/* Procesos de firma */
.products_card {
    max-width: 300px;
    max-height: 480px;
    border-radius: 30px;
    overflow: hidden;
}

.products_card>.card-body>.card-text {
        min-height: 200px;

    font-size: 15px;

}

.products_card>.card-body>.a-card {
    margin-top: 20px;
}

.a-card {
    color: #3C64B1;
    font-size: 18px;
    text-decoration: none;
}

.simple {
    box-shadow: 8px 12px 20px -2px #ffd098;
}

.token {
    box-shadow: 8px 12px 20px -2px #3bb9006b;
}


.far {
    box-shadow: 8px 12px 20px -2px #92B2EF;
}

/* Por qué elegir un producto o servicio de Certinet */
.why-banner {
 	background: url('/resources/images/inicio/img_02.jpeg') center/cover no-repeat; 
	min-height: 700px;
}

.title-img-caption {
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	color: #FFF;
	font-size: 54px;
	
}

.p-img-caption {
	color: #FFF;
	font-size: 22px;
}

.solutions {
	padding-left: 10%;
	padding-right: 10%;
	padding-bottom: 50px;
}

.solutions>img {
	padding-bottom: 20px;
}

.solutions>.title-solutions {
	color: #626262;
	font-size: 20px;
}

.solutions>.p-solutions {
	color: #626262;
	font-size: 18px;
	min-height: 200px;
}

/* Administra tu Firma Electrónica Avanzada */
.section-03 {
	width: 100%;
	max-width: 100%;
	height: auto;
	/*   height: 100vh; */
	background: url('/resources/images/inicio/img_03.jpeg') center/cover no-repeat;
	color: #fff;
	text-align: center;
	min-height: 789px;
}

.title-img-caption {
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.preguntas-card {
	background-color: #ffffff;
	/* padding: 80px 20px 70px 4px; */
	border-radius: 27px;
	box-shadow: 8px 8px 18px #888888b8;
	margin: auto;
}

.preguntas-card>.preguntas-title, .services-card>.preguntas-title {
	padding: 0 0;
	color: #3C64B1;
	height: 25px;
}

.preguntas-card>.preguntas-p, .services-card>.preguntas-p {
	padding: 0 20px;
	color: #626262;
	height: 80px;
	font-size: 15px;
}

.preguntas-p a {
	float: left;
	color: #9b9b9b;
	text-decoration: none;
}

/* Necesitas Ayuda */
.help .card {
	min-width: 270px;
	max-width: 270px;
	margin: auto;
}

.help .card img {
	min-height: 79px;
}

.help .card h5 {
	color: #2D9CDB;
	display: block;
}

.help .card .card-text {
	min-height: 150px;
	color: #626262;
}

.aviso-certinet {
	background: #004489;
	color: #fff;
	padding: 10px;
	line-height: 22px;
	text-align: center;
	letter-spacing: 0.3px;
}


/* Loader */
.loaders-container {
	background-color: white;
	padding: 15px;
	width: 15%;
	height: 70px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	border: 0 solid #232323;
	-webkit-box-shadow: 18px -12px 21px -6px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 18px -12px 21px -6px rgba(0, 0, 0, 0.2);
	box-shadow: 18px -12px 21px -6px rgba(0, 0, 0, 0.2);
}

.loading-icon-page .modal-dialog {
	position: absolute;
	padding: 15px;
	min-width: 135px;
	height: 70px;
	width: 180px;
	top: 45%;
	left: 50%;
	margin-top: -5px;
	margin-left: -80px;
	padding: 0;
}

.loading-icon-page .modal-content {
	-moz-box-shadow: 0 0 16px rgba(16, 16, 16, 0.61);
	-webkit-box-shadow: 0 0 16px rgba(16, 16, 16, 0.61);
	box-shadow: 0 0 16px rgba(16, 16, 16, 0.61);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.loading-icon-page .modal-body {
	padding: 16px 0 16px 14px;
}

.loading-icon-page .text {
	font-weight: normal;
	line-height: 18px;
	overflow: hidden;
	font-size: 12px;
	padding: 6px;
	padding-left: 20px;
}

.circle {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	border: 4px solid rgba(117, 113, 113, 0.74);
	border-top-color: rgb(245, 124, 0);
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
	float: left;
}

.circle.circle-center {
	width: 32px !important;
	position: absolute;
	top: 45%;
	left: 47%;
}

.circle.circle-center-top {
	width: 32px !important;
	position: absolute;
	top: 20%;
	left: 47%;
}

.circle+span {
	padding-left: 10px;
	overflow: hidden;
	display: block;
}

.circle-center {
	position: absolute;
	top: 45%;
	left: 47%;
	width: 0 !important;
}

@keyframes spin { 
	100% {
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
	}
}

/*#endregion*/
.modal-backdrop.in {
	filter: alpha(opacity = 50);
	opacity: .5;
}

.load, .text {
 
	font-weight: bold;
	font-size: 14px;
	color: rgb(102, 102, 102);
}





/*************/
/*    MENU   */
/*************/

.menu-fixed {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	max-height: 80px;
	box-shadow: 0px 20px 20px 0px rgb(114 114 114/ 50%);
	background-color: white;
	transition-property: box-shadow;
	transition-duration: 0.5s;
	transition-timing-function: linear;
}

.menu-fixed .logo-cert {
	max-height: 50px;
	transition-property: max-height;
	transition-duration: 1s;
	transition-timing-function: linear;
}

.logo-cert {
	max-height: 60px;
}

.nav-logo {
	margin-bottom: 21px;
}

.nav-logo {
	margin-top: 20px;
}

.nav-logo {
	max-width: 300px;
}

.nav-logo {
	float: left;
	margin-right: 15px;
}

.menulinks>li>a {
	font-size: 11px;
	margin: 0px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #6c6c6c;
	text-decoration: none;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #ffa133;
}

.menulinks>li>.active {
	color: #ffa133 !important;
}

.menulinks>li>a:hover {
	color: #ffa133;
}






/* Boton Agendar */
.timify-button-cert {
	position: fixed;
	top: 80px;
	right: 0;
	height: 49px;
	display: block;
	/*  position: fixed;*/
	right: -77px;
	top: 75%;
	z-index: 9998;
	cursor: pointer;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	text-transform: uppercase;
	color: #fff;
	background-color: #2d9cdb;
	border: 1px solid #2d9cdb;
	padding: 10px 15px;
	font-size: 14px;
	border-radius: 0px;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	min-height: 49px;
	min-width: 150px;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	text-shadow: 0px 4px 4px rgb(0 0 0/ 50%);
}

.ul-menu {
  li {
    list-style: none;
    a {
      position: relative;
      display: block;
/*       text-transform: uppercase; */
/*       margin: 20px 0; */
/*       padding: 10px 20px; */
/*       text-decoration: none; */
/*       color: #262626; */
/*       font-size: 18px; */
/*       font-weight: 600; */
      transition: .5s;
      z-index: 1;
      &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top: 2px solid var(--orange);
        border-bottom: 2px solid var(--orange);
        transform: scaleY(2);
        opacity: 0;
        transition: .3s;
      }
      &:after {
        content: '';
        position: absolute;
        top: 2px;
        left: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        opacity: 0;
        transition: .3s;
        z-index: -1;
      }
      &:hover {
        color: #fff;
        &:before {
          transform: scaleY(1);
          opacity: 1;
        }
        &:after {
          transform: scaleY(1);
          opacity: 1;
        }
      }
    }
  }
}



/*************/
/*  BOTONES  */
/*************/

.btn {
	padding: 10px 28px 10px 28px;
/* 	font-size: 20px; */
	border-radius: 15px;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	min-height: 49px;
	min-width: 160px;
/* 	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); */
}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--blue);
    --bs-btn-border-color: var(--blue);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #003366;
    --bs-btn-hover-border-color: #003366;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #003b7a;
    --bs-btn-disabled-border-color: #0d6efd;
 
}

.btn-info {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--light-blue-01);
    --bs-btn-border-color: var(--light-blue-01);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--light-blue-03);
    --bs-btn-hover-border-color: var(--light-blue-03);
    --bs-btn-focus-shadow-rgb: 11, 172, 204;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #3dd5f3;
    --bs-btn-active-border-color: #25cff2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0dcaf0;
    --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-light {
/*     --bs-btn-color: #000; */
/*     --bs-btn-bg: #f8f9fa; */
    --bs-btn-border-color: #dee2e6;
/*     --bs-btn-hover-color: #000; */
/*     --bs-btn-hover-bg: #d3d4d5; */
/*     --bs-btn-hover-border-color: #c6c7c8; */
/*     --bs-btn-focus-shadow-rgb: 211, 212, 213; */
/*     --bs-btn-active-color: #000; */
/*     --bs-btn-active-bg: #c6c7c8; */
/*     --bs-btn-active-border-color: #babbbc; */
/*     --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); */
/*     --bs-btn-disabled-color: #000; */
/*     --bs-btn-disabled-bg: #f8f9fa; */
/*     --bs-btn-disabled-border-color: #f8f9fa; */
}

.btn-cert-blue {
	color: rgb(255, 255, 255) !important;
	outline-color: rgb(255, 255, 255) !important;
	background-color: #004489;
	border-radius: 15px;
	padding: 10px 28px 10px 28px !important;
}

.btn-cert-blue:hover {
	color: #fff;
	background-color: #003366;
	border-color: #004489;
}

.btn-sh {
	color: #fff;
	background-color: #2cc400;
	border-color: #2cc400;
}

.btn-sh:hover {
	color: #fff;
	background: #2cc400;
	border-color: #2cc400;
}

.btn-far {
	color: #fff;
	background-color: #2D9CDB;
	border-color: #2D9CDB;
}

.btn-far:hover {
	color: #fff;
	background: #2494d3;
	border-color: #2494d3;
}

.ir-arriba:hover {
	color: #242424;
}

.ir-arriba {
	display: none;
	background-repeat: no-repeat;
	font-size: 30px;
	color: #242424bf;
	cursor: pointer;
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 2;
}


.btn-cu.btn-color-estandar:hover {
    background-color: #0C549C;
    color: #FFF;
}
.btn-cu.btn-l {
    width: 180px;
    min-width: 180px;
    max-height: 48px;
    padding: 11px 18px !important;
    font-size: 18px;
}

.btn-cu.btn-color-estandar {
    background-color: #0F69C4;
    color: #FFF;
}
 
.btn-cu {
    display: inline-block;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
}

.btn-cu.btn-l .cl-claveunica {
    width: 26px;
    height: 26px;
    background-size: 26px 26px;
}


.btn-cu .cl-claveunica {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23FFFFFF" d="M11.4675,13.98 C11.3184168,13.8411851 11.2408804,13.6418927 11.2569506,13.4388234 C11.2730209,13.2357542 11.3809385,13.051138 11.55,12.9375 C11.6920419,12.8039318 11.8839635,12.736694 12.0783067,12.7524129 C12.2726498,12.7681319 12.4512707,12.8653401 12.57,13.02 C12.8292491,13.3325349 12.7926802,13.7946322 12.4875,14.0625 C12.3454581,14.1960682 12.1535365,14.263306 11.9591933,14.2475871 C11.7648502,14.2318682 11.5862293,14.13466 11.4675,13.98 L11.4675,13.98 Z M15.27,5.31749995 C18.6796882,6.64675131 20.9449716,9.90828502 21,13.5675 C21,18.5380628 16.9705628,22.5675 12,22.5675 C7.02943721,22.5675 2.99999993,18.5380628 2.99999993,13.5675 C2.94947349,9.95832374 5.11234931,6.68574688 8.45249999,5.31749995 C8.81999999,5.22749995 9.08999999,5.22749995 9.26999999,5.68499995 C9.44095071,6.05791973 9.28056036,6.49899331 8.90999999,6.67499996 C5.49519747,8.19209226 3.71803205,11.9914362 4.74232294,15.5849405 C5.76661383,19.1784449 9.27987194,21.4698087 12.9813562,20.9584779 C16.6828405,20.4471469 19.4433078,17.2891172 19.455,13.5525 C19.4675051,10.4778502 17.5911099,7.71091191 14.73,6.58499996 C14.5503885,6.52907161 14.4051674,6.39580506 14.334053,6.2216471 C14.2629384,6.04748914 14.273372,5.85066363 14.3625,5.68499995 C14.420264,5.50494963 14.5549765,5.35983308 14.7302402,5.28885849 C14.9055041,5.21788389 15.1032316,5.22837598 15.27,5.31749995 Z M7.49999997,13.3275 C7.48423513,11.0965623 9.06004154,9.17092686 11.25,8.74499999 L11.25,2.33249993 C11.2783776,1.91536359 11.5880757,1.57159868 12,1.49999993 L15.3075,1.49999993 C15.7040429,1.52383479 16.0132157,1.85274199 16.0125,2.24999993 C15.9960133,2.640241 15.6959765,2.95942918 15.3075,2.99999993 L12.75,2.99999993 L12.75,8.75999999 C14.9704659,9.13412384 16.5725796,11.0919068 16.5,13.3425 C16.5253492,15.8640842 14.5209645,17.9386223 12,17.9999999 C9.47312534,17.9385744 7.46637386,15.8548975 7.49999997,13.3275 Z M15,13.4175 C15.0130507,11.7354396 13.6812791,10.3503972 12,10.2975 C10.4186112,10.4716571 9.22153829,11.8078002 9.22153829,13.39875 C9.22153829,14.9896998 10.4186112,16.3258429 12,16.5 C13.6667054,16.4475269 14.9927506,15.0850154 15,13.4175 Z"/></svg>');
}


.btn-cu .cl-claveunica {
    display: inline;
    float: left;
    text-indent: -9999px;
}

.btn-cu.disabled, .btn-cu.disabled-link {
        background-color: #6c757d !important;
        border-color: #6c757d !important;
        opacity: 0.65;
        cursor: not-allowed;
}

.btn-cu.disabled:hover, .btn-cu.disabled-link:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.min-width-link {
    min-width: 100px;

    transition: all 0.2s ease;
}


/*************/
/*  FOOTER   */
/*************/

.footer-container {
	 
	background: url('/resources/images/footer/footer-bg.png') center/cover no-repeat;
}

.footer-data, .footer-data  h3 {
	color: #fff !important;
}

.gdlr-widget-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.gdlr-widget-title {
	margin-bottom: 35px;
	text-decoration: 4px #fea330 underline;
}

.link_footer a {
	color: #fff;
	text-decoration: none;
}

.footer-data ul {
	line-height: 1.2;
	font-size: 18px;
}

.footer-2-container {
	background-color: #00153eff;
	padding-bottom: 1.25rem;
	color: #fff;
	padding: 15px 0px;
}

.footer-2-container a {
	color: #fff;
	font-size: 18px;
}

.footer-social-icons {
	padding-top: 11px;
	padding-bottom: 11px;
	line-height: 18px;
}

.footer-social-icons .social-icon:first-child {
	margin-left: 0px;
}

.footer-social-icons .social-icon {
	display: inline-block;
	margin-left: 16px;
	max-width: 7px;
	font-size: 14px;
}

.footer-social-icons a {
	color: #d6d6d6;
	font-size: 18px;
}

a:hover i.fa-facebook-square {
	color: #3B5998;
}

a:hover i.fa-instagram {
	color: #e4405f;
}

a:hover i.fa-twitter {
	color: #4099FF;
}

a:hover i.fa-linkedin {
	color: #0e76a8;
}

a:hover i.fa-rss {
	color: #f57d00;
}

.footer-social-icons .social-icon a:hover {
	opacity: 0.9;
	filter: alpha(opacity = 50);
}

.footer-social-icons   a {
	color: #d6d6d6;
	font-size: 18px;
}

.link_footer a:hover {
	color: #ff7a30;
	text-decoration: none;
}

.version {
	color: #c6c6c600;
	line-height: 1.5rem;
	font-size: 0.875rem;
	display: none;
}


/* SIGEC */

.drivers-body-error ul {
   max-width: fit-content;
}

.drivers-body ul {
    max-width: 350px;
}

.drivers-body ul li a {
    color: #023089;
    font-weight: bold;
 
    text-decoration: none;
}

 .caption-img-cu-01 {
    position: absolute;
    right: 25%;
    left: 25%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    top: 18%;
}

.steps {
    color: #fff;
    background: #2D9CDB;
    border: 1px solid #2F80ED;
}

.renew-circle {
    color: #51b50a;
}

.download-circle {
    color: #d31406;
}

.check-circle {
    color: #0d84e5;
}

.userPanel a{
	color: #9b9b9b;
    text-decoration: none;
	
}

.notFoundCode {
    font-family: titillium web, sans-serif;
    font-size: 100px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #023089;
    background-size: cover;
    background-position: center;
}





.mi-div {
            width: 300px;
            height: 150px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin: 20px;
            font-size: 20px;
            font-weight: bold;
            /* Estado inicial oculto */
            opacity: 0;
            transform: translateX(-100%);
        }
        
        /* Animación para mostrar (izquierda → derecha) */
        .mostrar {
            animation: aparecerAnim 0.6s ease forwards;
        }
        
        @keyframes aparecerAnim {
            0% {
                transform: translateX(-100%);
                opacity: 0;
                clip-path: inset(0 100% 0 0);
            }
            50% {
                opacity: 0.5;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
                clip-path: inset(0 0 0 0);
            }
        }
        
        /* Animación para ocultar (centro → derecha) */
        .ocultar {
            animation: desaparecerAnim 0.6s ease forwards;
        }
        
        @keyframes desaparecerAnim {
            0% {
                transform: translateX(0);
                opacity: 1;
                clip-path: inset(0 0 0 0);
            }
            100% {
                transform: translateX(100%);
                opacity: 0;
                clip-path: inset(0 100% 0 0);
            }
        }
        
        
        
/* Aplicar la animación a la clase .pulse */
.pulse {
    animation: pulse 1.5s infinite; /* Repetir cada 4 segundos y ser infinita */
}

/* Definir la animación Pulse */
@keyframes pulse {
   0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


        /* Contenedor principal */
        .check-css-modificado {
            width: 80px;
            height: 80px;
            position: relative;
            margin: 50px auto;
        }
        
        /* Círculo - Ahora más pequeño y en el centro */
        .check-css-modificado .circle {
            width: 80px;
            height: 80px;
            border: 3px solid #4CAF50; /* Verde - ahora es el borde */
            background-color: white; /* Fondo blanco */
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            animation: circle-grow 0.5s ease-out forwards;
            box-sizing: border-box;
        }
        
        /* Check (palomita) - mejor centrada */
        .check-css-modificado .tick {
            position: absolute;
            width: 24px;
            height: 12px;
            border-left: 5px solid #4CAF50; /* Verde */
            border-bottom: 5px solid #4CAF50; /* Verde */
            transform-origin: center;
            transform: rotate(-45deg) scale(0);
            animation: tick-draw 0.5s ease-out 0.5s forwards;
            /* Centrado perfecto */
           top: 52%;
    left: 65%;
            margin-left: -12px; /* Mitad del ancho */
            margin-top: -6px; /* Mitad de la altura */
        }
        
        /* Animación del círculo */
        @keyframes circle-grow {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }
        
        /* Animación del check */
        @keyframes tick-draw {
            0% {
                transform: translate(-50%, -50%) rotate(-45deg) scale(0);
                opacity: 0;
            }
            70% {
                transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) rotate(-45deg) scale(1);
                opacity: 1;
            }
        }
        
        /* Versión alternativa con fondo verde y check blanco */
        .check-css-alternativo .circle {
            background-color: #4CAF50; /* Fondo verde */
            border: 3px solid white; /* Borde blanco */
        }
        
        .check-css-alternativo .tick {
            border-left-color: white; /* Check blanco */
            border-bottom-color: white; /* Check blanco */
        }
        
        /* Contenedor para mostrar ambas versiones */
        .demo-container {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            padding: 20px;
        }
        
        .demo-item {
            text-align: center;
        }
        
        .demo-label {
            margin-top: 10px;
            font-family: Arial, sans-serif;
            color: #333;
            font-weight: bold;
        }
        
        
        
/*     BLOG     */
        
        
        
        .blog h1.art-tittle {
	font-size: 50px;
	line-height: 1.2;
	/* min-width: 660px; */
}

.blog h1 {
	font-weight: 600;
	font-size: 30px;
	line-height: 32px;
}

.blog h1, .blog h2, .blog h3, .blog h4, .blog h5, .blog h6 {
	color: #1DAFED;
}

.article .art-bn-cont {
	background-color: #F1F5F9;
}

.article .art-description {
	/* min-width: 567px; */
	font-weight: 400;
	font-size: 22px;
	line-height: 35px;
	/* or 159% */
	letter-spacing: 0.5px;
	color: #121212;
	opacity: 0.7;
}

.blog.article .card {
	padding-bottom: 0px;
}

.blog .card {
	border: 0px solid rgba(0, 0, 0, .125);
	padding-bottom: 50px;
	width: 315px;
	/* 	    margin-right: auto!important;
    margin-left: auto!important; */
}

.blog_card {
	/*   width: 337px; */
	max-height: 850px;
	/* border-radius: 30px; */
	overflow: hidden;
}

.blog .date {
	font-style: normal;
	font-weight: 500;
	line-height: 12px;
	/* identical to box height, or 92% */
	letter-spacing: 2px;
	color: #1DC6D1;
	mix-blend-mode: normal;
}

.blog .lectura {
	font-style: normal;
	font-weight: 400;
	line-height: 12px;
	/* identical to box height, or 92% */
	letter-spacing: 0.5px;
	color: #121212;
	mix-blend-mode: normal;
	opacity: 0.3;
}

.blog .card-title {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	/* line-height: 35px; */
}

.blog .card-title a {
	color: #1DAFED !important;
}

.blog .card-text {
	font-weight: 400;
	font-size: 18px;
	/* line-height: 35px;
or 159%

letter-spacing: 0.5px; */
	color: #121212;
	opacity: 0.7;
}

.blog .card-body {
	min-height: 230px;
}

.blog.article .card-body {
	min-height: 230px;
	max-width: 615px;
}

.blog.article a.blog-link {
	font-weight: 700;
	text-decoration-line: underline;
	color: #2D9CDB;
	/* opacity: 0.7; */
}

.article .article-body p {
	font-weight: 400;
	font-size: 18px;
	/* line-height: 35px; */
	/* or 159% */
	text-align: justify;
	/* letter-spacing: 0.5px; */
	color: #121212;
	opacity: 0.7;
}

.blog .card-footer {
	background: #4e9aa926;
	padding: 15px 10px;
	border-top: 0px solid rgba(0, 0, 0, .125);
}

.blog .card-footer span.art {
	padding: 5px 9px;
	background-color: #FFF;
	font-weight: 600;
	/* 	font-size: 14px; */
	/* or 64% */
	letter-spacing: 1px;
	color: #4E9AA9;
}

.blog .card-footer .read {
	/* 	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	or 129%
	letter-spacing: 0.5px;
	color: #4E9AA9;
	 */
	font-style: normal;
	font-weight: 500;
	line-height: 18px;
	/* or 129% */
	letter-spacing: 2px;
	color: #4E9AA9;
}

.blog .blockquote-footer {
	font-size: 16px;
}

.blockquote-footer::before {
	color: #121212;
	opacity: 0.7;
}

.blog-navbar a.navbar-brand {
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 23px;
	/* identical to box height, or 128% */
	letter-spacing: 1px;
	color: #1DAFED;
	mix-blend-mode: normal;
}

.blog-navbar .nav-item a.active, .blog-navbar .nav-link.active {
	color: #1DAFED !important;
}

.blog-navbar .nav-link:hover {
	color: #1DAFED !important;
}


.blog.article .card {
    padding-bottom: 0px;
}

.blog .card {
    border: 0px solid rgba(0, 0, 0, .125);
    padding-bottom: 50px;
    width: 340px;
}
.blog_card { 
    max-height: 850px;
    overflow: hidden;
}


.img-blog-caption {
	top: 20%;
	left: 6%;
}

.img-blog-caption span.sign {
	font-size: 70px;
}

.img-blog-caption span {
	font-size: 60px;
	color: #00EFFF;
	font-weight: 500;
	text-shadow: black 0.1em 0.1em 0.2em;
}

.img-blog-caption p {
	font-style: normal;
	font-weight: 500;
	font-size: 30px;
	line-height: 35px;
	/* or 117% */
	letter-spacing: -2px;
	color: #00EFFF;
	text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.25);
	padding-left: 50px;
}

.blog h1 {
    font-weight: 600;
    font-size: 30px;
    line-height: 32px;
}

.btn-blog:hover {
    color: #fff;
    background-color: #2D9CDB;
    border-color: #2D9CDB;
}

.btn-blog {
    color: #fff;
    background-color: #2D9CDB;
    border-color: #2D9CDB;
    padding: 5% 40px;
    font-size: 11px;
    text-transform: uppercase;
    min-height: 34px;
}

.c-lb-2 {
    color: #1DAFED !important;
}



.img-blog-caption span {
    font-size: 60px;
    color: #00EFFF;
    font-weight: 600;
    text-shadow: black 0.1em 0.1em 0.2em;
}

.img-blog-caption p {   
    font-weight: 600;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -2px;
    color: #00EFFF;
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding-left: 50px;
}

.img-container {
    min-height: 220px;
}

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
	color: #1DAFED;
}

.products .products_card {
	border: 0px solid rgba(0, 0, 0, .125);
}

.integraciones .int-panel {
	background: #F7FCFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 30px;
	padding: 50px 10%;
	width: 100%
}

.integraciones .int-title {
	font-size: 26px;
	text-align: center;
	color: #3E64AD;
	padding-bottom: 25px;
}

#questionContainer .question{background: #F7F7F7;padding: 30px 30px 10px 30px;}

#questionContainer .question .text{color: #2D9CDB;}


/* SH */

.sh_free_card {
    max-width: 300px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.green-cert {
    color: #2CC400;
}

.darkGreen-cert {
    color: #3bb900;
    font-weight: bold;
}

.tutorial-sh {
    zoom: 4;
}

.arrow {
    padding-top: 65px;
}

.plans-card.sh-enterprise {
    margin-top: 0px;
    margin-bottom: 0px;
}
.plans-card {
    background-color: #ffffff;
    border-radius: 30px;
    margin-top: 16px;
    box-shadow: 8px 8px 18px #888888b8;
    margin-bottom: 30px;
    /* min-height: 420px; */
    max-width: 320px;
}

.plans-card.sh-enterprise .title
 {
    background-color: #C31162;
}

.plans-card .title {
    border-radius: 30px;
    background-color: #3d64b1ff;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    font-size: 30px;
    padding: 15px 0px;
    color: #fff;
    text-align: center;
}

.plans-card>ul {
    padding: 10% 0% 0% 8%;
}

.plans-card.sh-enterprise>.card-footer {
    color: #C31162;
}
.plans-card>.card-footer {
    border-top: 2px dashed #C5C4C4;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 56px;
    text-align: center;
    letter-spacing: 0.2px;
    color: #3E64AD;
    border-top-radius: 30px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.plans-card>ul>li{
    padding-bottom: 8px;
    font-weight: bold;
}

.plans-card.sh-enterprise>ul>li>i {
    color: #C31162;
}

.c-m {
    color: #C31162;
    text-decoration: none;
}




/* FAR */

.img-prd-caption-3 {
    right: 10%;
    top: 55%;
    left: 10%;
}

.plans-card.far-plan>ul>li>i {
    color: #3C64B1;
}


/* DRIVERS */

.drivers-body ul li a {
    color: #023089;
    font-weight: bold;
}

.drivers-body ul li {
    padding-bottom: 5px;
}

.drivers-body ul li .fa {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.drivers-body ul {
    max-width: 350px;
}

ul ul {
    margin-bottom: 1rem;
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

/* TUTORIALES */

.menu-tutorial>.nav-link {
    color: #626262;
    text-decoration: underline;
}

.menu-tutorial>.nav-link.active {
    color: #023089;
    background-color: #fff;
    font-weight: bold;
}

/* FAQS */

.faq-btn {
	border-radius: 0px !important;
	min-height: 50px !important;
	min-width: 50px !important;
	color: #FFFFFF !important;
	background: #2D9CDB;
	border-color: #2D9CDB !important;
}

.faq-btn:hover {
	color: #fff;
	background-color: #2D9CDB;
	border-color: #2D9CDB;
}

.input-group>.faq-input {
	border-radius: 0px;
	padding: 11px 30px !important;
	font-size: 15px !important;
	position: relative;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	background-color: #ffffff !important;
	display: block;
	/*     width: 100%; */
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-group>.faq-input:focus {
	border: 1px solid #ced4da;
}

.input-group>.faq-input:focus-visible {
	outline: none;
}

.btn-faq-menu {
	/* 	width: 261px;
	height: 177px;*/
	background: #FFFFFF;
	color: #2D9CDB;
	border-radius: 0px !important;
	border: 2px solid #2D9CDB !important;
	/* 	position: absolute; */
	width: 360px;
	/* height: 25px; */
	white-space: normal;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 30px;
	/* or 125% */
	text-align: center;
	letter-spacing: 0.1px;
	padding: 0 0 !important;
	/* color: #FFFFFF; */
}

.btn-faq-menu:hover {
	color: #2D9CDB;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
}

.btn-faq-menu.active {
	background: #2D9CDB;
	color: #FFFFFF;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.bg-grey {
    background: #F7F7F7;
}

.gdlr-accordion-item.style-1 .accordion-tab:first-child {
    /* border: 0px; */
    padding-top: 0px;
}
.gdlr-accordion-item.style-1 .accordion-tab {
    overflow: hidden;
    padding: 11px 0px;
}
.accordion-tab {
    border-bottom: 1px solid #b9b9b9;
}

hr.faqs {
    border: 1px solid #2D9CDB;
    opacity: 0.8;
}

.gdlr-accordion-item.style-1 .accordion-title i.icon-minus {
    color: #ffffff;
}

.gdlr-accordion-item.style-1 .accordion-title i.icon-minus {
    background-color: #2D9CDB;
}
.gdlr-accordion-item.style-1 .accordion-title i {
    float: left;
    transition: color 200ms, background-color 200ms;
    -moz-transition: color 200ms, background-color 200ms;
    -o-transition: color 200ms, background-color 200ms;
    -webkit-transition: color 200ms, background-color 200ms;
}
.gdlr-accordion-item.style-1 .accordion-title i {
    margin-right: 20px;
    font-size: 13px;
    padding: 12px 14px 10px;
    display: inline-block;
}

.icon-minus:before {
    content: "\f068";
    font-family: fontAwesome;
    font-style: normal;
}

.icon-plus:before {
    content: "\f067";
    font-family: fontAwesome;
    font-style: normal;
}

.gdlr-accordion-item.style-1 .accordion-title span {
    overflow: hidden;
    display: block;
    padding-top: 10px;
}

.gdlr-accordion-item.style-1 .accordion-content {
    padding-top: 40px;
    padding-bottom: 20px;
    margin-left: 57px;
    font-size: 15px;
    width: 70%;
}

.gdlr-accordion-item.style-1 .accordion-title {
    font-weight: bold;
    font-size: 19px;
    /* line-height: 35px; */
    margin-bottom: 0px;
    cursor: pointer;
    transition: color 200ms;
    -moz-transition: color 200ms;
    -o-transition: color 200ms;
    -webkit-transition: color 200ms;
}

.gdlr-accordion-item.style-1 .accordion-title i {
    margin-right: 20px;
    font-size: 13px;
    padding: 12px 14px 10px;
    display: inline-block;
}
.gdlr-accordion-item.style-1 .accordion-title i {
    color: #a8a8a8;
}
.gdlr-accordion-item.style-1 .accordion-title i {
    background-color: #f3f3f3;
}

.btn-faq-menu.active {
    background: #2D9CDB;
    color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-faq-menu:hover {
    color: #2D9CDB;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
}

.gdlr-accordion-item.style-1 .accordion-tab {
    overflow: hidden;
    padding: 11px 0px;
}
.accordion-tab {
    border-bottom: 1px solid #b9b9b9;
}

/* SOPORTE */

.support .card{
    min-width: 270px;
    max-width: 270px;
    margin: auto;
}

.support-panel>.card-img {
    min-height: 125px;
}

.support .card .card-text {
    min-height: 150px;
}

.btn-dark-sh {
    color: #fff;
    background-color: #2A7A05;
    border-color: #2A7A05;
}

.dark-green-cert{
    color: #2A7A05;
}

.c-lb {
    color: #2D9CDB;
}

.btn-ent {
    color: #FFFFFF;
    background-color: #C31162;
}


/* TUTORIAL */

 

.tutto-win .nav .nav-link, .tutto-mac .nav .nav-link {
    text-align: initial;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
      color: #fff;  
/*     background-color: #0d6efd; */
}
.tutto .nav-link {
    background: #FFFFFF;
    color: #2D9CDB;
    border-radius: 0px !important;
    border: 2px solid #2D9CDB;
    width: 100%;
    white-space: normal;
    font-size: 20px;
    line-height: 30px;
    text-align: left;
    letter-spacing: 0.1px;
    margin-bottom: 8px;
    padding: 10px 12px !important;
    min-height: 0 !important;
    height: auto !important;
    display: block !important;  /* ← fuerza que se vea el fondo */
}

.tutto .nav-link.active {
    background: #2D9CDB !important;
    color: #FFFFFF !important;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}

/* Fuerza que el contenedor no estire los items */
#v-pills-tab {
    align-items: flex-start !important;
    align-self: flex-start !important;  /* ← esto es lo clave */
}

/* 404 */

.panel {
    background: #FFFFFF;
    box-shadow: 10px 10px 25px #BED4FF;
    border-radius: 30px;
}

.error-red {
    color: #dc3545;
}

/* EPAC */

.solutions-img {
    min-height: 110px;
}

.epac.solutions {
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 50px;
}

.epac-panel {
    /* position: absolute; */
    /* width: 687px; */
    height: 330px;
    background: #F6F6F6;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
}


.epac.solutions>.p-solutions {
    min-height: 100px;
}

.solutions>.p-solutions {
    color: #626262;
    font-size: 18px;
    min-height: 200px;
}
.solutions>h6, .solutions>p {
    color: #5c6369;
    font-size: 18px;
}

.help-block {
    font-size: 15px;
    color: red;
}


/* OC */

.btn-danger
 {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}

.total_modal {
    font-family: titillium web, sans-serif;
    font-size: 50px;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #023089;
    background-size: cover;
    background-position: center;
}


.btn-simple:hover {
    color: #fff;
    background-color: #ee8100;
    border-color: #ee8100;
}


.btn-simple {
    color: #fff;
    background-color: #FF8A00;
    border-color: #FF8A00;
}

.img-container {
    min-height: 220px;
}

.img-banner-caption-3 {
    position: absolute;
    /* right: 20%; */
    top: 0%;
    /* left: 20%; */
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

/* .carousel-control-next { */
/*     right: -130px; */
/* } */

/* Botón Certificaciones */
.btn-cert-certificaciones {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: linear-gradient(135deg, #0057b8 0%, #0098d4 100%);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,87,184,.28);
    transition: transform .18s, box-shadow .18s;
    white-space: nowrap;
}
.btn-cert-certificaciones:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,87,184,.38);
    color: #fff !important;
}
.cert-chevron {
    transition: transform .2s;
}
.cert-btn-wrapper.open .cert-chevron {
    transform: rotate(180deg);
}

/* Wrapper posicionado */
.cert-btn-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
}

/* Panel desplegable */
.cert-dropdown-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #dce8f5;
    border-radius: 10px;
    box-shadow: 0 10px 36px rgba(0,0,0,.13);
    width: 270px;
    padding: 10px;
    z-index: 999;
    text-align: left;
}
.cert-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #dce8f5;
}
.cert-dropdown-panel::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
}
.cert-btn-wrapper.open .cert-dropdown-panel {
    display: block;
}

/* Título del panel */
.cert-dropdown-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #99aabb;
    padding: 4px 8px 8px;
    border-bottom: 1px solid #eef2f8;
    margin-bottom: 6px;
}

/* Ítems de documento */
.cert-doc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 8px;
    border-radius: 7px;
    text-decoration: none !important;
    color: #222 !important;
    transition: background .14s;
}
.cert-doc-item:hover {
    background: #f0f6ff;
}
.cert-doc-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e8f1ff, #cce4ff);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0057b8;
}
.cert-doc-info { flex: 1; min-width: 0; }
.cert-doc-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a2a4a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cert-doc-desc {
    font-size: 11px;
    color: #778899;
    margin-top: 1px;
}
.cert-doc-arrow {
    color: #b0c0d8;
    font-size: 18px;
    line-height: 1;
}
