/*cadenassl*/
.img-container img {
max-width: 100%;
border-radius: 10px;
}
.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 0.2rem solid #453d2b;
    padding-top: 2rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.timeline-item {
    position: relative;
    flex: 1 1 30%;
    text-align: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -2.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.8rem;
    height: 0.8rem;
    background: #e6c683;
    border-radius: 50%;
}

.timeline-date {
    font-weight: bold;
    color: #453d2b;
    margin-top: 0.5rem;
}

.timeline-content {
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 0.6rem;
    box-shadow: 0 0.2rem 0.4rem rgba(0,0,0,0.05);
    margin-top: 0.5rem;
}
@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        border-top: none;
        border-left: 0.2rem solid #453d2b;
        padding-left: 1.5rem;
        padding-top: 0;
    }

    .timeline-item {
        text-align: left;
    }

    .timeline-item::before {
        top: 0.4rem;
        left: -1.1rem;
        transform: none;
    }
}
/*index de soporte*/
videofondo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

.container {
  backdrop-filter: blur(2px);
}



/* títulos */
h2{
  font-weight:600;
}

.tittle-line{
  display:block;
  width:50px;
  height:3px;
  background:#ED1C23;
  margin:10px auto 20px;
}

a.a-soporte,
a.a-soporte:hover,
a.a-soporte:focus,
a.a-soporte:active {
  text-decoration: none !important;
  color: #ED1C23 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.seccion {
  padding: 2rem 1rem;
  position: relative;
}

.seccion-intro {
  max-width: 900px;
  margin: 0 auto;
}
.seccion-links {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
seccion-recursos {
  max-width: 1000px;
  margin: 0 auto;
}
.seccion::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ED1C23;
  margin: 30px auto 0;
  opacity: 0.6;
}
.logo-img {
    width: 100%;
     height: clamp(80px, 10vw, 130px);
    object-fit: contain;
}
/*index tonenusb */
.img-soporte-ssl {
    
    object-fit: contain;
}
.badge-proximamente {
    position: absolute;
    top: -8px;
    right: 25px; /* antes 10px */
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    z-index: 3;

animation: floatBadge 2.5s ease-in-out infinite;
    transition: transform 0.2s ease;
}
@keyframes floatBadge {
    0%   { transform: translateX(0px); }
    50%  { transform: translateX(-8px); }
    100% { transform: translateX(0px); }
}

.badge-proximamente:hover {
    transform: scale(1.08);
}
/*generacion*/
.link-menu-ssl{
		color: black;
		width: 110%;		
	}
	
	.link-menu-ssl:hover{
		color: #ED1C23;
	}

	.lista-token{
		list-style-image: url(../../assets/images/pdf_ico.jpg);
	}

	.btn-acordeon-col{
		background-color:white;
		border:none;
	}

	.btn-acordeon-col2 {
    width: 40%;
    /*background-color: red;*/
    color: black;
    text-align: center;
    margin: 5%;
	border-bottom: 1px #898989 solid;
	}

	/*Clase para las imagenes*/

	.img-empresas{
		/*Ver el tema del alto para algunos logos en especifico*/
		heigth: 50%;
		width: 50%;
	}

	.div-imagenes{
		margin:auto;
		margin-bottom: 2.5%;
		margin-top:    2.5%;
	}
/*sop ssl*/
.img-soporte-ssl{
        transition: transform 2s ease;
    }

    .img-soporte-ssl:hover {
        transform: rotateY(360deg);
    }
/*index caas*/
.section-box {
    border-left: 4px solid #d97706; /* naranja cálido */
    background: #fff7ed; /* fondo suave */
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
}

.section-box:hover {
    background: #ffedd5;
    transform: translateY(-2px);
}

.section-title {
    color: #b45309; /* marrón/naranja oscuro */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-box ul {
    padding-left: 1.2rem;
}

.section-box ul li {
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}

.section-box ul li:hover {
    color: #c2410c;
}

.highlight {
    background: #fed7aa;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.sub-block {
    background: #ffffff;
    border: 1px solid #fcd9b6;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 6px;
}