/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --azul-fuerte: #004272;
  --morado: #7651ee; 
  --azul-oscuro: #001f38;
  --naranja-claro: #FFD80B;
  --transition-duration: 0.7s;
}

* {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# content-prin
--------------------------------------------------------------*/


#content-prin {
  margin-top: 70px;
}

.wrapper {
  background-color: #012C56;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.5em;
}

.wrapper > div {
  margin-top: 0.5em;
}

.title h1 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: lighter;
}

.text-cont {
  grid-column: span 2;
  grid-row: 2;
  margin: 0.5em;
  margin-bottom: 48px;
  margin-left: 48px;
  margin-right: 48px;
}

@media (max-width: 768px) {
  .text-cont {
    grid-column: span 2;
    grid-row: 2;
    margin: 0.5em;
    margin-left: 48px;
    margin-right: 48px;
  }
}

@media (max-width: 1024px) {
  .text-cont {
    grid-column: span 2;
    grid-row: 2;
    margin: 0.5em;
    margin-left: 48px;
    margin-right: 48px;
  }
}

.text-cont h3 {
  font-size: 27px;
  color: #fff;
  margin: 0;
  font-weight: lighter;
}

/*button*/

/* inspired form gumroad website */
.button1 {
  --bg: #FFD80B;
  --hover-bg: #fff;
  --hover-text: #012C56;
  color: #012C56;
  border: 1px solid var(--bg);
  border-radius: 4px;
  padding: 0.8em 2em;
  background: var(--bg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 50px;/* 
  margin-left: 100px; */
}

@media (max-width: 768px) {
  .button1 {
      padding: 0.5em 1em;
      font-size: 10px; /* Ajusta el tamaño de la fuente según tus preferencias */
  }
}

.button1:hover {
  color: var(--hover-text);
  -webkit-transform: translate(-0.25rem, -0.25rem);
  -ms-transform: translate(-0.25rem, -0.25rem);
  transform: translate(-0.25rem, -0.25rem);
  background: var(--hover-bg);
  -webkit-box-shadow: 0.25rem 0.25rem var(--bg);
  box-shadow: 0.25rem 0.25rem var(--bg);
}

.button1:active {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cta2 .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
}

.img-prin {
  grid-column: span 2;
  grid-row: span 3;
  margin: 1em;
  
}

.img-prin img {
  width: 90%;
  height: auto;
  border-radius: 50px 50px 50px;
  border: 7px solid #fff;
}
@media (max-width: 768px) {
  .img-prin img{
    height: 90%;
    width: 80%;
}
}

@media (max-width: 1024px) {
  .img-prin img{
    height: 90%;
    width: 80%;
}
}

/* Responsive Design */
#content-sec {
  background-image: url("../img/img-main/5068978.jpg");
  background-size: cover;
  background-repeat: no-repeat;

}

.text-subtitle{
  color: #760E0E;
  font-weight: bold;
}

.img-sec img {
  width: 100%;
  width: 80%;
  border-radius: 50px 50px 50px;
  border: 7px solid #fff;
}

@media (max-width: 768px) {
  .img-sec img{
    height: 90%;
    width: 80%;
}
}


@media (min-width: 1024px) and (max-width: 1024px) {
  .img-sec img {
    height: 80%;
    width: 70%;
  }
}

@media (max-width: 768px) {
  .content-form {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .content-form {
    flex-direction: column;
    align-items: center;
  }
}

.content-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.form {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  margin-top: 20px;
}

#form {
  border-radius: 10px;
  padding: 30px 35px;
  background-color: rgba(65, 93, 129, 0.93);
  width: 420px;
  box-shadow: 0 0 15px rgb(10, 15, 49);
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 60px;
}

.form-group {
  margin-top: -12px;
  margin-bottom: 0;
}
.form label {
  margin-bottom: 5px;
  color: #fff;
  margin-top: 5px;
}
.container3 {
  margin: auto;
}

/* Estilo para el checkbox */
.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px; /* Ajusta el espacio entre el checkbox y el texto */
}

.form-check-label {
  margin-bottom: 0;
  color: #fff;
  margin-left: 10px; /* Ajusta el espacio entre el texto y el checkbox */
}


/* media del form */
@media screen and (max-width: 768px) {
  #form {
      border-radius: 10px;
      padding: 30px 35px;
      background-color: rgba(65, 93, 129, 0.93);
      width: 350px;
      box-shadow: 0 0 15px rgb(10, 15, 49);
      margin: auto;
      margin-bottom: 60px;
  }
}

@media screen and (max-width: 414px) {
  #form {
      border-radius: 10px;
      padding: 30px 35px;
      background-color: rgba(65, 93, 129, 0.93);
      width: 300px;
      box-shadow: 0 0 15px rgb(10, 15, 49);
      margin: auto;
      margin-bottom: 60px;
  }
}