/* ============================================
   MAIN.CSS - ESTILOS GLOBALES
   Paleta de marca:
   - Deep Cyber Blue: #0A3D66
   - Cyber Orange: #FF6A00
   - Negro Grafito: #0F1115
   - Blanco: #FFFFFF
   ============================================ */

:root {
    --hexa-blue: #0A3D66;
    --hexa-blue-dark: #072e4d;
    --hexa-blue-glow: rgba(10, 61, 102, 0.25);
    --hexa-orange: #FF6A00;
    --hexa-orange-dark: #e65c00;
    --hexa-orange-glow: rgba(255, 106, 0, 0.25);
    --hexa-black: #0F1115;
    --hexa-white: #FFFFFF;
    --text-light: #ffffff;
    --text-dark: #0F1115;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--hexa-white);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === BOTONES GLOBALES === */
.btn-cta {
    background: linear-gradient(135deg, var(--hexa-orange) 0%, var(--hexa-orange-dark) 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--hexa-orange-dark) 0%, var(--hexa-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--hexa-orange-glow);
    color: white;
}

.btn-outline-light {
    border-radius: 40px;
    padding: 12px 28px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-outline-light:hover {
    border-color: var(--hexa-orange);
    background: rgba(255, 106, 0, 0.15);
    color: var(--hexa-orange);
    transform: translateY(-2px);
}

/* === SELECTOR IDIOMA === */
.lang-selector {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hexa-orange) !important;
    text-transform: uppercase;
    cursor: pointer;
}

/* === ANIMACIONES SCROLL REVEAL === */
.service-card,
.criteria-card,
.team-member,
form,
.industry-box,
.industry-detailed-card,
.process-card,
.source-card,
.include-card,
.audience-card,
.profile-card,
.module-card,
.finding-card,
.provider-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* === UTILITARIOS === */
.text-orange {
    color: var(--hexa-orange) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--hexa-orange), var(--hexa-orange-dark));
    border-radius: 3px;
}
.btn-cta {
    background: linear-gradient(135deg, #FF6A00 0%, #E55A00 100%) !important;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #E55A00 0%, #CC4A00 100%) !important;
}

/* === RESPONSIVE GLOBAL === */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}