/* ===================================
    Cover
====================================== */

.cover{
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image:url('../../assets/img/nosotros/cover/cover-fondo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.deco-cover{
  position: absolute;
  top:0px;
  right: 0px;
  width: 100%;
}

/* ===================================
    Global
====================================== */

/*Section mision y vision*/

.card-main{
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 75%;
  background: #EBF1F6;
  border-radius: 13px;
  border-left: 14px solid #FF5C35;
  padding: 20px 30px;
}

.card-main img{
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
}

.content-cards{
  position: relative;
  top: 0;
  padding: 50px 0px;
}


/*Section talento*/

.bg-main-talento{
    clip-path: ellipse(150% 100% at 50% 100%);
    -webkit-clip-path: ellipse(150% 100% at 50% 100%);
  background: linear-gradient(360deg, #000C2B 23.96%, #001E6B 100.68%);
}

:root {
  --accent: #e63946;
  --dash: 16px;
}

/* Layout base */
.timeline {
  max-width: 100%;
  margin-top: 50px;
  color: #fff;
}

/* Pista superior */
.track {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  height: 56px;
  position: relative;
  width: 70%;
}

/* Dots */
.dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0.4);
  opacity: 0;
  animation: popDot .4s ease forwards;
}

/* Segmentos de línea */
.seg {
  height: 3px;
  background-image: repeating-linear-gradient(
    to right,
    var(--accent) 0 calc(var(--dash)/2),
    transparent calc(var(--dash)/2) var(--dash)
  );

  /* efecto de máscara de revelado */
  width: 0;
  overflow: hidden;
  animation: revealWidth .9s linear forwards;
}

/* Contenido */
.columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  margin-top: 18px;
}
.icon img {
  max-width: 96px;
  display: block;
  margin: 0 auto 12px;
}
.columns p {
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.35;
  font-size: 16px;
}

/* ============= Secuencia ============= */
.d1   { animation-delay: 0s; }
.seg1 { animation-delay: .4s; }
.d2   { animation-delay: 1.3s; }
.seg2 { animation-delay: 1.7s; }
.d3   { animation-delay: 2.6s; }

/* Animaciones */
@keyframes revealWidth {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes popDot {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ===================================
    Responsive
====================================== */

/* xxs */ @media (max-width: 430px) {}
/* xs  */ @media (min-width: 431px) {} /* @media (max-width: 575px) {} */
/* sm  */ @media (min-width: 576px) {

/*Section talento*/
.columns {grid-template-columns: repeat(3, 1fr);gap: 30px;}

}
/* md  */ @media (min-width: 768px) {

/*Section mision y vision*/
.content-cards{top: -20%;padding: 0px 0px;}

/*Section talento*/
.bg-main-talento{
  clip-path: ellipse(85% 100% at 50% 100%);
  -webkit-clip-path: ellipse(85% 100% at 50% 100%);
}

} /* ipad Portrait */
/* lg  */ @media (min-width: 992px) {} /* ipad Landscape */
/* xl  */ @media (min-width: 1200px) {}
/* xxl */ @media (min-width: 1400px) {}
