
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.contenedor{
    position: relative;
    margin: auto;
    width: 100%;
    height: auto;
    background-color: #1f0f04;
}

body{
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: white;
    background-color: #1f0f04;
}

.section1{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      width: 100%;
      background-image: url(../images/FondoNuevo.png);
      background-attachment: fixed;
}

.article1{
    display: flex;
      justify-content: center;
      align-items: center;
      height: 150px;
      width: 80%;
      background-color: #c06217;
      border-radius: 20px;
      border: 1px solid #6a370f;
}

.section2{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 150px;
      width: 100%;
      background-color: #371d0b;

}

.article2{
    display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 80%;
      background-color: #1f0f04;
      border-radius: 20px;
}

.divider{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 100%;
    background-color: #1f0f04;
}

.sectionp1 {
      font-size: 72px;
      color: white;
      text-align: center;
      max-width: 100%;
      margin: 0px;
      font-family: "Chelsea Market", sans-serif;
}

.sectionp2 {
      font-size: 24px;
      color: white;
      text-align: center;
      max-width: 80%;
      margin-left: 30px;
      margin-right: 30px;
      font-family: "Poppins", sans-serif;
}

/*Tarjetas de personaje*/

.cardContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    height: 100%;
    max-width: 100%;
    background-color: #1f0f04;
}

.card {
  background-color: #aa4a60;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card h3 {
  margin: 15px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background: #1f0f04;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
}

#close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/*Formato letra*/

h2{
    font-family: "Chelsea Market", sans-serif;
    color: white;
}

p{
    font-family: "Poppins", sans-serif;
    color: white;
}

.footer1{
    width: 100%;
    background-color: #c26318;
    height: 100px;
    float: left;
}

.footerText{
    justify-content: center;
    text-align: center;
    margin-top: 10px;
}

.footerText a{
    color: #1d5c66;
    text-decoration: none;
}

.footerText a:hover{
    color: white;
}

/* Barra de navegación */
 nav {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: #1f0f04;;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      z-index: 1000;
}

.nav-links {
      display: flex;
      gap: 20px;
      transition: max-height 0.3s ease-in-out;
}

.nav-links a {
      color: white;
      text-decoration: none;
      padding: 8px;
      transition: color 0.3s ease;
}

.nav-links a:hover {
      color: #c06217;
}

/* Menú hamburguesa*/
.hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
}

.hamburger div {
      width: 25px;
      height: 3px;
      background-color: white;
}

@media (max-width: 768px) {
      .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #3d200d;
        width: 100%;
        max-height: 0;
        overflow: hidden;
      }

      .hamburger {
        display: flex;
      }
      .nav-links.show {
        max-height: 300px;
      }
    }

.fila{
    position: relative;
    margin: auto;
    width: 100%;
    height: auto;
}

/*Responsive*/

@media (max-width: 1199px) {
      .sectionp1 {
        font-size: 24px;
    }
    .sectionp2 {
        font-size: 16px;
    }
    .footerText {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        max-width: 300px;
    }
}

[class*="col-"]{
    float: left;
    }

/*PANTALLAS GRANDES - lg*/
@media(min-width: 1200px){
    .col-lg-12{width: 100%;}
    .col-lg-11{width: 91.66666667%;}
    .col-lg-10{width: 83.33333333%;}
    .col-lg-9{width: 75%;}
    .col-lg-8{width: 66.66666667%;}
    .col-lg-7{width: 58.33333333%;}
    .col-lg-6{width: 50%;}
    .col-lg-5{width: 41.66666667%;}
    .col-lg-4{width: 33.33333333%;}
    .col-lg-3{width: 25%;}
    .col-lg-2{width: 16.66666667%;}
    .col-lg-1{width: 8.33333333%;}
}
/*PANTALLAS MEDIANAS - md*/
@media(max-width: 1199px) and (min-width: 992px){
    .col-md-12{width: 100%;}
    .col-md-11{width: 91.66666667%;}
    .col-md-10{width: 83.33333333%;}
    .col-md-9{width: 75%;}
    .col-md-8{width: 66.66666667%;}
    .col-md-7{width: 58.33333333%;}
    .col-md-6{width: 50%;}
    .col-md-5{width: 41.66666667%;}
    .col-md-4{width: 33.33333333%;}
    .col-md-3{width: 25%;}
    .col-md-2{width: 16.66666667%;}
    .col-md-1{width: 8.33333333%;}
}

/*PANTALLAS PEQUEÑAS - sm*/
@media(max-width: 991px) and (min-width: 768px){
    .col-sm-12{width: 100%;}
    .col-sm-11{width: 91.66666667%;}
    .col-sm-10{width: 83.33333333%;}
    .col-sm-9{width: 75%;}
    .col-sm-8{width: 66.66666667%;}
    .col-sm-7{width: 58.33333333%;}
    .col-sm-6{width: 50%;}
    .col-sm-5{width: 41.66666667%;}
    .col-sm-4{width: 33.33333333%;}
    .col-sm-3{width: 25%;}
    .col-sm-2{width: 16.66666667%;}
    .col-sm-1{width: 8.33333333%;}
}

/*PANTALLAS EXTRAPEQUEÑAS - xs*/
@media(max-width: 767px){
    .col-xs-12{width: 100%;}
    .col-xs-11{width: 91.66666667%;}
    .col-xs-10{width: 83.33333333%;}
    .col-xs-9{width: 75%;}
    .col-xs-8{width: 66.66666667%;}
    .col-xs-7{width: 58.33333333%;}
    .col-xs-6{width: 50%;}
    .col-xs-5{width: 41.66666667%;}
    .col-xs-4{width: 33.33333333%;}
    .col-xs-3{width: 25%;}
    .col-xs-2{width: 16.66666667%;}
    .col-xs-1{width: 8.33333333%;}
}


#cabezote{
    width: 100%;
}

