
.hero {
    background: radial-gradient(97.05% 339.2% at 2.95% 100%, #162849 0%, #405987 82.21%, #2B4168 100%) var(--azul);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    padding: 120px 10px 50px;
    position: relative;
}


h1{
    font-size: 2.5rem;
}

p.hero-text{
    font-size: 1.1rem;
}

.hero-stats{
    padding-top: 30px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
}

@media (min-width: 767px){
    .hero{padding: 200px 0px 100px;}
    h1{font-size: 3.5rem;}
}

@media (min-width: 1200px){
    h1{
        font-size: 5rem;
        line-height: 5rem;
    }
}


.card-custom{
    transition: .3s;
}

.card-custom:hover{
    border-color: var(--verde);
}


.cta-box{
    background: var(--azul);
    padding: 20px;
    border-radius: 20px;
}

.card-border{
    overflow: hidden;
    position: relative;
}

.card-border::after{
    left: 0;
    right: 0;
    height: 4px;
    top: 0;
    content: '';
    background: var(--verde);
    position: absolute;
}


.line p:first-child {
    background: #253A60;
    display: table;
    margin: 0px auto 20px;
    padding: 10px;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    line-height: 50px;
    box-sizing: content-box;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    border: 3px solid var(--azul);
}


.accordion {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
}


.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  cursor: pointer;
  font-weight: bold;  
}


.accordion-title h5{
    margin-bottom:0px!important;
}

.accordion-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--azul);
  transition: transform 0.3s ease;
}

/* línea horizontal */
.accordion-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* línea vertical */
.accordion-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

input[type="checkbox"] {
  display: none;
}

/* Cuando está abierto */
input:checked + .accordion-title + .accordion-content {
  max-height: 200px;
  padding: 15px 0px 0px 0px;
}

/* Animación de la cruz -> X */
input:checked + .accordion-title .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

a{
    font-size: 1rem;
    color:var(--verde);
}