/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

.header {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 20px 0px;
    max-width: 1140px;
    margin: auto;
}
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    max-width: 1140px;
    margin: auto; 
}



.logo, .footer-logo {
    width: 100px; /* Tamaño ajustado del logo */
    height: auto;
}

.main-content {
    padding: 20px;
    max-width: 1140px;
    text-align: left;
    margin: auto;
}

.hero h1 {
    font-family: "Oswald", Sans-serif;
    font-size: 40px;
    font-weight: 500;
    text-transform: none;
    line-height: 1.2em;
    color: #000;
}

.hero h2 {
    font-family: "Oswald", Sans-serif;
    font-size: 34px;
    font-weight: 500;
    text-transform: none;
    line-height: 1.2em;
    color: #000;
}

.hero h3{
    color: #801111;
    font-family: "Oswald", Sans-serif;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
}

.hero p{
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.2em;
    color: #000;
}

.hero ul {
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.2em;
    color: #000;
}

.hero ul li {
    margin: 5px 0;
}

.hero .date {
    color: #801111;
    font-family: "Oswald", Sans-serif;
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-bottom: 50px;
}

.cta-button {
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #801111;
    border-radius: 0px 0px 0px 0px;
    padding: 20px 60px 20px 60px;
    color: #FFF;
    text-decoration: none;
    border: none;
}

.cta-button a {
    color: #FFF;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #900000;
}
.details{
    margin-top: 80px;
}

.details p{
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.2em;
    color: #000;
}
.details .details-subtitle{
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.2em;
    color: #000;
    font-weight: bold;
}

.details ul{
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.2em;
    color: #000;
}
.footer-info{
    max-width: 50%;
}

.footer-info p {
    margin: 30px 0;
    font-family: "Oswald", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    line-height: 1.2em;
    color: #000;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    max-width: 1110px;
  }
  .modal-content h4{
    font-family: "Oswald", Sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #212121;
    font-size: 30px;
    line-height: 1.1em;
    margin: 25px 0;
    text-align: center;
  }
  .input-style{
    width: 100%;
    min-height: 47px;
    margin-bottom: 20px;
    border: solid #000 1px;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
  }
  ._submit{
    font-family: Syne, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #212121;
    font-size: 25px;
    line-height: 1em;
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    width: auto;
    margin: 0;
    font-size: 15px;
    font-family: Syne, sans-serif;
    font-weight: 700;
    line-height: 1.01em;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0;
    outline: 0;
    transition: color .2s ease-out, background-color .2s ease-out, border-color .2s ease-out;
    padding: 20.5px 29px;
    color: #fff;
    background-color: #212121;
    border: 2px solid #000;
    cursor: pointer;
  }
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  @media only screen and (max-width: 720px) {
    .footer-info{
        max-width: 100%;
    }
    .hero h1 {
        font-family: "Oswald", Sans-serif;
        font-size: 35px;
        font-weight: 500;
        text-transform: none;
        line-height: 35px;
        color: #000;
        margin: 0px;
    }
    .header{
        padding: 0px;
    }
    .hero h2{
        font-size: 28px;
    }
    .hero h3{
        font-size: 20px;
    }
    .hero .date{
        font-size: 20px;
        margin: 5px 0px;
    }
    .main-content {
        padding: 0px 20px;
        max-width: 1140px;
        text-align: left;
        margin: auto;
    }
    .details img{
        width: 100%;
        max-width: 100%;
    }
  }

