:root {
    --brand-red: #c92d2a;
    --brand-dark: #111;
    --muted: #6b6b6b;
    --container-width: 1150px;
    --max-banner-height: 420px;
    --page-bg: #ffffff;
}

/* Reset básico */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background: var(--page-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container principal */
.login-container {
    padding: 28px 18px;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* HEADER */
.site-header {
    background: var(--brand-red);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 2px 0 rgba(0,0,0,0.04);
}

.header-inner {
    text-align: center;
}

.header-logo {
    height: 52px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 2px 0 rgba(0,0,0,0.06));
    max-width: 100%;
    height: auto; /* allow media queries to control actual height */
}

/* Hacer todas las imágenes fluidas (seguridad) */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/**/
/* --- CONTENEDOR PRINCIPAL --- */
.terms-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
    background-color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    color: #222;
}

/* --- BANNER SUPERIOR --- */
.action-container {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 20px;
}

.promo-banner-full img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- BOTÓN DE REGISTRO --- */
.action-container {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 40px;
    padding: 0 20px;
    position: relative;
}

.btn-registra-tickets {
    background-color: #c92d2a; /* Rojo Sears */
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 4px 10px rgba(201, 45, 42, 0.2); /* Sutil sombra roja */
}

    .btn-registra-tickets:hover {
        background-color: #a52321;
    }

/* --- TEXTOS Y TIPOGRAFÍA --- */
.terms-content {
    font-size: 15px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 20px;
}

.main-heading {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.sub-heading {
    font-size: 16px;
    font-weight: 800;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #000;
}

.terms-content p {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Enlaces */
.terms-content a {
    color: #c92d2a; /* Enlaces en rojo para que destaquen */
    text-decoration: underline;
}

    .terms-content a:hover {
        color: #a52321;
    }

/* --- LISTAS --- */
.numbered-list {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 20px;
}

    .numbered-list li {
        margin-bottom: 12px;
    }

.bullet-list {
    list-style-type: disc;
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 20px;
}

    .bullet-list li {
        margin-bottom: 6px;
    }

/* --- TEXTO LEGAL / LETRAS CHIQUITAS --- */
.legal-text {
    font-size: 12px; /* Texto más pequeño para términos y condiciones */
    line-height: 1.5;
    color: #555;
    text-align: justify; /* Justificado como se suele usar en legales */
    margin-top: 10px;
}

/* Responsivo para móviles */
@media (max-width: 600px) {
    .terms-page-container {
        padding: 20px 0 40px 0; /* Menos espacio arriba en celular */
    }

    .btn-registra-tickets {
        width: 100%; /* Hace que el botón ocupe todo el ancho disponible */
        padding: 18px;
        font-size: 18px;
        border-radius: 8px; /* Un poco más curvo en celular, como en tu foto */
    }
}
