@import url("hero.css");
@import url("navbar.css");
@import url("collapse.css");
@import url("button.css");
@import url("table.css");

body {
  color: #000000; 
  line-height: 1.6;
  margin: 0;
  padding: 0;

}

h1 {
  font-size: 5.3rem;
  font-weight: 700;
  text-align: center;
  color: white
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #6265ff;
}

p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size:20px;
  text-align: justify;
}

a {
  text-decoration: none;
}

.enlace-hover {
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.enlace-hover:hover {
  text-decoration: underline;
}


ul {
  list-style: none;
}

li {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  font-size: 20px;
}

.custom-li {
    margin-top: 1.5rem;
}

.blue-text {
  color: #6265ff;
}

.bg-custom {
  background-color: #6265ff;
}

section {
  padding-top: 5rem;
}

section.first{
  padding: 0;
}

.center-img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.enfasis {
  font-size: 24px;
  font-weight: 500;
  font-style: italic;    
  text-align: center;
}

.destacar {
  font-weight: 500;
  color: #6265ff;
  font-size: 20px;

}

.custom-card {
  box-shadow: 0 4px 12px rgba(98, 101, 255, 0.4);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoom{
  transition: transform 0.3s ease-in-out;
}
   
.zoom:hover {
  transform: scale(1.1);
}

.custom-cta {
  display: flex;                 
  flex-direction: column;     
  align-items: center;      
  justify-content: center;     
  background-color: #6265ff; 
  padding: 3rem;            
  color: white;          
  text-align: center;          
}

.cta-text {
  font-size: 30px;
  line-height: 0;
  padding-bottom: 1.5rem;
}


@media (max-width: 575.98px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    text-align: center;  
    font-size: 2rem;

  }

  p, .destacar{
    font-size: 18px;
  }

  .enfasis {
    font-size: 21px;
  }

  li{
    font-size: 18px;
    
  }

  section {
    padding-top: 4rem;
  }

  .cta-text {
    font-size: 25px;
    line-height: 2rem;
    text-align: center;
  }
  
}

