@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
:root {
  font-family: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.cuadBtn, .cuadBtnPrim {
  color: #c7a970;
  padding: 1rem 2rem;
  border: 2px solid #c7a970;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.cuadBtn:hover, .cuadBtnPrim:hover {
  background-color: #c7a970;
  color: #ffffff;
}

.cuadBtnPrim {
  background: #c7a970;
  color: #ffffff;
  border-color: #001633;
  font-size: 13px;
  font-weight: 600;
  line-height: 2.1em;
  letter-spacing: 2.4px;
}

.iconRed {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #c7a970;
  padding: 0.5em;
  width: 35px;
  height: 35px;
  margin: 0.2em;
  transition: 0.4s;
}
.iconRed:hover {
  opacity: 0.9;
}
.iconRed svg {
  fill: #ffffff;
}

#whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
}
#whatsapp img {
  width: 50px;
  transition: 200ms;
}
#whatsapp img:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 0 7px var(--navy)) drop-shadow(0 0 7px var(--beige));
}

main section {
  padding: 4rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
main section .container .titulo_linea {
  width: 100%;
  display: grid;
  font-size: 18px;
  grid-template: auto/1fr auto 1fr;
  align-items: center;
  margin: auto;
}
main section .container .titulo_linea .linea {
  display: grid;
  place-items: center;
  padding: 1rem;
}
main section .container .titulo_linea .linea div {
  background: #c7a970;
  height: 2px;
  width: 50px;
}
main section .container .titulo_linea .lineaIzq {
  margin-left: auto;
}
main section .container .titulo_linea .lineaDer {
  margin-right: auto;
}
main section .container .titulo_linea h2 {
  grid-column: 2;
  color: #c7a970;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4.2px;
  text-align: center;
}

.linkRedondeado {
  padding: 1.2rem 2.6em;
  border-radius: 2rem;
  background-color: #c7a970;
  color: #ffffff;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  font-size: 1.1em;
  text-align: center;
  letter-spacing: 1px;
}

p {
  font-family: "Montserrat", sans-serif;
  margin: 1rem 0;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7em;
}

.h2section {
  margin: 1rem 0;
  line-height: 1;
  text-align: center;
  color: #c7a970;
  font: 500 4rem "Barlow Condensed", sans-serif;
}

.h3chico {
  margin: 1rem 0;
  text-align: center;
  color: #c7a970;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.4rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .h3chico {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 3.5px;
  }
}

figure img {
  width: 100%;
}

form input {
  background-color: rgba(0, 0, 0, 0);
  padding: 10px;
  font-size: 1rem;
  outline: none;
}
form input::placeholder {
  color: #ffffff;
}
form input:not([type=submit]) {
  border: 1px solid transparent;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  margin: 1rem;
}
form input:not([type=submit]):focus {
  border: 1px solid #ffffff;
  border-radius: 2px;
  animation: inputFocus 0.3s ease;
}
@keyframes inputFocus {
  0% {
    box-shadow: inset 0 0 8px #ffffff;
  }
  100% {
    box-shadow: none;
  }
}
form input[type=submit] {
  cursor: pointer;
  text-wrap: wrap;
}

@media screen and (min-width: 768px) {
  section .container {
    max-width: 1140px;
  }
  .h2section {
    font-size: 6vw;
    line-height: 1;
  }
}
header {
  background-color: #001633;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}
header a {
  color: #ffffff;
}
header section {
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .redes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
header .tituloHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .tituloHeader img {
  height: 75px;
}
header nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #001633;
  transform: translate(100%);
  transition: 0.3s ease-in-out;
}
header nav div.cuadBtn, header nav div.cuadBtnPrim {
  position: fixed;
  top: 30px;
  right: 30px;
  padding: 1em 1.2em;
  color: #ffffff;
}
header nav a {
  width: 100%;
  font-size: 15px;
  text-align: center;
  padding: 25px;
  letter-spacing: 4px;
  transition: 0.4s ease;
}
header nav a:hover {
  color: #c7a970;
}
header nav .active {
  color: #c7a970;
}
header nav.menu-opened {
  transform: translate(0);
}
header .menu-button {
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}
header .menu-button .bar {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}
header #subscribe {
  display: none;
}

