﻿/* ============================================================
   quote.css — Cita full-width con imagen + overlay rojo
   ============================================================ */

#quote {
    position: relative;
    padding: 140px 56px;
    overflow: hidden;
    color: var(--text-white);
    isolation: isolate;
}

.quote__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Placeholder visual hasta que haya foto real */
.quote__placeholder {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-color: #1a1a1a;
}

.quote__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 27, 51, 0.92) 0%,
        rgba(7, 20, 42, 0.90) 100%);
}

.quote__inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote__label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 32px;
}

.quote__text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-white);
    margin: 0 auto 28px;
    max-width: 880px;
}

.quote__author {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    #quote { padding: 96px 24px; }
}


