@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5; /* gris claro */
    color: #333333; /* gris oscuro */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 480px;
    width: 90%;
    transition: all 0.3s ease-in-out;
}

.container:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}

.logo img {
    width: 90px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8em;
    color: #ff6b00; /* naranja */
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    color: #555555;
    line-height: 1.5;
}

.loader {
    margin: 25px auto;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #ff6b00; /* naranja */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1.5s linear infinite;
}

.contacto {
    margin-top: 20px;
    font-size: 0.9em;
}

.contacto a {
    color: #ff6b00;
    font-weight: 600;
    text-decoration: none;
}

.contacto a:hover {
    text-decoration: underline;
}

.social {
    margin-top: 25px;
}

.social p {
    color: #555555;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.social-icon {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.8em;
    color: #ff6b00; /* naranja */
    transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #333333; /* gris oscuro */
}

footer {
    position: fixed;
    bottom: 15px;
    text-align: center;
    font-size: 0.85em;
    color: #777777;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
