/* =========================================================
   PromoCine - Landing Page
   Aviso de Privacidad y Términos y Condiciones
   ========================================================= */

/* ----------- Brand variables (basadas en promocine.com) ----------- */
:root {
    --pc-primary:        #ff0000;   /* Rojo / borgoña principal */
    --pc-primary-dark:   #5E0E25;   /* Vino más profundo */
    --pc-primary-light:  #A01A3F;   /* Vino claro */
    --pc-accent:         #D63854;   /* Coral/rosa para acentos */
    --pc-accent-light:   #F8E7EC;   /* Rosa muy claro para fondos */
    --pc-dark:           #1A1A1A;   /* Casi negro para clapper */
    --pc-text:           #2B2B2B;   /* Texto principal */
    --pc-text-muted:     #6B6B6B;   /* Texto secundario */
    --pc-bg:             #FFFFFF;   /* Fondo principal */
    --pc-bg-soft:        #FAF6F7;   /* Fondo crema/ rosa muy claro */
    --pc-border:         #E8DCDF;   /* Bordes suaves */

    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
    --shadow:    0 6px 20px rgba(139, 21, 56, .10);
    --shadow-lg: 0 14px 40px rgba(139, 21, 56, .15);

    --max-width: 1140px;
}

/* ----------- Reset / Base ----------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, 'Segoe UI', Roboto, sans-serif;
    color: var(--pc-text);
    background: var(--pc-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    color: var(--pc-primary);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--pc-accent);
}

h1, h2, h3 {
    color: var(--pc-primary-dark);
    line-height: 1.2;
    margin: 0 0 .5em;
    font-weight: 700;
}

p {
    margin: 0 0 1em;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------- Buttons ----------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease,
                background-color .2s ease, color .2s ease;
    border: 2px solid transparent;
    letter-spacing: .2px;
}

.btn-primary {
    background: var(--pc-primary);
    color: #fff;
    border-color: var(--pc-primary);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--pc-primary-dark);
    border-color: var(--pc-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--pc-primary);
    border-color: var(--pc-primary);
}

.btn-ghost:hover {
    background: var(--pc-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================== HEADER ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--pc-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pc-primary-dark);
}

.brand-mark {
    width: 48px;
    height: 40px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--pc-primary);
    letter-spacing: -.5px;
}

.brand-tagline {
    font-size: 9px;
    font-weight: 700;
    color: var(--pc-primary-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.site-nav {
    display: flex;
    gap: 28px;
}

.site-nav a {
    color: var(--pc-text);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 4px 0;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--pc-primary);
    transition: width .25s ease;
}

.site-nav a:hover {
    color: var(--pc-primary);
}

.site-nav a:hover::after {
    width: 100%;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    padding: 90px 0 80px;
    background:
        radial-gradient(ellipse at top right,
            rgba(214, 56, 84, .12) 0%,
            transparent 60%),
        linear-gradient(180deg,
            var(--pc-bg-soft) 0%,
            var(--pc-bg) 100%);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle,
        rgba(139, 21, 56, .08) 0%,
        transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--pc-accent-light);
    color: var(--pc-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(28px, 4.5vw, 48px);
    color: var(--pc-primary-dark);
    margin-bottom: 18px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span {
    color: var(--pc-accent);
    font-weight: 400;
}

.hero-lead {
    max-width: 680px;
    margin: 0 auto 32px;
    font-size: 17px;
    color: var(--pc-text-muted);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* ===================== PROMO STA. MARÍA ===================== */
