/* ==========================================================================
   THE SANCTUM — Canal de Transmisión Élite (Contacto Premium) v1.0
   Estilos específicos para la página de Contacto · Instituto Copleston · 2026
   ========================================================================== */

:root {
    --sanctum-bg:       #020308;
    --sanctum-surface:  rgba(8, 10, 22, 0.82);
    --sanctum-glass:    rgba(10, 13, 28, 0.75);
    --sanctum-card:     rgba(12, 15, 32, 0.85);
    --gold:             #c5a059;
    --gold-light:       #f5dfb3;
    --gold-dark:        #8c6a2b;
    --gold-bright:      #ffd700;
    --gold-glow:        rgba(197, 160, 89, 0.22);
    --gold-glow-sm:     rgba(197, 160, 89, 0.08);
    --border-gold:      rgba(197, 160, 89, 0.14);
    --border-gold-hot:  rgba(197, 160, 89, 0.55);
    --text-pure:        #ffffff;
    --text-sub:         rgba(255, 255, 255, 0.65);
    --text-muted:       rgba(255, 255, 255, 0.35);
    --font-serif:       'Cinzel', Georgia, serif;
    --font-sans:        'Inter', -apple-system, sans-serif;
    --radius-sm:        6px;
    --radius-md:        12px;
    --radius-lg:        20px;
    --shadow-deep:      0 30px 60px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
    --shadow-card:      0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
    --shadow-gold:      0 0 30px rgba(197, 160, 89, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Decoración Celestial (Hero) ───────────────────────────────────────── */
.celestial-hero {
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 4rem;
    background: radial-gradient(ellipse at 50% 40%, rgba(197,160,89,0.06) 0%, transparent 65%),
                radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.03) 0%, transparent 50%);
    overflow: hidden;
}

/* Red de partículas y líneas mágicas en el Hero */
.celestial-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center center;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.celestial-constellation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
}

.star-point {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-bright);
    animation: pulseStar 4s infinite ease-in-out;
}

.star-point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseOrbits 6s infinite linear;
}

.star-point:nth-child(1) { top: 25%; left: 15%; animation-delay: 0s; }
.star-point:nth-child(2) { top: 70%; left: 10%; animation-delay: 1.5s; width: 2px; height: 2px; }
.star-point:nth-child(3) { top: 40%; left: 88%; animation-delay: 0.8s; }
.star-point:nth-child(4) { top: 80%; left: 82%; animation-delay: 2.2s; width: 2px; height: 2px; }
.star-point:nth-child(5) { top: 15%; left: 75%; animation-delay: 3s; }

/* ── Tarjetas de Información con Spotlight Glow ──────────────────────── */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(8, 10, 22, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 120px at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--glow-color, rgba(197, 160, 89, 0.12)) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card:hover {
    border-color: var(--border-color-hover, rgba(197, 160, 89, 0.4));
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px var(--glow-color-light, rgba(197, 160, 89, 0.04));
}

.card-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color-hover, rgba(197, 160, 89, 0.4)), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover .card-top-line {
    opacity: 1;
}

.card-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    display: block;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.card-main-link {
    font-size: 1.15rem;
    color: var(--text-pure);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 4px;
    transition: border-color 0.3s;
    font-family: var(--font-sans);
    display: inline-block;
    z-index: 2;
    position: relative;
}

.contact-info-card:hover .card-main-link {
    border-color: var(--gold);
    color: #fff;
}

.card-desc {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* Variaciones de Glow Temático para Redes Sociales */
.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-glow-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 2px;
    font-weight: 500;
    padding: 1.1rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.01);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.social-glow-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 80px at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--glow-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.social-glow-link:hover::before {
    opacity: 1;
}

.social-glow-link:hover {
    color: #fff;
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 15px var(--glow-color-light);
}

.social-glow-link svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.social-glow-link:hover svg {
    transform: scale(1.15) rotate(-3deg);
    color: var(--icon-color, var(--gold));
}

