/* copied for production */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    /* Layout / box */
    padding: 20px;
    text-align: center;
    /* Typography */
    font-family: "Poppins", sans-serif;
    font-size: 20px; /* tamaño base en desktop ajustado luego via media queries */
}

footer p {
    /* Spacing */
    margin: 5px 0;
    /* Typography */
    font-size: 13px;
    font-weight: bold;
    /* Visual */
    color: #5E67CD;
}

footer a {
    text-decoration: none;
    color: #5E67CD;
}

footer a:hover { text-decoration: underline; }

@media (min-width:600px) {
    footer p { font-size: 15px; }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    /* Layout / box */
    padding: 20px;
    text-align: center;
    /* Typography */
    font-family: "Poppins", sans-serif;
    font-size: 20px; /* tamaño base en desktop ajustado luego via media queries */
}

footer p {
    /* Spacing */
    margin: 5px 0;
    /* Typography */
    font-size: 13px;
    font-weight: bold;
    /* Visual */
    color: #5E67CD;
}

footer a {
    text-decoration: none;
    color: #5E67CD;
}

footer a:hover { text-decoration: underline; }

@media (min-width:600px) {
    footer p { font-size: 15px; }
}