.promo-stamaria {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at top right,
            rgba(61, 175, 168, .08) 0%,
            transparent 60%),
        linear-gradient(180deg, #FAF6F7 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.promo-stamaria .section-header em {
    color: var(--pc-primary);
    font-style: italic;
    font-weight: 600;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ----------- Poster (cartel) ----------- */
.promo-poster {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.promo-poster:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.promo-poster a {
    display: block;
    line-height: 0;
}

.promo-poster img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-poster figcaption {
    padding: 14px 20px;
    font-size: 13.5px;
    color: var(--pc-text-muted);
    text-align: center;
    background: #fff;
    border-top: 1px solid var(--pc-border);
    line-height: 1.5;
}

/* ----------- Sticker + datos clave ----------- */
.promo-sticker-wrap {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.promo-sticker {
    margin: 0;
    text-align: center;
}

.promo-sticker a {
    display: inline-block;
    line-height: 0;
    border-radius: 50%;
    transition: transform .3s ease, filter .3s ease;
    filter: drop-shadow(0 18px 36px rgba(227, 30, 36, .28));
}

.promo-sticker a:hover {
    transform: rotate(-3deg) scale(1.02);
}

.promo-sticker img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 50%;
}

.sticker-caption {
    margin: 18px 4px 0;
    text-align: center;
    font-size: 14px;
    color: var(--pc-text-muted);
    line-height: 1.55;
}

.sticker-caption strong {
    color: var(--pc-primary-dark);
}

.sticker-caption em {
    color: var(--pc-primary);
    font-style: italic;
    font-weight: 600;
}

/* ----------- Quick facts ----------- */
.promo-quickfacts {
    background: linear-gradient(135deg,
        var(--pc-primary) 0%,
        var(--pc-primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 26px 28px;
    box-shadow: var(--shadow);
}

.promo-quickfacts h3 {
    color: #fff;
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .3px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.promo-quickfacts dl {
    margin: 0;
    display: grid;
    gap: 14px;
}

.promo-quickfacts dl > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: baseline;
}

.promo-quickfacts dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
}

.promo-quickfacts dd {
    margin: 0;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
}

.promo-quickfacts dd a {
    color: #fff;
    border-bottom: 1px dashed rgba(255, 255, 255, .5);
}

.promo-quickfacts dd a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Link auxiliar dentro de la tarjeta de T&C */
.doc-hint {
    margin: -10px 0 18px;
    font-size: 13px;
}

.doc-hint a {
    color: var(--pc-accent);
    font-weight: 600;
}

.doc-hint a:hover {
    color: var(--pc-primary);
}

/* ===================== DOCUMENTS ===================== */
.documents {
    padding: 80px 0;
    background: var(--pc-bg);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: clamp(24px, 3vw, 34px);
    color: var(--pc-primary-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--pc-text-muted);
    font-size: 16px;
    margin: 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.doc-card {
    background: var(--pc-bg);
    border: 1px solid var(--pc-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease,
                border-color .25s ease;
    display: flex;
    flex-direction: column;
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pc-primary);
}

.doc-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg,
        var(--pc-primary) 0%,
        var(--pc-accent) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: var(--shadow);
}

.doc-icon svg {
    width: 32px;
    height: 32px;
}

.doc-card h3 {
    font-size: 22px;
    color: var(--pc-primary-dark);
    margin-bottom: 6px;
}

.doc-meta {
    font-size: 13px;
    color: var(--pc-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 18px;
}

.doc-desc {
    color: var(--pc-text);
    font-size: 15px;
    margin-bottom: 18px;
}

.doc-desc strong {
    color: var(--pc-primary-dark);
}

.doc-points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    color: var(--pc-text);
    font-size: 14.5px;
}

.doc-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
}

.doc-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--pc-accent-light);
    border: 2px solid var(--pc-primary);
}

.doc-points li::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pc-primary);
}

.doc-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.doc-actions .btn {
    flex: 1 1 130px;
}

/* ----------- Notice ----------- */
.notice {
    margin-top: 48px;
    padding: 18px 24px;
    background: var(--pc-accent-light);
    border-left: 4px solid var(--pc-primary);
    border-radius: var(--radius-sm);
    color: var(--pc-text);
    font-size: 14px;
}

.notice strong {
    color: var(--pc-primary-dark);
}

/* ===================== CONTACT ===================== */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg,
        var(--pc-primary-dark) 0%,
        var(--pc-primary) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
        rgba(255, 255, 255, .08) 0%,
        transparent 70%);
    border-radius: 50%;
}

.contact-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.contact h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 12px;
}

.contact-text p {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}

a.contact-item:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateX(4px);
    color: #fff;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .7);
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #0F0608;
    color: rgba(255, 255, 255, .7);
    padding: 36px 0;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-brand {
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.footer-links {
    margin: 0;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, .85);
    margin: 0 6px;
}

.footer-links a:hover {
    color: var(--pc-accent);
}

.footer-links span {
    color: rgba(255, 255, 255, .3);
}

.footer-copy {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-sticker-wrap {
        position: static;
        max-width: 460px;
        margin: 0 auto;
        order: -1;
    }

    .promo-poster {
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .site-nav {
        display: none;
    }

    .header-inner {
        justify-content: center;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .promo-stamaria,
    .documents,
    .contact {
        padding: 60px 0;
    }

    .doc-card {
        padding: 28px 24px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    a.contact-item:hover {
        transform: none;
    }
}

@media (max-width: 420px) {
    .brand-name {
        font-size: 19px;
    }

    .brand-tagline {
        font-size: 8px;
    }

    .doc-actions .btn {
        flex: 1 1 100%;
    }
}
