*{
    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-image: url(../images/FondoNuevo.png);
    background-attachment: fixed;
}

.divider{
    display: flex;
      justify-content: center;
      align-items: center;
      height: 75px;
      width: 100%;
      background-color: #371d0b;
}

.divider2{
    display: flex;
      justify-content: center;
      align-items: center;
      height: 25px;
      width: 100%;
}

.section1{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      width: 100%;
      background-color: #371d0b;
}

.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;
}

.sectionp1 {
      font-size: 36px;
      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;
}

.card-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.cardImage{
    margin-top: 20px;
    justify-content: center;
    width: 300px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.card{
    background-color: #aa4a60;
    border: 1px solid #aa4a50;
    border-radius: 8px;
    padding: 20px;
    width: 350px;
    height: 500px;
    text-align: center;
    transition: background-color 0.3s;
    transition: height 0.3s ease;
    position: relative;
}

.card:hover {
    background-color: #cf6b19;
    height: 600px;
}

.more-info {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #1bddff;
    transition: display 0.3s ease;
}

.info-button {
    margin-top: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #007f96;
    color: white;
    cursor: pointer;
}

.info-button:hover {
    background-color: #1d6469;
}

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;
}

 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;
}

.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; /
      }
    }

@media (max-width: 1199px) {
      .sectionp1 {
        font-size: 24px;
    }
    .sectionp2 {
        font-size: 16px;
    }
    .footerText {
        font-size: 16px;
    }
}

.fila{
    position: relative;
    margin: auto;
    width: 100%;
    height: auto;
}

[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%;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 90%;
        margin-bottom: 20px;
    }
}

#cabezote, .cardImage {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .sectionp1 {
        font-size: 24px;
    }
    .sectionp2 {
        font-size: 13px;
    }
    .footerText {
        font-size: 14px;
    }
}