@media screen and (min-width: 768px) {
  header section .redes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  header section .menu-button {
    display: none;
  }
  header section .tituloHeader img {
    height: 95px;
  }
  header nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #c7a970;
    border-bottom: 1px solid #c7a970;
    transform: translate(0);
    position: static;
  }
  header nav a {
    width: auto;
  }
  header nav div.cuadBtn, header nav div.cuadBtnPrim {
    display: none;
  }
  header #subscribe {
    display: inline-block;
  }
}
#intro {
  background: center right url("../assets/backgrounds/dollar.jpg");
  overflow-x: hidden;
}
#intro .container .texto {
  padding: 1rem;
  line-height: 1;
}
#intro .container .texto figure {
  text-align: center;
}
#intro .container .texto figure img {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2509803922));
  max-width: 600px;
}
#intro .container .texto h1 {
  margin: 1rem 0;
  color: #ffffff;
  text-align: center;
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
}
#intro .container .texto h3 {
  margin: 1rem 0;
  color: #00f3ff;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
}
#intro .container .video {
  width: 94vw;
  display: grid;
  place-items: center;
}
#intro .container .video div {
  width: 100%;
}
#intro .container .video .videoContainer {
  display: inline-block;
  position: relative;
  width: 100%;
}
#intro .container .video .videoContainer video {
  width: 100%;
  max-width: 800px;
}
#intro .container .video #soundOn {
  position: absolute;
  left: 10px;
  top: 20px;
}
#intro .container .video #soundOn img {
  width: 75px;
}
#intro .container .video #soldOut {
  position: absolute;
  left: 0;
  top: 12%;
}
#intro .container .video #soldOut img {
  width: 100%;
}
#intro .container #billetes {
  position: absolute;
  width: 180px;
  right: -100px;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  #intro .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  #intro .container .texto {
    padding: 1rem;
    width: 50%;
  }
  #intro .container .texto h1 {
    font-size: 37px;
  }
  #intro .container .texto h3 {
    font-size: 1.5rem;
  }
  #intro .container .texto figure {
    margin: 0 auto;
    max-width: 100%;
  }
  #intro .container .texto figure img {
    max-width: none;
  }
  #intro .container .video {
    width: 50%;
    height: 100%;
  }
  #intro .container .video div .videoContainer {
    display: inline-block;
    position: relative;
    max-height: 300px;
    width: fit-content;
  }
  #intro .container .video div .videoContainer video {
    width: 100%;
    max-width: 800px;
  }
  #intro .container .video div .videoContainer video {
    max-width: none;
    max-height: 300px;
  }
  #intro .container .video div #soundOn {
    position: absolute;
    left: 10px;
    top: 20px;
  }
  #intro .container .video div #soundOn img {
    width: 150px;
  }
  #intro .container #billetes {
    width: 250px;
    bottom: -60px;
    right: -150px;
  }
}
#slider {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  background-color: #001633;
  padding: 0.5rem 0.5rem;
  overflow-x: hidden;
}
#slider .sliderContainer {
  width: 6080px;
  display: flex;
  animation: slider 20s linear infinite;
}
#slider .sliderContainer img {
  width: 100px;
  object-fit: contain;
  margin-right: 60px;
}
@keyframes slider {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-3040px);
  }
}

#iam {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
}
#iam .container .texto {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 2rem;
  max-width: 570px;
}
#iam .container .texto .h3chico {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  letter-spacing: 3.9px;
  line-height: 1.5em;
}
#iam .container .texto .h2section {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.9em;
}
#iam .container .texto p {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.4em;
}
#iam .container figure {
  text-align: center;
}
#iam .container figure img {
  width: 100%;
  max-width: 570px;
}