/* Clases específicas de color */
.ig-glow {
    --glow-color: rgba(225, 48, 108, 0.15);
    --glow-color-light: rgba(225, 48, 108, 0.05);
    --border-hover: rgba(225, 48, 108, 0.4);
    --icon-color: #e1306c;
}

.li-glow {
    --glow-color: rgba(10, 102, 194, 0.15);
    --glow-color-light: rgba(10, 102, 194, 0.05);
    --border-hover: rgba(10, 102, 194, 0.4);
    --icon-color: #0a66c2;
}

.yt-glow {
    --glow-color: rgba(255, 0, 0, 0.12);
    --glow-color-light: rgba(255, 0, 0, 0.04);
    --border-hover: rgba(255, 0, 0, 0.35);
    --icon-color: #ff0000;
}

.mail-glow {
    --glow-color: rgba(197, 160, 89, 0.15);
    --glow-color-light: rgba(197, 160, 89, 0.05);
    --border-color-hover: rgba(197, 160, 89, 0.4);
}

/* Tarjeta de Mecenazgo - Estilo Parchmento Místico */
.patronage-parchment-card {
    background: linear-gradient(135deg, rgba(8, 10, 22, 0.95), rgba(197, 160, 89, 0.06));
    border: 1px dashed rgba(197, 160, 89, 0.25);
    border-radius: 12px;
    padding: 2.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.patronage-parchment-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.patronage-parchment-card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    border-style: solid;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 160, 89, 0.06);
    transform: translateY(-2px);
}

.patronage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.patronage-seal-svg {
    color: var(--gold);
    opacity: 0.85;
    animation: spinSlow 30s infinite linear;
}

/* ── Consola de Transmisión (Paso a Paso) ───────────────────────────── */

/* Contenedor Principal de la Consola */
.premium-form-container {
    background: rgba(8, 10, 22, 0.85);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(197, 160, 89, 0.12);
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border-radius: 16px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
}

.premium-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Gated Secure Loader */
.console-loader {
    position: absolute;
    inset: 0;
    background: #04060c;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.loader-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
    box-shadow: 0 0 12px var(--gold-bright);
    animation: scanVertical 2.4s infinite linear;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    padding: 2rem;
}

.loader-shield-badge {
    font-size: 2.2rem;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
    animation: spinSlow 12s infinite linear;
}

.loader-status {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--text-pure);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.loader-substatus {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

@keyframes scanVertical {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* Contenedor Principal de la Consola */
.transmission-console {
    display: flex;
    flex-direction: column;
    animation: fadeInConsole 0.8s ease forwards;
}

@keyframes fadeInConsole {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Encabezado */
.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.console-title-badge {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 500;
}

.console-audio-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 6px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.console-audio-toggle:hover {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.06);
}

.audio-icon {
    width: 16px;
    height: 16px;
}

/* Barra de Progreso Fina */
.console-progress-wrapper {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    margin-bottom: 3.5rem;
    overflow: hidden;
}

.console-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    box-shadow: 0 0 8px var(--gold);
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Pasos de Consola */
.console-step {
    display: none;
    opacity: 0;
    transform: translateX(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.console-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.step-label {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.step-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.6;
}

/* Inputs de Texto y Textarea en la Consola */
.input-console-wrapper,
.textarea-console-wrapper {
    position: relative;
    width: 100%;
}

.console-text-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 300;
    padding: 0.8rem 0.5rem;
    outline: none;
    transition: var(--transition-smooth);
}

.console-text-input:focus {
    border-bottom-color: var(--gold);
    background: rgba(197, 160, 89, 0.01);
}

.console-input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    pointer-events: none;
}

.console-text-input:focus ~ .console-input-underline,
.console-textarea:focus ~ .console-input-underline {
    transform: scaleX(1);
}

.console-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 300;
    padding: 1rem 0.8rem;
    outline: none;
    resize: none;
    transition: var(--transition-smooth);
}

.console-textarea:focus {
    border-bottom-color: var(--gold);
    background: rgba(0, 0, 0, 0.35);
}

.console-char-counter {
    position: absolute;
    right: 0.5rem;
    bottom: -1.6rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Rejilla de Botones de Asunto */
.asunto-btn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.asunto-grid-btn {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 6px;
    padding: 1.2rem;
    color: var(--text-sub);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.asunto-grid-btn:hover {
    border-color: var(--gold);
    color: #fff;
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(197, 160, 89, 0.05);
}

.asunto-grid-btn.selected {
    background: rgba(197, 160, 89, 0.14) !important;
    border-color: var(--gold) !important;
    color: #fff !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
    font-weight: 600;
}

.btn-bullet {
    color: var(--gold);
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.asunto-grid-btn:hover .btn-bullet {
    transform: scale(1.2);
    color: var(--gold-bright);
}

/* Controles de Navegación */
.console-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
}

.console-nav-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
}

.console-nav-btn:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.02);
}

