@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

:root {
    --resaltat: #ffc700;
    --texto-secundario: #e0e0e0;
    --large-title-3-strong-font-family: "Inter", Arial, sans-serif;
    --large-title-3-strong-font-weight: 900;
    --large-title-3-strong-font-size: 42px;
    --large-title-3-strong-line-height: 1;
    --large-title-3-strong-letter-spacing: 0;
    --h2-font-family: "Inter", Arial, sans-serif;
    --h2-font-weight: 400;
    --h2-font-size: 16px;
    --h2-line-height: 1.4;
    --h2-letter-spacing: 0;
}

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    /*color:#000;*/
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
}

img {
    display: block;
}

header, footer {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

    footer * {
        color: #fff;
    }

.page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
}

/* Bootstrap navbar links */
.navbar-dark .navbar-nav .nav-link {
    color: #fff;

}

    .navbar-dark .navbar-nav .nav-link:hover {
        color: #ccc;
    }

/* =====================================================
   FOOTER MASTER – estilos propios
   ===================================================== */


/* ===== FOOTER MASTER ===== */

footer.frame {
    background-color: #000;
    color: #fff;
    padding: 32px 16px;
    font-family: "Inter", Helvetica;
}

    /* Contenedor superior */
    footer.frame > .div {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    /* Líneas */
    footer.frame .line {
        width: 100%;
        max-width: 1200px;
        height: 1px;
        margin: 16px auto;
        opacity: 0.6;
    }

    /* Legal y ayuda */
    footer.frame nav.frame-2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    footer.frame ul.frame-3 {
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    /* Teléfono */
    footer.frame > .frame-3 {
        max-width: 1200px;
        margin: 32px auto 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    /* Reset interno */
    footer.frame h2,
    footer.frame p,
    footer.frame ul {
        margin: 0;
    }


/* RESPONSIVE */
@media (max-width: 768px) {
    footer.frame > .div {
        grid-template-columns: 1fr;
    }
}

/* Fuente base del proyecto */
body {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    color: #000;
}

/* Títulos */

/* Títulos -> también Inter */
h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 700; /* o 600 si prefieres */
}


/* Botones */
button {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 500;
}

/* Enlaces */
a {
    font-family: "Inter", Arial, sans-serif;
    text-decoration: none;
}