@media screen and (min-width: 768px) {
  #iam {
    overflow: hidden;
  }
  #iam .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding: 0;
    gap: 1rem;
    max-width: 1140px;
    position: relative;
  }
  #iam .container .texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 50%;
    z-index: 1;
  }
  #iam .container .texto .h3chico, #iam .container .texto .h2section, #iam .container .texto p {
    text-align: start;
  }
  #iam .container .texto p {
    font-size: 23px;
    line-height: 1.4em;
  }
  #iam .container figure {
    width: 50%;
    height: 500px;
    display: grid;
    place-items: center;
  }
  #iam .container figure img {
    width: 200%;
    max-width: 800px;
  }
}
#empires {
  background-color: #001633;
}
#empires .logos {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#empires .logos figure {
  margin: 2rem 0;
  width: 100%;
  text-align: center;
}
#empires .logos figure img {
  width: 70%;
  vertical-align: center;
}

@media screen and (min-width: 768px) {
  #empires .container .logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #empires .container .logos figure {
    width: 25vw;
    max-width: 400px;
    margin: 2rem;
  }
}
#podcast div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



#podcast div p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.4em;
}

@media screen and (min-width: 768px) {
  #podcast .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #podcast .container div {
    width: 50%;
  }
  #podcast .container div figure {
    max-width: 600px;
  }
  #podcast .container div .h3chico {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 3.9px;
  }
  #podcast .container div p {
    font-size: 23px;
  }
}
#newsletter {
  background-color: #001633;
  color: #ffffff;
}
#newsletter .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
}
#newsletter .container p:not(.consent) {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.8rem;
  margin: 0;
}
#newsletter .container .consent {
  font-size: 0.5rem;
  max-width: 600px;
}
#newsletter .container form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  #newsletter .container p {
    font-size: 1.2rem;
  }
  #newsletter .container form {
    display: block;
  }
  #newsletter .container .consent {
    font-size: 0.7rem;
  }
}
footer .follow {
  padding: 3rem 0.5rem;
  background-color: #ffffff;
}
footer .follow .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .follow .container .h2section {
  font-size: 3.3rem;
  font-weight: 600;
}
footer .follow .container h3 {
  font-family: "Oswald", sans-serif;
  color: #001633;
  font-weight: 400;
  font-size: 1.7rem;
  text-align: center;
}
footer .follow .container .imgsPodcast {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}
footer .follow .container .imgsPodcast div {
  gap: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .follow .container .imgsPodcast figure img {
  max-width: 170px;
  transition: 300ms;
}
footer .follow .container .imgsPodcast figure img:hover {
  transform: scale(1.1);
}
footer .copy {
  background-color: #001633;
  padding: 3rem 0.5rem;
}
footer .copy .redes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  footer .follow .container .imgsPodcast {
    flex-direction: row;
  }
  footer .h3chico {
    font-size: 13px;
    font-weight: 600;
  }
}
#about p {
  line-height: 1.7em;
}
#about #about_intro {
  background-color: #001633;
  color: #ffffff;
  padding: 1rem 0;
}


 #about #about_intro .imagen {
  margin-top: auto;
}
#about #about_intro .imagen figure {
  text-align: center;
}
#about #about_intro .imagen figure img {
  max-width: 450px;
  vertical-align: bottom;
  margin-bottom: -16px;
  overflow: hidden;
} 
@media screen and (min-width: 768px) {
  #about #about_intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #about #about_intro .container .texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  #about #about_intro .container .texto > * {
    text-align: start;
    margin: 0.5rem;
  }
  #about #about_intro .container .texto p {
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.4em;
  }
}
@media screen and (min-width: 1970px) {
  #about #about_intro .container .texto .h2section {
    font-size: 119px;
  }
}
#about #about_pros .texto p {
  font: 400 20px/37.4px "Poppins", sans-serif;
}
#about #about_pros .linea {
  display: none;
}
#about #about_pros .imgs {
  display: grid;
  grid-template: 1fr 1fr/1fr 1fr;
  gap: 0.5rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  #about #about_pros .imgs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #about #about_pros .imgs figure {
    height: 100%;
  }
  #about #about_pros .imgs figure img {
    max-height: 350px;
  }
}
@media screen and (min-width: 400px) {
  #about #about_pros .texto p {
    font-size: 22px;
  }
  #about #about_pros .linea {
    display: block;
  }
}
#about #about_hechos .texto ul {
  font: 500 1.5rem "Montserrat", sans-serif;
  list-style-type: disc;
  margin: 1rem 0.5rem 1rem 2rem;
  line-height: 1.7em;
}
#about #about_hechos .imgs {
  display: grid;
  grid-template: 1fr 1fr/1fr 1fr;
  gap: 0.5rem;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  #about #about_hechos .texto ul li {
    font-size: 22px;
  }
  #about #about_hechos .imgs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #about #about_hechos .imgs figure {
    height: 100%;
  }
  #about #about_hechos .imgs figure img {
    max-height: 350px;
  }
}
@media screen and (min-width: 1024px) {
  #about #about_hechos .texto {
    display: flex;
  }
  #about #about_hechos .texto ul {
    width: 50%;
  }
}
#about #about_press {
  background-color: #001633;
  color: #ffffff;
}
#about #about_press .imgs {
  display: grid;
  grid-template: 1fr 1fr 2fr/1fr 1fr;
  grid-template-areas: "uno dos" "tres cuatro" "cinco cinco";
  gap: 0.5rem;
  margin-top: 3rem;
}
#about #about_press .imgs figure:nth-child(1) {
  grid-area: uno;
}
#about #about_press .imgs figure:nth-child(2) {
  grid-area: dos;
}
#about #about_press .imgs figure:nth-child(3) {
  grid-area: tres;
}
#about #about_press .imgs figure:nth-child(4) {
  grid-area: cuatro;
}
#about #about_press .imgs figure:nth-child(5) {
  grid-area: cinco;
}
@media screen and (min-width: 400px) {
  #about #about_press .imgs {
    grid-template: 1fr 2fr/repeat(6, 1fr);
    grid-template-areas: "uno uno dos dos tres tres" "cuatro cuatro cuatro cinco cinco cinco";
  }
}
@media screen and (min-width: 550px) {
  #about #about_press .imgs {
    grid-template: 1fr 4fr/repeat(4, 1fr);
    grid-template-areas: "uno dos tres cuatro" "cinco cinco cinco cinco";
  }
}
@media screen and (min-width: 768px) {
  #about #about_press .imgs {
    grid-template: 1fr/repeat(5, 1fr);
    grid-template-areas: "uno dos tres cuatro cinco";
  }
}
#about #informaciones .linea {
  display: none;
}
#about #informaciones .titulo_linea h2 {
  text-align: center;
}
#about #informaciones .texto ul {
  font: 500 1.5rem "Montserrat", sans-serif;
  list-style-type: disc;
  margin: 1rem 0.5rem 1rem 2rem;
  line-height: 1.7em;
}
@media screen and (min-width: 400px) {
  #about #informaciones .linea {
    display: block;
  }
}
#about #controversias {
  background-color: #001633;
  color: #ffffff;
}
#about #controversias .linea {
  display: none;
}
#about #controversias .titulo_linea h2 {
  text-align: center;
}
#about #controversias .texto ul {
  font: 400 22px "Poppins", sans-serif;
  list-style-type: disc;
  margin: 1rem 0.5rem 1rem 2rem;
  line-height: 1.7em;
}
#about #controversias .texto ul ul {
  list-style-type: circle;
  padding-left: 2rem;
}
@media screen and (min-width: 400px) {
  #about #controversias .linea {
    display: block;
  }
}