/* Clase para shake en caso de error */
@keyframes shakeInvalid {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.invalid-shake {
    animation: shakeInvalid 0.4s ease;
    border-bottom-color: rgba(234, 67, 53, 0.5) !important;
}

/* Botón de Transmisión (Submit) */
.btn-transmit-premium {
    position: relative;
    cursor: pointer;
    padding: 1.1rem 2rem;
    font-size: 0.82rem;
    letter-spacing: 3px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-weight: 600;
    background: var(--gold);
    color: var(--sanctum-bg);
    border: 1px solid var(--gold);
    border-radius: 4px;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-transmit-premium:hover:not(:disabled) {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
    transform: translateY(-2px);
}

.btn-transmit-premium:active:not(:disabled) {
    transform: translateY(0);
}

.btn-transmit-premium:disabled {
    background: rgba(197, 160, 89, 0.25);
    border-color: rgba(197, 160, 89, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
}

/* Animación de carga interna */
.btn-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(2, 3, 8, 0.25);
    border-top: 2px solid var(--sanctum-bg);
    border-radius: 50%;
    animation: spinSlow 0.8s infinite linear;
    margin-left: 10px;
}

.btn-transmit-premium.submitting {
    color: rgba(2, 3, 8, 0.6);
}

.btn-transmit-premium.submitting .btn-spinner {
    display: block;
}

/* ── Panel de Éxito de la Transmisión ────────────────────────────────── */
.transmission-form-view {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.success-transmission-panel {
    display: none;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0.95);
}

.success-transmission-panel.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.success-ring-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-outer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1.5px dashed rgba(197, 160, 89, 0.35);
    border-radius: 50%;
    animation: spinSlow 20s infinite linear;
}

.success-inner-ring {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 50%;
    animation: spinSlowBack 15s infinite linear;
}

.success-seal-center {
    width: 60px;
    height: 60px;
    color: var(--gold);
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.5));
    animation: pulseSeal 3s infinite ease-in-out;
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.success-msg-parag {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-sub);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.success-meta-details {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(197, 160, 89, 0.08);
    padding: 1.2rem 2rem;
    border-radius: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.success-meta-details span strong {
    color: var(--gold);
}

.btn-reset-transmission {
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold);
    padding: 0.9rem 2.2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-reset-transmission:hover {
    background: rgba(197, 160, 89, 0.06);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

/* ── Keyframes & Animations ────────────────────────────────────────── */
@keyframes pulseStar {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes pulseOrbits {
    0% { transform: translate(-50%, -50%) rotate(0deg); opacity: 0.15; }
    50% { opacity: 0.4; }
    100% { transform: translate(-50%, -50%) rotate(360deg); opacity: 0.15; }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinSlowBack {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes pulseSeal {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.4)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.7)); }
}

/* ── Media Queries de Ajuste Fino ────────────────────────────────────── */
@media (max-width: 1024px) {
    .premium-form-container {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .celestial-hero {
        min-height: 45vh;
        padding-top: 110px;
        padding-bottom: 2.5rem;
    }
    .premium-form-container {
        padding: 2.5rem 1.8rem;
    }
    .contact-info-card {
        padding: 2rem;
    }
    .asunto-btn-grid {
        grid-template-columns: 1fr;
    }
}
