/* =========================
   ORÁCULO - INTELIGENCIA PREDICTIVA
   ECOSISTEMA AZENIS
   COLOR: PÚRPURA
   VERSIÓN: CSP COMPATIBLE
   ========================= */

/* ============================================
   FULL WIDTH RESET PARA ORÁCULO
   ============================================ */
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

.hero-oraculo,
.what-is,
.section-monitoreo,
.section-intel,
.final-cta,
.ticker-container,
.elite-divider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-content,
.what-is-container,
.container,
.ticker-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

.what-is-overlay,
.monitoreo-overlay,
.intel-overlay,
.hero-oraculo .cyber-grid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

section, div, article {
    max-width: none;
}

/* =========================
   VARIABLES GLOBALES
   ========================= */
:root {
    --purple: #7C3AED;
    --purple-glow: rgba(124, 58, 237, 0.15);
    --purple-border: rgba(124, 58, 237, 0.25);
    --cyan: #22D3EE;
    --cyan-glow: rgba(34, 211, 238, 0.15);
    --cyan-border: rgba(34, 211, 238, 0.2);
    --navy: #0A1F2E;
    --navy-dark: #05070A;
    --white: #FFFFFF;
    --black: #05070A;
    --gray: #9CA3AF;
    --gray-dark: #6B7280;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --gt-color: #3B82F6;
    --sv-color: #10B981;
    --hn-color: #F59E0B;
}

/* =========================
   RESET UNIVERSAL
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    cursor: default;
}

/* =========================
   NOISE TEXTURE
   ========================= */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* =========================
   HERO SECTION
   ========================= */
.hero-oraculo {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-oraculo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://azenis.com.gt/assets/images/oraculo/hero-home.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

/* Línea divisoria púrpura al final del hero */
.hero-oraculo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 5%,
        var(--purple) 20%,
        #8B5CF6 40%,
        #8B5CF6 60%,
        var(--purple) 80%,
        transparent 95%,
        transparent 100%
    );
    z-index: 3;
}

.hero-oraculo .cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--purple-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--purple-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 30px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left .badge {
    display: none;
}

