*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #90278e;
}
.container{    
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    padding: 40px;
    text-align: center;
}
.img-logo {
    max-width: 300px;
}
p{
    font-size: 18px;
}
.contactanos{
    max-width: 200px;
    height: 40px;
    margin: auto ;
    padding: 10px 10px;
    background-color: #90278e;
    color: #fff;
    border-radius: .5em;
}
.titulo-con-linea {
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}
.titulo-con-linea::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #90278e;
    margin: 8px auto 0; /* centrado horizontal */
}
.enlaces-redes{
    display: inline-block;
}
a{
    text-decoration: none;
    color: inherit;
}
a i{
    margin-right: 8px;
    color: #90278e;
}
a:hover i {
  color: #0077cc;
}
.separador{
    margin: 10px 20px 10px 20px;
    color: #90278e;
}
@media (max-width: 500px) {
  .separador {
    display: none;
  }
}