
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    width: 100;
    max-width: 100%;
    font-family: Montserrat, 'Times New Roman';
    position: relative;
    z-index: 1;
    color: #141414;
}
body::before{
    content:"";
    position: fixed;
    background-image: url("../images/skyline.svg");
    background-position: center bottom; /* Centra la imagen */
    background-repeat: repeat-x;
    width: 100%;
    height: 100vh;
    z-index: -1;
}
.section_title{
    box-sizing: border-box;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-bottom: 70px;
    padding: 0 20px;
    text-align: center;
    font-size: 1.6em;
    background-color: #cecece83;
    user-select: none;
}
a{
    color: rgb(9, 136, 221);
}

::-moz-selection { /* Code for Firefox */
    color: #fff;
    background: rgb(9, 136, 221);
  }
  
  ::selection {
    color: #fff;
    background: rgb(9, 136, 221);
  }
/*---------------HEADER---------------*/

.header{
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 150px;
}
.section_header{
    height: 350px;
}
.mainHeader{
justify-content: space-evenly;
}
.logo{
    width: auto;
    display: flex;
    margin: 0;
    animation: fadeInAnimation ease 0.7s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.alban, .studio{
    width: auto;
    font-size: 0.9em;
    letter-spacing: 0.15em;
    padding: 0.25em;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.alban{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}
.studio{
    padding-right: 0;
}
.intro{
    margin:0;
    font-size: 1.3em;
    font-weight: 500;
    text-align: center;
    width: 90%;
    max-width: 700px;
    line-height: 1.5em;
}
/*---------------VIDEO---------------*/
.video {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 60px;
  }
  
  .video iframe {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 9 / 16;
    border: none;
  }
  
  /* Cambia el aspect ratio a 16:9 cuando el ancho de pantalla sea mayor a 600px */
  @media (min-width: 600px) {
    .video iframe {
      aspect-ratio: 16 / 9;
    }
  }
/*---------------METHODOLOGY---------------*/
.met{
    width: 100%;
}
.met_description_container{
    padding-top: 40px;
    padding-bottom: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.met_description{
    width: 90%;
    font-size: 1.2em;
    font-weight: 500;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
    padding-bottom: 40px;
    max-width: 600px;
    line-height: 1.3em;
}

.cta_button{
    border: none;
    background: none;
    color: white;
    background-color: black;
    font-size: 1.1em;
    padding: 20px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.4s;
}
.cta_button:hover{
 box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
 border-radius: 5px;
 font-weight: 600;
}

/*---------------ALIANCES---------------*/

/*---------------FOOTER---------------*/
footer{
    width: 100%;
    background-color: black;
    height: 300px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.footer_title{
    width: 100%;
    text-align: center;
}
.footer_contacts{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_contacts_mail{
    color: white;
}
.footer_contacts_whatsapp{
    text-decoration: none;
    color: white;
    background-color: #25d366;
    padding: 10px 15px;
    border-radius: 20px;
    margin-top: 20px;
}

.footer_contacts_whatsapp:hover{
    text-decoration: none;
    color: white;
    background-color: #22c55d;
    padding: 10px 15px;
    border-radius: 20px;
    margin-top: 20px;
}
.footer_logo{
    position: absolute;
    bottom: 0;
}
.footer_alban, .footer_studio{
    width: auto;
    letter-spacing: 0.2em;
    padding: 0.25em;
    font-size: 0.9em;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
.footer_alban{
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

@media only screen and (min-width: 600px) {
    .header{
        height: 200px;
    }
    .section_header{
        height: 450px;
    }
    .video {
        margin-bottom: 100px;
      }
    .alban, .studio{
        font-size: 1.3em;
        letter-spacing: 0.2em;
        padding: 0.25em;
    }
}

@media only screen and (min-width: 900px) {
    .header{
        height: 300px;
    }
    .section_header{
        height: 600px;
    }
    .alban, .studio{
        width: auto;
        letter-spacing: 0.2em;
        padding: 0.25em;
        font-size: 2.1em;
    }
    .intro{
        font-size: 1.5em;
        max-width: 700px;
    }
    .section_title{
        font-size: 2em;
        margin-bottom: 140px;
    }
    .met_description{
        padding:0;
        padding-bottom: 70px;
        font-size: 1.4em;
        text-align: center;
        line-height: 1.5em;
    }
    .cta_button{
        margin-top: 70px;
    }
}