#podcast_intro {
  background: center left url("../assets/backgrounds/dollar3.jpg");
  color: #ffffff;
  padding: 2rem 0.5rem 4rem;
}
#podcast_intro .container figure {
  margin-bottom: 2rem;
  text-align: center;
}
#podcast_intro .container figure img {
  max-width: 650px;
}

#podcast_player {
  background-color: #ffffff;
  padding: 0;
}
#podcast_player .playerContainer {
  background-color: #ffffff;
  padding: 18px;
  width: 95%;
  max-width: 1140px;
  margin-top: -40px;
}
#podcast_player .playerContainer iframe {
  height: 630px;
  width: 100%;
  border: none;
}
#podcast_player .playerContainer .cuadBtn, #podcast_player .playerContainer .cuadBtnPrim {
  display: block;
  background-color: #c7a970;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 3px;
  line-height: 34px;
  margin-top: 30px;
  text-align: center;
  border: none;
}
#podcast_player .playerContainer .cuadBtn:hover, #podcast_player .playerContainer .cuadBtnPrim:hover {
  background-color: #001633;
}

#contact_intro {
  background: center left url("../assets/backgrounds/dollar2.jpg");
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
#contact_intro .container .h2section {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5em;
  font-weight: 500;
  line-height: 0.9em;
  letter-spacing: 1.2px;
  margin-bottom: 3rem;
}
#contact_intro .container p {
  color: #ffffff;
  font-size: 1.1em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.4em;
}
#contact_intro .container p span a {
  color: #c7a970;
}