.hero-left h1 {
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-left h1.purple {
    color: var(--purple);
    text-shadow: 0 0 30px var(--purple-glow);
}

.hero-left .subheadline {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 90%;
}

.hero-left .description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--purple), #6D28D9);
    color: var(--white);
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--purple);
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid var(--purple);
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.oraculo-core {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid var(--purple-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.oraculo-core:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

.icon-container {
    width: auto;
    height: auto;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.oraculo-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.oraculo-core h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--purple);
    margin-bottom: 10px;
}

.oraculo-core p {
    font-size: 0.7rem;
    color: var(--gray);
    font-family: monospace;
}

/* =========================
   QUÉ ES ORÁCULO
   ========================= */
.what-is {
    padding: 100px 0;
    position: relative;
    background-image: url('https://azenis.com.gt/assets/images/oraculo/oraculo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.what-is-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.what-is-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.what-is-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.what-is-text h2 span {
    color: var(--purple);
}

.what-is-text p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.what-is-visual {
    background: rgba(124, 58, 237, 0.03);
    border: 1px solid var(--purple-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.feature-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 1.2rem;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.feature-text p {
    font-size: 0.75rem;
    color: var(--gray);
}

/* =========================
   TICKER
   ========================= */
.ticker-container {
    background: rgba(10, 31, 46, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 60s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    margin-right: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    animation: pulseLight 2s infinite ease-in-out;
}

@keyframes pulseLight {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.ticker-country {
    font-weight: 700;
    letter-spacing: 1px;
}

.ticker-country.gt { color: var(--gt-color); }
.ticker-country.sv { color: var(--sv-color); }
.ticker-country.hn { color: var(--hn-color); }

.ticker-event {
    color: var(--gray);
    font-weight: 400;
}

.ticker-level {
    font-weight: 600;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-container:hover .ticker-wrapper {
    animation-play-state: paused;
}

/* =========================
   MONITOREO OPERACIONAL
   ========================= */
.section-monitoreo {
    padding: 100px 0;
    position: relative;
    background-image: url('https://azenis.com.gt/assets/images/oraculo/monitoreo-operacional.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.monitoreo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.section-monitoreo .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .tag {
    display: none;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-header h2 span {
    color: var(--purple);
}

.header-description {
    font-size: 1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.grid-unified {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
    align-items: start;
}

.left-panel-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.threat-temp {
    background: rgba(5, 8, 22, 0.9);
    border: 1px solid var(--cyan-border);
    border-radius: 16px;
    padding: 35px 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
    transition: box-shadow 0.3s ease;
}

.threat-temp:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

.temp-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 20px;
    text-align: center;
}

.temp-bar-container {
    width: 100%;
    height: 24px;
    background: rgba(5, 8, 22, 0.8);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.temp-bar {
    width: 0%;
    height: 100%;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: barPulse 2s infinite ease-in-out;
}

@keyframes barPulse {
    0%, 100% { opacity: 0.9; filter: brightness(1); }
    50% { opacity: 1; filter: brightness(1.15); }
}

.temp-status {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.temp-note {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
    margin-top: 18px;
}

.confidence-box {
    background: linear-gradient(135deg, #0D1825, #0A1F2E);
    border: 1px solid var(--purple-border);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.confidence-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
}

.confidence-box:hover {
    transform: translateY(-3px);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
}

.confidence-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.confidence-score {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--cyan);
    text-shadow: 0 0 25px var(--cyan-glow);
    line-height: 1;
    transition: all 0.3s ease;
}

.confidence-score span {
    font-size: 1.5rem;
}

.confidence-desc {
    font-size: 0.85rem;
    color: var(--white);
    margin-top: 10px;
    font-weight: 500;
}

.confidence-note {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 10px;
}

.feed-wrap {
    background: linear-gradient(135deg, rgba(10, 21, 32, 0.9), rgba(10, 26, 40, 0.9));
    border: 1px solid var(--purple-border);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feed-wrap:hover {
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.feed-item {
    padding: 16px 0;
    border-left: 3px solid var(--purple);
    padding-left: 16px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray);
    transition: all 0.3s ease;
}

.feed-item:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateX(5px);
}

.feed-item:last-child {
    margin-bottom: 0;
}

.feed-level {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-right: 10px;
}

.feed-level.critico { background: #EF4444; color: white; }
.feed-level.alto { background: #F97316; color: black; }
.feed-level.medio { background: rgba(245, 158, 11, 0.15); color: #F59E0B; border: 1px solid rgba(245, 158, 11, 0.3); }
.feed-level.info { background: rgba(34, 211, 238, 0.15); color: #22D3EE; border: 1px solid rgba(34, 211, 238, 0.3); }

/* =========================
   INTELIGENCIA ACTIVA - PANELES OPERATIVOS
   ========================= */
.section-intel {
    padding: 100px 0;
    position: relative;
    background-image: url('https://azenis.com.gt/assets/images/oraculo/ia-activa.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.intel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.section-intel .container {
    position: relative;
    z-index: 2;
}

.intel-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0 40px;
}

.intel-panel {
    background: rgba(10, 20, 30, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
}

.intel-panel:first-child {
    animation-delay: 0.1s;
}

.intel-panel:last-child {
    animation-delay: 0.2s;
}

.intel-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.intel-panel:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.6);
    box-shadow: 0 25px 40px -15px rgba(124, 58, 237, 0.3);
}

.intel-panel:hover::before {
    opacity: 1;
}

.panel-sentinel {
    border-left: 3px solid var(--purple);
}

.panel-control {
    border-left: 3px solid var(--cyan);
}

.panel-header {
    margin-bottom: 28px;
}

.panel-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--purple);
    text-transform: uppercase;
    background: rgba(124, 58, 237, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.panel-control .panel-badge {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.3);
}

.panel-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.panel-sentinel .panel-header h3 {
    color: var(--purple);
}

.panel-control .panel-header h3 {
    color: var(--cyan);
    font-size: 1.3rem;
}

.panel-metric {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    min-width: 140px;
}

.metric-bar-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    min-width: 120px;
}

.metric-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
}

.panel-sentinel .metric-bar {
    background: linear-gradient(90deg, var(--purple), #A855F7);
}

.panel-control .metric-bar {
    background: linear-gradient(90deg, var(--cyan), #06B6D4);
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    min-width: 45px;
    text-align: right;
}

.panel-signals {
    margin-bottom: 28px;
}

.panel-signals h4 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 18px;
}

.signals-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signals-list li {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.signals-list li:hover {
    color: var(--white);
    transform: translateX(5px);
}

.signals-list li i {
    width: 24px;
    font-size: 0.85rem;
}

.panel-sentinel .signals-list li i {
    color: var(--purple);
}

.panel-control .signals-list li i {
    color: var(--cyan);
}

.panel-footer {
    margin-top: 20px;
}

.btn-panel {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: transparent;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.panel-sentinel .btn-panel {
    border: 1.5px solid var(--purple);
    color: var(--purple);
}

.panel-sentinel .btn-panel:hover {
    background: rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.2);
}

.panel-control .btn-panel {
    border: 1.5px solid var(--cyan);
    color: var(--cyan);
}

.panel-control .btn-panel:hover {
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(34, 211, 238, 0.2);
}

.operational-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 60px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    text-align: center;
}

.note-icon {
    font-size: 1.2rem;
    color: var(--purple);
}

.note-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gray);
    text-transform: uppercase;
}

/* =========================
   FINAL CTA CON IMAGEN DE FONDO
   ========================= */
.final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: var(--black);
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://azenis.com.gt/assets/images/oraculo/cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.25;
    z-index: 0;
}

.final-cta .container,
.final-cta h2,
.final-cta p,
.final-cta .cta-line,
.final-cta .btn-primary {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta h2 span {
    color: var(--purple);
}

.final-cta p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 30px;
}

.final-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--purple);
    padding: 16px 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: 1.5px solid var(--purple);
    cursor: pointer;
}

.final-cta .btn-primary:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

/* =========================
   TEXT SHADOW PARA LEGIBILIDAD
   ========================= */
.what-is-text p,
.what-is-text h2,
.feature-text h4,
.feature-text p,
.section-header .tag,
.section-header h2,
.temp-label,
.temp-status,
.confidence-title,
.confidence-desc,
.feed-item,
.panel-header h3,
.panel-signals h4,
.signals-list li,
.metric-label,
.note-text {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* =========================
   ANIMACIONES
   ========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left .subheadline, .hero-left .description {
        max-width: 100%;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .what-is-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .grid-unified {
        grid-template-columns: 1fr;
    }
    
    .intel-panels {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .elite-divider {
        height: 3px;
    }
    
    .hero-content,
    .what-is-container,
    .container,
    .ticker-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-oraculo {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 120px 20px 80px;
    }
    
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-monitoreo, .section-intel {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .final-cta h2 {
        font-size: 1.3rem;
        padding: 0 20px;
    }
    
    .ticker-item {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .oraculo-icon {
        width: 70px;
        height: 70px;
    }
    
    .elite-divider {
        height: 2px;
    }
    
    .cta-line {
        width: 150px;
    }
    
    .intel-panel {
        padding: 24px;
    }
    
    .panel-header h3 {
        font-size: 1.3rem;
    }
    
    .panel-control .panel-header h3 {
        font-size: 1.1rem;
    }
    
    .metric-label {
        min-width: 100px;
        font-size: 0.7rem;
    }
    
    .operational-note {
        flex-direction: column;
        gap: 8px;
        border-radius: 30px;
    }
    
    .btn-panel {
        padding: 8px 16px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }
    
    .oraculo-core {
        padding: 25px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .oraculo-icon {
        width: 50px;
        height: 50px;
    }
    
    .oraculo-core h3 {
        font-size: 0.9rem;
    }
    
    .final-cta h2 {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .final-cta .btn-primary {
        padding: 10px 20px;
        font-size: 0.7rem;
    }
    
    .hero-content,
    .what-is-container,
    .container,
    .ticker-wrapper {
        padding: 0 15px;
    }
    
    .btn-panel {
        padding: 7px 12px;
        font-size: 0.6rem;
    }
    
    .panel-control .btn-panel {
        white-space: normal;
        line-height: 1.3;
        font-size: 0.55rem;
        padding: 8px 10px;
    }
}