:root {
    --bg: #0f0d14;
    --bg-soft: #181520;
    --card: #201a2b;
    --card-2: #f4eefb;
    --text: #f7f3fb;
    --text-dark: #16131d;
    --muted: #cab8df;
    --accent: #b993ff;
    --accent-strong: #8a63d2;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
    --radius: 22px;
    --font-display: "Seagram TFB", "Times New Roman", serif;
    --font-accent: "Lemon Milk", "Montserrat", "Arial Narrow", sans-serif;
    --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #0f0d14 0%, #15111d 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

ul {
    list-style: none;
}

 a {
    color: inherit;
    text-decoration: none;
}

.contenedor {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
}

.seccion {
    padding: 4rem 0;
}

.eyebrow {
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.1;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 5.7rem);
    letter-spacing: 0.08rem;
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
}

p {
    font-size: 1rem;
}

.hero {
    padding-bottom: 2rem;
}

.hero__banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    height: 34vh;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background-image: url("assets/banner limpio.jpg");
    background-size: cover;
    background-position: center 40%;
}

.hero__banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 13, 20, 0.32) 0%, rgba(15, 13, 20, 0.52) 100%);
    pointer-events: none;
}

.hero__marca {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero__marca .eyebrow {
    margin-bottom: 0.9rem;
}

.hero__marca h1 {
    margin-bottom: 0.6rem;
    font-size: clamp(3.1rem, 18vw, 6rem);
    color: #f4eefb;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}

.hero__contenido {
    padding-top: 1.5rem;
    text-align: center;
}

.hero__bajada {
    margin-bottom: 0;
    color: #d8c3f4;
    font-family: var(--font-accent);
    font-size: clamp(0.8rem, 3.3vw, 1.15rem);
    letter-spacing: 0.22rem;
    text-transform: uppercase;
}

.hero__texto {
    width: min(650px, 100%);
    margin: 0 auto 1.75rem;
    color: #e5dbf2;
}

.boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 0.95rem 1.4rem;
    border: 1px solid rgba(185, 147, 255, 0.4);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(185, 147, 255, 0.24), rgba(138, 99, 210, 0.3));
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.boton:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(185, 147, 255, 0.18);
}

.intro {
    padding-top: 1rem;
}

.intro__grid {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.intro__texto {
    color: #ece4f8;
}

.seccion__encabezado {
    margin-bottom: 1.8rem;
}

.pastillas-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.pastillas-grid {
    display: grid;
    gap: 1.5rem;
}

.pastilla {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pastilla:hover {
    transform: translateY(-8px);
    border-color: rgba(185, 147, 255, 0.45);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
}

.pastilla img {
    height: 240px;
    object-fit: cover;
}

.pastilla__contenido {
    padding: 1.4rem;
}

.pastilla__contenido p {
    color: #e8deef;
}

.manifiesto__grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.manifiesto__imagen img {
    border-radius: var(--radius);
    min-height: 360px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.manifiesto__contenido {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.manifiesto__contenido p + p {
    margin-top: 1rem;
}

.footer {
    padding: 4rem 0 2rem;
    background: #0b0910;
    border-top: 1px solid var(--border);
}

.footer__grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__info {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
}

.footer__datos {
    display: grid;
    gap: 0.45rem;
    margin: 1.2rem 0 1.4rem;
    color: #e8deef;
}

.footer__mail {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.footer__equipo {
    display: grid;
    gap: 1rem;
}

.persona {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.persona img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.persona__texto {
    padding: 1rem 1.2rem 1.25rem;
}

.footer__bottom {
    display: grid;
    gap: 1rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.redes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.redes a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease, transform 0.2s ease;
}

.redes img {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.redes a:hover {
    background: rgba(185, 147, 255, 0.18);
    transform: translateY(-2px);
}

.footer__ayuda {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(185, 147, 255, 0.42);
    border-radius: 50%;
    background: rgba(185, 147, 255, 0.14);
    color: var(--text);
    font-family: var(--font-accent);
    font-size: 1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer__ayuda:hover {
    transform: translateY(-2px);
    background: rgba(185, 147, 255, 0.24);
}

.footer__copy {
    color: var(--muted);
}

.como__wrap {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4rem 0 5rem;
}

.como__caja {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
}

.como__tabla {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.como__tabla th,
.como__tabla td {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.como__tabla th {
    width: 34%;
    padding-right: 1rem;
    color: var(--muted);
    font-family: var(--font-accent);
    font-size: 0.76rem;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.como__herramientas {
    margin-top: 1.5rem;
    color: #e8deef;
}

.como__volver {
    display: inline-flex;
    margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
    .seccion {
        padding: 5rem 0;
    }

    .hero__banner {
        height: 26vh;
        min-height: 200px;
        padding: 1.5rem;
    }

    .hero__marca h1 {
        font-size: clamp(4rem, 10vw, 6.4rem);
    }

    .intro__grid,
    .manifiesto__grid,
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .pastillas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__equipo {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .como__tabla,
    .como__tabla tbody,
    .como__tabla tr,
    .como__tabla th,
    .como__tabla td {
        display: block;
        width: 100%;
    }

    .como__tabla tr {
        padding: 0.4rem 0;
        border-bottom: 1px solid var(--border);
    }

    .como__tabla th,
    .como__tabla td {
        border-bottom: 0;
        padding: 0.3rem 0;
    }
}

@media screen and (min-width: 1200px) {
    .hero__banner {
        height: 20vh;
        min-height: 170px;
        max-height: 230px;
        background-position: center 42%;
    }

    .hero__marca h1 {
        font-size: clamp(4.2rem, 7vw, 5.8rem);
    }

    .hero__contenido {
        padding-top: 1.35rem;
    }

    .pastillas-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__bottom {
        grid-template-columns: 1fr auto auto;
    }
}
