@charset "UTF-8";

*{
    box-sizing: border-box; /* Hace que padding y border formen parte del ancho total */
    margin: 0px;
/*    border: 1px solid red;*/
}

h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #666666;
}

h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #666666;
}

p{
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5em;
    color: #666666;
}

img{
    max-width: 100%; /* Para mantener la proporción de las imágenes cuando se achica la pantalla */
    line-height: 0; /* Elimina el espacio que se genera en la parte inferios de las imágenes*/
}

a:link, a:visited, a:active{
    text-decoration: none;
    color: #666666;
}

a:hover{
    text-decoration: none;
    color: #e74f22;
}

button {
    background-color: #e74f22;
    border: none;
    color: white;
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: white;
    letter-spacing: 0.1em;
    cursor: pointer;

}

button:hover {
    background-color: #ccc;
  
}

#main_content{
    width: 100%;
}

.container{
    max-width: 1200px;
    overflow: hidden;
}

.box_titulo_seccion{
    margin: 30px 0px; 
}