/* ====================================================================
   ABOUT PAGE STYLES
   Extracted from about.html
   ==================================================================== */

/* ============================================
   ABOUT PAGE - ULTIMATE PREMIUM DESIGN
   All classes prefixed with 'about-' to avoid conflicts
   ============================================ */

:root {
    --about-accent: #FF8A3D;
    --about-accent-light: #FFB077;
    --about-accent-secondary: #E7A95F;
    --about-accent-tertiary: #FF6B6B;
    --about-text: #fff8f0;
    --about-text-dim: #9a8a7a;
    --about-text-muted: rgba(255,255,255,0.4);
    --about-bg: #050504;
    --about-card: rgba(12, 10, 8, 0.8);
    --about-border: rgba(255, 138, 61, 0.2);
}

/* Reset for this page */
html, body {
    height: auto !important;
    overflow-y: auto !important;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overscroll-behavior-y: auto;
}

/* ============================================
   HERO - CINEMATIC ENTRANCE
   ============================================ */
.about-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    position: relative;
    overflow: hidden;
}

/* Animated background orbs */
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,138,61,0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: aboutFloat1 15s ease-in-out infinite;
    pointer-events: none;
}

.about-hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
    filter: blur(50px);
    animation: aboutFloat2 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aboutFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 20px) scale(0.95); }
}

@keyframes aboutFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -40px) scale(1.15); }
}

.about-hero-inner {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(255,138,61,0.2), rgba(255,107,107,0.1));
    border: 1px solid var(--about-border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--about-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    backdrop-filter: blur(20px);
    animation: aboutSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--about-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--about-accent);
    animation: aboutPulse 2s ease-in-out infinite;
}

@keyframes aboutPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--about-accent); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--about-accent), 0 0 40px var(--about-accent); }
}

@keyframes aboutSlideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-hero-title {
    font-size: clamp(56px, 12vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -4px;
}

.about-hero-title span {
    display: block;
    animation: aboutSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.about-hero-title span:nth-child(1) { animation-delay: 0.1s; }
.about-hero-title span:nth-child(2) { animation-delay: 0.2s; }

.about-gradient-text {
    background: linear-gradient(135deg, var(--about-accent) 0%, var(--about-accent-secondary) 40%, var(--about-accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: aboutGradient 4s ease infinite;
}

@keyframes aboutGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.about-hero-desc {
    font-size: clamp(17px, 2.2vw, 24px);
    color: var(--about-text-dim);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
    animation: aboutSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.about-hero-desc strong {
    color: var(--about-accent);
    font-weight: 500;
}

.about-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--about-text-muted);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: aboutFadeIn 1s ease 0.6s backwards;
    cursor: pointer;
    transition: color 0.3s;
}

.about-scroll-hint:hover { color: var(--about-accent); }

.about-scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 13px;
    position: relative;
    opacity: 0.6;
}

.about-scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--about-accent);
    border-radius: 2px;
    animation: aboutScrollWheel 2s ease-in-out infinite;
}

@keyframes aboutScrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 22px; opacity: 0.2; }
}

@keyframes aboutFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   SECTIONS
   ============================================ */
.about-section {
    padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 80px);
    position: relative;
    z-index: 10;
}

.about-section-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 100px);
}

.about-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--about-accent);
    margin-bottom: 24px;
}

.about-section-tag::before,
.about-section-tag::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--about-accent));
}

.about-section-tag::after {
    background: linear-gradient(90deg, var(--about-accent), transparent);
}

.about-section-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-section-subtitle {
    font-size: clamp(15px, 1.8vw, 20px);
    color: var(--about-text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   FEATURE CARDS - ÍCONES QUE NUNCA DESAPARECEM!
   ============================================ */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.about-feature-card {
    background: var(--about-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--about-border);
    border-radius: 28px;
    padding: clamp(28px, 4vw, 48px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,138,61,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.about-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--about-accent), var(--about-accent-secondary), var(--about-accent-tertiary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,138,61,0.4);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.4),
        0 0 60px rgba(255,138,61,0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.about-feature-card:hover::before { opacity: 1; }
.about-feature-card:hover::after { transform: scaleX(1); }

/* ÍCONES - SVG INLINE QUE SEMPRE FUNCIONA */
.about-feature-icon {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    background: linear-gradient(145deg, var(--about-accent), var(--about-accent-secondary)) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 28px !important;
    box-shadow: 
        0 12px 40px rgba(255, 138, 61, 0.35),
        inset 0 2px 0 rgba(255,255,255,0.2) !important;
    position: relative !important;
    flex-shrink: 0 !important;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s !important;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 
        0 20px 50px rgba(255, 138, 61, 0.5),
        inset 0 2px 0 rgba(255,255,255,0.3);
}

.about-feature-icon svg {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
}

.about-feature-card h3 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--about-text);
    letter-spacing: -0.5px;
}

.about-feature-card p {
    color: var(--about-text-dim);
    line-height: 1.8;
    font-size: clamp(14px, 1.4vw, 16px);
}

/* ============================================
   STATS - IMPACTFUL NUMBERS
   ============================================ */
.about-stats-strip {
    padding: clamp(50px, 8vw, 100px) 24px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,138,61,0.06) 25%, 
        rgba(255,138,61,0.1) 50%, 
        rgba(255,138,61,0.06) 75%, 
        transparent 100%
    );
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.about-stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff8a3d' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 4vw, 60px);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Tablet: 2x2 grid */
@media (max-width: 900px) {
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(24px, 5vw, 40px);
        max-width: 500px;
    }
}

