@charset "utf-8";

body {
    background-color: #F0F4F5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ocupa toda la pantalla */
    margin: 0;
    padding: 10px;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
    width: 100%;
}

.Logotype {
    display: block;
    width: 350px; /* Ajusta según el tamaño deseado */
    height: auto;
    margin: 0 auto 30px auto; /* Centrado con margen inferior */
	left:  350px;
}

.SantiagoChile {
    color: #CC001E;
    font-size: 20px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 450;
}

.Group1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: auto;
}

.boton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 40px;
    background: #CC001E;
    border-radius: 14px;
    color: white;
    font-size: 22px;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.boton:hover {
    background-color: #7A0014;
}

.Frame5 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Más espacio entre íconos */
    padding-top: 20px;
}

.Frame5 img {
    width: 40px;
    height: auto;
    padding: 10px 20px; /* Ajusta el relleno (top/bottom - left/right) */
    transition: transform 0.3s ease;
}

.Frame5 img:hover {
    transform: scale(1.1);
}
