@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@400;500&family=Encode+Sans+Condensed:wght@500&display=swap");
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

html,
body {
    margin: 0px;
    height: 100%;
}

/* a blue color as a generic focus style */
button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}

a {
    text-decoration: none;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    width: 100%;
    background-color: #000000;
    border-top: 1px solid #222222;
    padding: 48px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    box-sizing: border-box;
}

.footer-brand {
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: right;
}

.footer-contact-title {
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-contact-item {
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #1a1a1a;
    padding-top: 24px;
    text-align: center;
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #444444;
    font-size: 13px;
}

/* ======================================== */
/* ESTILOS COMPLETOS DEL FOOTER - Agregar al final de globals.css */
/* ======================================== */

.site-footer {
    width: 100%;
    background-color: #000000;
    border-top: 1px solid #222222;
    padding: 48px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    box-sizing: border-box;
    margin-top: auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand {
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 0;
    margin-bottom: 0px;
}

.footer-tagline {
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-title {
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-contact-item {
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #1a1a1a;
    padding-top: 24px;
    margin-top: 16px;
    text-align: center;
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #444444;
    font-size: 13px;
}

/* Asegurar que el body ocupe toda la altura */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

.landing-page, .apps-page {
    flex: 1;
    display: flex;
    flex-direction: column;
}