/* Mobile: Stack vertically but keep 2x2 */
@media (max-width: 480px) {
    .about-stats-strip {
        padding: 40px 16px;
    }
    .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        max-width: 320px;
    }
}

.about-stat {
    text-align: center;
    padding: clamp(12px, 3vw, 20px);
}

.about-stat-value {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--about-accent), var(--about-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .about-stat-value {
        font-size: clamp(28px, 8vw, 42px);
        letter-spacing: 0;
    }
}

.about-stat-label {
    font-size: clamp(10px, 1.2vw, 13px);
    color: var(--about-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .about-stat-label {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-top: 8px;
    }
}

/* ============================================
   VALUES GRID
   ============================================ */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--about-border);
    border-radius: 24px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

.about-value-item {
    background: var(--about-bg);
    padding: clamp(30px, 4vw, 50px) clamp(20px, 3vw, 40px);
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.about-value-item:hover {
    background: rgba(255,138,61,0.05);
}

.about-value-num {
    font-size: clamp(52px, 7vw, 80px);
    font-weight: 900;
    background: linear-gradient(180deg, rgba(255,138,61,0.9) 0%, rgba(255,138,61,0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.about-value-item h4 {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--about-text);
}

.about-value-item p {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--about-text-muted);
    line-height: 1.6;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.about-quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px);
    background: var(--about-card);
    backdrop-filter: blur(30px);
    border: 1px solid var(--about-border);
    border-radius: 32px;
    position: relative;
    text-align: center;
}

.about-quote-wrapper::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(100px, 15vw, 180px);
    color: rgba(255,138,61,0.1);
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
    pointer-events: none;
}

.about-quote-text {
    font-size: clamp(17px, 2.2vw, 26px);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: var(--about-text);
}

.about-quote-text strong {
    color: var(--about-accent);
    font-weight: 500;
}

.about-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--about-text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
}

.about-quote-author span:first-child,
.about-quote-author span:last-child {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--about-accent));
}

.about-quote-author span:last-child {
    background: linear-gradient(90deg, var(--about-accent), transparent);
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.about-approach-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

@media (max-width: 768px) {
    .about-approach-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about-approach-visual {
    position: relative;
    height: clamp(280px, 35vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-globe-ring {
    width: clamp(200px, 28vw, 320px);
    height: clamp(200px, 28vw, 320px);
    border: 2px solid rgba(255,138,61,0.25);
    border-radius: 50%;
    position: relative;
    animation: aboutRotate 25s linear infinite;
}

.about-globe-ring::before,
.about-globe-ring::after {
    content: '';
    position: absolute;
}

.about-globe-ring::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,138,61,0.2), transparent);
}

.about-globe-ring::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,138,61,0.2), transparent);
}

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

.about-globe-dot {
    width: 14px;
    height: 14px;
    background: var(--about-accent);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 25px var(--about-accent), 0 0 50px rgba(255,138,61,0.3);
    animation: aboutDotPulse 2.5s ease-in-out infinite;
}

.about-globe-dot:nth-child(1) { top: 12%; left: 22%; animation-delay: 0s; }
.about-globe-dot:nth-child(2) { top: 58%; left: 78%; animation-delay: 0.5s; }
.about-globe-dot:nth-child(3) { top: 32%; left: 88%; animation-delay: 1s; }
.about-globe-dot:nth-child(4) { top: 78%; left: 18%; animation-delay: 1.5s; }
.about-globe-dot:nth-child(5) { top: 22%; left: 58%; animation-delay: 0.3s; }

@keyframes aboutDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0.3; }
}

.about-approach-content h3 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-approach-content p {
    color: var(--about-text-dim);
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.about-cta-section {
    padding: clamp(100px, 12vw, 180px) 24px;
    text-align: center;
    position: relative;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255,138,61,0.12) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-cta-section h2 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.about-cta-section p {
    font-size: clamp(15px, 1.8vw, 20px);
    color: var(--about-text-dim);
    margin-bottom: 48px;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border: none;
}

.about-btn-primary {
    background: linear-gradient(135deg, var(--about-accent), var(--about-accent-secondary));
    color: #000;
    box-shadow: 0 8px 30px rgba(255,138,61,0.4);
}

.about-btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255,138,61,0.5);
}

.about-btn-secondary {
    background: transparent;
    color: var(--about-text);
    border: 2px solid rgba(255,255,255,0.2);
}

.about-btn-secondary:hover {
    border-color: var(--about-accent);
    color: var(--about-accent);
    background: rgba(255,138,61,0.08);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.about-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-reveal-delay-1 { transition-delay: 0.1s; }
.about-reveal-delay-2 { transition-delay: 0.2s; }
.about-reveal-delay-3 { transition-delay: 0.3s; }
