
*{
    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;
    
}

/*Sections y articles*/

.section1{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 200px;
      width: 100%;
      
}

.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: 500px;
      background-color: #371d0b;
      margin-left: 20px;
      margin-top: 20px;
      border-radius: 20px;

}

.section6{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 600px;
      background-color: #371d0b;
      margin-left: 20px;
      margin-top: 20px;
      border-radius: 20px;

}

.article2{
    display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      width: 80%;
      background-color: #1f0f04;
      border-radius: 20px;
}

.sectionp1 {
      font-size: 72px;
      color: white;
      text-align: center;
      max-width: 100%;
      margin: 0px;
      font-family: "Chelsea Market", sans-serif;
}

.sectionp2 {
      font-size: 18px;
      color: white;
      text-align: center;
      margin-left: 30px;
      margin-right: 30px;
      font-family: "Poppins", sans-serif;
}

.section3{
    height: 500px;
    background-color: #aa4a60;
    border: 1px solid #aa4a50;
    margin-left: 150px;
    margin-top: 20px;
    border-radius: 20px;
}

.section7{
    height: 600px;
    background-color: #aa4a60;
    border: 1px solid #aa4a50;
    margin-left: 150px;
    margin-top: 20px;
    border-radius: 20px;
}

.section4{
    display: flex;
      justify-content: center;
      align-items: center;
      height: 500px;
      background-color: #371d0b;
      margin-left: 150px;
      margin-top: 20px;
      margin-bottom: 20px;
      border-radius: 20px;
}

.section5{
    height: 500px;
    background-color: #aa4a60;
    border: 1px solid #aa4a50;
    margin-left: 20px;
    margin-top: 20px;
    border-radius: 20px;
}

.section3image{
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

.section4image{
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

.section2, .section3, .section4, .section5 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*Ajustando Media para el responsive*/

@media (max-width: 767px) {
    .section2, .section3, .section4, .section5 {
        margin-left: 0;
        width: 90%;
    }

    .section2, .section4 {
        margin: 0 auto;
        width: 90%;
    }

    .sectionp2 {
        font-size: 14px;
        margin: 10px;
    }
}

@media(max-width: 991px) and (min-width: 768px){
    .section2, .section3, .section4, .section5 {
        margin-left: 0;
        width: 90%;
    }

    .section2, .section4 {
        margin: 0 auto;
        width: 90%;
    }

    .sectionp2 {
        font-size: 16px;
        margin: 10px;
    }
    .section3image, .section4image{
        width: 50%;
        height: auto;
    }
}

@media(max-width: 1199px) and (min-width: 992px){
    .section2, .section3, .section4, .section5 {
        margin-left: 0;
        width: 90%;
    }

    .section2, .section4 {
        margin: 0;
        width: 90%;
    }

    .sectionp2 {
        font-size: 16px;
        margin: 10px;
    }
    .section3image, .section4image{
        width: 100%;
        height: auto;
    }
}

@media (min-width: 1600px)
{
    .section4, .section3{
        margin-left: 250px;
    }

}

h2{
    font-family: "Chelsea Market", sans-serif;
    color: white;
}

p{
    font-family: "Poppins", sans-serif;
    color: white;
}

.hoverImage:hover {
    background-image: url(../images/FondoDiarioOscuro.png);
}

.footer1{
    width: 100%;
    background-color: #c26318;
    height: 100px;
    float: left;
    margin-top: 20px;
}

.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: 20px auto;
    width: 100%;
    height: auto;
}

/*Responsive*/

[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%;
}

