/* --- Reseteo Básico y Estilos Globales --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa; /* Un fondo gris muy claro */
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

/* --- Contenedor Principal --- */
.container {
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

/* --- Logo y Título --- */
.logo {
    width: 50%;
}
.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    color: rgb(230, 81, 23); /* De acuerdo al logo */
}

.logo-text .fa-paw {
    font-size: 3rem; /* 48px */
}

h1 {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
}

h2 {
    font-size: 1.8rem; /* 28px */
    margin-bottom: 20px;
    color: #555;
}

p {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* --- Información de Contacto y Redes Sociales --- */
.contact-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.social-links a {
    color: #333;
    font-size: 1.5rem; /* 24px */
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: rgb(230, 81, 23); /* Mismo color del logo para consistencia */
    transform: translateY(-3px);
}

/* --- Pie de Página --- */
footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    color: #aaa;
}

/* --- Diseño Responsivo (para celulares) --- */
@media (max-width: 600px) {
    .container {
        padding: 30px 25px;
    }

    h1 {
        font-size: 2rem; /* 32px */
    }

    .logo-text .fa-paw {
        font-size: 2.5rem; /* 40px */
    }

    h2 {
        font-size: 1.5rem; /* 24px */
    }

    p {
        font-size: 0.9rem;
    }
}