@media screen and (min-width: 768px) {
  #contact_intro .container .h2section {
    font-size: 94px;
  }
  #contact_intro .container p {
    font-size: 23px;
  }
}
#contact_main .container {
  padding: 0.5rem;
}
#contact_main .container h1 {
  font-size: 2.5rem;
  font-weight: 800;
}
#contact_main .container p, #contact_main .container li {
  text-align: start;
  font-size: 1rem;
  line-height: 31px;
}
#contact_main .container ul {
  font: 500 1.5rem "Montserrat", sans-serif;
  list-style-type: disc;
  margin: 1rem 0.5rem 1rem 2rem;
  line-height: 1.7em;
}
#contact_main .container > div {
  margin-bottom: 2rem;
}
#contact_main .container div form {
  text-align: center;
}
#contact_main .container div form input:not([type=submit]), #contact_main .container div form textarea {
  font-family: "Poppins", sans-serif !important;
  border: 1px solid #69727d;
  color: #001633;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  margin: 1.2rem 0;
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  outline: none;
}
#contact_main .container div form input::placeholder, #contact_main .container div form textarea::placeholder {
  color: #667385;
  text-transform: uppercase;
}
#contact_main .container div form .cuadBtnPrim {
  border: none;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1.8px;
  line-height: 1;
  color: #fff;
  padding: 1.8rem;
}

@media screen and (min-width: 768px) {
  #contact_main .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
  }
  #contact_main .container > div {
    width: 50%;
    padding: 0.5rem;
  }
}

/* estilos nuevos Pablo */
.form-padre {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  input {
    display: block;
    @media (min-width: 768px) { 
      display: inline-block;
    }
  }
  .btn-form-center {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
}

.titulo_linea h2 {
  text-transform: uppercase;
}

 .lista-ordenada ol  {
  font: 500 1.5rem "Montserrat", sans-serif;
  line-height: 1.7em;
  margin: 1rem 2rem;
  padding-left: 3rem;
}

@media screen and (min-width: 768px) {
  .lista-ordenada ol{
    font-size: 22px;
    padding-left: 2rem;
  
  }
 }

 .centrada-cursiva {
  padding-left: 2rem;
  font-style: italic !important;
 }

/* Estilo base (Móviles y general) */
.libro-azul img {
    width: 100%;  /* CAMBIO: De 75% a 100% para que aproveche todo el espacio */
    max-width: 500px; /* Opcional: Evita que se pixele si la pantalla es gigante */
    height: 600px; /* Mantiene la proporción para que no se deforme */
    display: block;
}

/* Estilo para pantallas grandes (PC/Laptop) */
@media (min-width: 768px) { 
    .libro-azul img {
        width: 100%; /* Mantiene el ancho total de la columna */
        margin-top: 30px;
        transform: scale(1.1); /* TRUCO EXTRA: Aumenta la imagen un 10% más */
    }
}


/*# sourceMappingURL=style.css.map */
