/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
 /*Utilities*/

.container {
   max-width: 1280px;
   margin: auto;
}
 
.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-primary-v3 {
    display: inline-block;
    color: white;
    font-size: 18px;
    padding: 1.094rem 1.638rem;
    border-radius: 1.094rem;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    background-image: linear-gradient(226deg, #6C63FF, #1A1566, #1F2D52, #1F2D52);
}

a.btn-primary-v3:hover {
    opacity: 0.8;
}
.hs-landing-page {
   background-color: #f6f8ff;
}

/*Header*/
.header-descargables {
    max-width: 800px;
    margin: auto;
    text-align: center;
    color:rgba(31, 45, 82, 1);
    margin-top: 5rem;
}

.header-descargables h1 {
    margin: 1rem auto;
    font-weight: 400;
}

@media only screen and (max-width: 670px) {
    .header-descargables {
      padding: 0 1rem;
      margin-top: 3rem;
}
}

/*Form*/
.form.form-ppc {
      margin-bottom: 6rem;
}
/*Column 2*/

.section-dos-columnas {
    padding: 3rem 1rem;
    background-color: white;
}

.container-dos-columnas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.texto-columna h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: left;
}

@media (min-width: 768px) {
  .container-dos-columnas {
    grid-template-columns: repeat(2, 1fr);
  }
}

.texto-columna div {
  font-size: 1.125rem;
  color: #4B5563; /* gris medio */
  line-height: 1.6;
}

.imagen-columna img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*Form*/
@media only screen and (max-width: 670px) {
    .form.form-ppc {
        margin: 35px 1rem 60px 1rem;
        padding: 35px 20px 1px 20px;
    }
}


/*Por que elegir*/
.por-que-elegir {
    padding: 4rem 1rem;
}
.img-elipse {
   width: 100%;
   position: absolute;
}
.por-que-elegir h2 {
  font-weight: 400;
}

.ventajas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem;
}
}

@media (min-width: 640px) {
  .ventajas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .ventajas-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1280px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .por-que-elegir {
    background: linear-gradient(225deg, #F0EFFF 0%, #AEA9FF 100%);
    padding: 5rem 0rem;
    margin-top: 2rem;
    padding-top: 80px !important;
}
  .ventajas-grid {
    display: flex;
    overflow: auto;
}
  .ventaja-item {
    flex: 0 0 auto;
    max-width: 300px;
}
}

.ventaja-item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ventaja-title {
  font-weight: bold;
  font-size: 1.125rem; /* 18px */
  margin: 0;
}

.ventaja-texto {
  color:#9ba9bd;
  font-size: 1rem;
  margin: 0;
}

.ventaja-icono {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

/*Imagen Banner*/
/* Contenedor principal */
.banner-hubspot {
   max-width: 1280px;
   margin: 4rem auto 3rem; 
   padding-inline: 1rem; 
}

/* Fondo */
.banner-wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  overflow: hidden;
}

/* Grid de columnas */
.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem 40px;
    align-items: center;
    justify-items: center;
}

@media (max-width: 768px) {
  .banner-content{
     display: grid;
     grid-template-columns: auto;
     margin-bottom: 2rem;
}
}
/* Texto */
.banner-hubspot .banner-text {
  color: #ffffff;
  max-width: 550px;
  text-align: center;
}

.banner-hubspot .banner-text h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-align: left;
    color:white;
}

@media (min-width: 768px) {
 .banner-hubspot .banner-text {
    text-align: left;
  }
}

@media (max-width: 768px) {
.banner-hubspot .banner-text h2 {
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    font-size: 1.8rem;
    padding-top: 20px;
}
}

/* Botón */
.banner-btn a {
  display: inline-block;
  background-color: #ffffff;
  color: #6C63F9;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}

.banner-btn a:hover {
  background-color: #f0f0f0;
}

/* Imagen */
.banner-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Relacionados: Estilos generales */
.relacionados-wrapper {
  background: linear-gradient(225deg, #F0EFFF 0%, #AEA9FF 100%);
  padding: 4rem 1rem;
  margin-top: 2rem;
  padding-top: 3rem;
  padding-bottom: 7rem;
}

.relacionados-wrapper h2 {
  font-weight: 400;
}

/* Grid en desktop */
.relacionados-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1rem;
}

@media (min-width: 640px) {
  .relacionados-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .relacionados-slider {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1280px;
    margin: auto;
  }
}

/* Estilos responsivos para slider horizontal en móvil */
@media (max-width: 768px) {
  .relacionados-wrapper {
    background: linear-gradient(225deg, #F0EFFF 0%, #AEA9FF 100%);
    padding: 5rem 0rem;
    margin-top: 2rem;
    padding-top: 3rem;
  }

  .relacionados-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .relacionado-item {
    flex: 0 0 auto;
    max-width: 300px;
    scroll-snap-align: center;
  }
}

/* Tarjeta individual */
.relacionado-item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Título */
.relacionado-title {
  font-size: 1.35rem; /* 18px */
  font-weight: 500;
  margin: 0;
}

/* Texto */
.relacionado-texto {
  color: #9ba9bd;
  font-size: 1rem;
  margin: 0;
}

/* Imagen/Icono */
.relacionado-icono {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  margin-top: 20px;
}

/* Dots */
.relacionados-dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.relacionados-dots-container .dot {
  border-radius: 50%;
  background-color: #cbd5e1; /* gris claro */
  transition: background-color 0.3s ease;
}

.relacionados-dots-container .dot.active {
  background-color: #1f2d52; 
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media (min-width: 761px) {
  #relacionados-dots {
    display: none;
  }
}


/*Footer*/
.footer-container-wrapper {
    background-color: #1f2d52;
    color: white;
    margin-top: 0rem;
    padding-top:2rem:
}