/* preguntas-frecuentes.css - Estilo Vision Olympus */

/* Reset y configuración base - Mismo que tecnologia.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-space: #000010;
    --cosmic-purple: #1a0033;
    --nebula-blue: #001122;
    --stellar-white: #ffffff;
    --quantum-blue: #00f3ff;
    --pulsar-pink: #ff00ff;
    --nova-green: #00ff00;
    --supernova-yellow: #ffff00;
    --galactic-purple: #9d00ff;
    --dark-matter: #0a0a1a;
    --text-glow: rgba(255, 255, 255, 0.9);
    --energy-wave: rgba(0, 243, 255, 0.15);
    --hologram-field: rgba(157, 0, 255, 0.1);
    --laser-beam: rgba(255, 0, 255, 0.3);
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--deep-space);
    color: var(--stellar-white);
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
    cursor: default;
}

/* Fondo galáctico - Mismo que tecnologia.css */
.galaxy-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--cosmic-purple) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--nebula-blue) 0%, transparent 50%),
        linear-gradient(45deg, var(--deep-space) 0%, var(--dark-matter) 100%);
    z-index: -4;
    pointer-events: none;
}

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 40% 70%, #fff, transparent),
        radial-gradient(1px 1px at 60% 20%, #fff, transparent),
        radial-gradient(1px 1px at 80% 50%, #fff, transparent),
        radial-gradient(2px 2px at 30% 80%, #fff, transparent);
    background-size: 200px 200px, 300px 300px, 400px 400px, 500px 500px, 600px 600px;
    animation: star-twinkle 8s infinite alternate;
    z-index: -3;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.nebula-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 243, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 20%, rgba(0, 255, 0, 0.05) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
    opacity: 0.6;
    mix-blend-mode: screen;
}

/* Barra de progreso - Mismo que tecnologia.css */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--quantum-blue), var(--pulsar-pink));
    z-index: 1000;
    transition: width 0.1s;
    box-shadow: 0 0 10px var(--quantum-blue);
}

/* Cabecera - Mismo que tecnologia.css */
.cyber-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    border-bottom: 1px solid transparent;
}

.cyber-header.scrolled {
    background-color: rgba(10, 10, 26, 0.9);
    padding: 12px 40px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.logo-container h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--stellar-white);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-glitch {
    position: relative;
    display: inline-block;
}

.logo-glitch::before,
.logo-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo-glitch::before {
    left: 1px;
    text-shadow: -1px 0 var(--pulsar-pink);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.logo-glitch::after {
    left: -1px;
    text-shadow: -1px 0 var(--quantum-blue);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

.cyber-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--stellar-white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding: 6px 0;
    transition: all 0.3s;
    font-size: 0.75rem;
    opacity: 0.7;
}

.nav-link:hover {
    color: var(--quantum-blue);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--quantum-blue);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--quantum-blue);
    opacity: 1;
}

.nav-link.active::after {
    width: 100%;
}

/* Animaciones de glitch - Mismo que tecnologia.css */
@keyframes glitch-anim {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }
    5% {
        clip: rect(12px, 9999px, 59px, 0);
    }
    10% {
        clip: rect(48px, 9999px, 29px, 0);
    }
    15% {
        clip: rect(42px, 9999px, 73px, 0);
    }
    20% {
        clip: rect(63px, 9999px, 27px, 0);
    }
    25% {
        clip: rect(34px, 9999px, 55px, 0);
    }
    30% {
        clip: rect(86px, 9999px, 73px, 0);
    }
    35% {
        clip: rect(20px, 9999px, 20px, 0);
    }
    40% {
        clip: rect(26px, 9999px, 60px, 0);
    }
    45% {
        clip: rect(25px, 9999px, 66px, 0);
    }
    50% {
        clip: rect(57px, 9999px, 98px, 0);
    }
    55% {
        clip: rect(5px, 9999px, 46px, 0);
    }
    60% {
        clip: rect(82px, 9999px, 31px, 0);
    }
    65% {
        clip: rect(54px, 9999px, 27px, 0);
    }
    70% {
        clip: rect(28px, 9999px, 99px, 0);
    }
    75% {
        clip: rect(45px, 9999px, 69px, 0);
    }
    80% {
        clip: rect(23px, 9999px, 85px, 0);
    }
    85% {
        clip: rect(54px, 9999px, 84px, 0);
    }
    90% {
        clip: rect(45px, 9999px, 47px, 0);
    }
    95% {
        clip: rect(37px, 9999px, 20px, 0);
    }
    100% {
        clip: rect(4px, 9999px, 91px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }
    5% {
        clip: rect(52px, 9999px, 74px, 0);
    }
    10% {
        clip: rect(79px, 9999px, 85px, 0);
    }
    15% {
        clip: rect(75px, 9999px, 5px, 0);
    }
    20% {
        clip: rect(67px, 9999px, 61px, 0);
    }
    25% {
        clip: rect(14px, 9999px, 79px, 0);
    }
    30% {
        clip: rect(1px, 9999px, 66px, 0);
    }
    35% {
        clip: rect(86px, 9999px, 30px, 0);
    }
    40% {
        clip: rect(23px, 9999px, 98px, 0);
    }
    45% {
        clip: rect(85px, 9999px, 72px, 0);
    }
    50% {
        clip: rect(71px, 9999px, 75px, 0);
    }
    55% {
        clip: rect(2px, 9999px, 48px, 0);
    }
    60% {
        clip: rect(30px, 9999px, 16px, 0);
    }
    65% {
        clip: rect(59px, 9999px, 50px, 0);
    }
    70% {
        clip: rect(41px, 9999px, 62px, 0);
    }
    75% {
        clip: rect(2px, 9999px, 82px, 0);
    }
    80% {
        clip: rect(47px, 9999px, 73px, 0);
    }
    85% {
        clip: rect(3px, 9999px, 27px, 0);
    }
    90% {
        clip: rect(26px, 9999px, 55px, 0);
    }
    95% {
        clip: rect(42px, 9999px, 97px, 0);
    }
    100% {
        clip: rect(38px, 9999px, 49px, 0);
    }
}

/* Contenedores generales */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HERO SECTION FAQ */
.faq-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vmin;
    height: 80vmin;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    animation: orbit-appear 2s ease-out forwards;
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate linear infinite;
    opacity: 0;
}

.ring-1 {
    width: 60vmin;
    height: 60vmin;
    animation-duration: 40s;
    animation-delay: 0.5s;
}

.ring-2 {
    width: 40vmin;
    height: 40vmin;
    animation-duration: 30s;
    animation-direction: reverse;
    animation-delay: 0.8s;
}

.ring-3 {
    width: 20vmin;
    height: 20vmin;
    animation-duration: 20s;
    animation-delay: 1.1s;
}

.core-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10vmin;
    height: 10vmin;
    background: radial-gradient(circle, var(--quantum-blue), transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--quantum-blue);
    animation: core-pulse 4s infinite alternate, core-appear 1.5s ease-out forwards;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

@keyframes orbit-appear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes core-appear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    70% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

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

@keyframes core-pulse {
    0% { 
        box-shadow: 0 0 20px var(--quantum-blue);
        transform: translate(-50%, -50%) scale(1);
    }
    100% { 
        box-shadow: 0 0 60px var(--quantum-blue), 0 0 100px var(--pulsar-pink);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: hero-content-appear 1.5s ease-out 0.5s forwards;
}

@keyframes hero-content-appear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--stellar-white);
    text-transform: uppercase;
    opacity: 0;
    animation: title-appear 1.2s ease-out 0.8s forwards;
}

@keyframes title-appear {
    0% {
        opacity: 0;
        transform: translateY(40px);
        text-shadow: 0 0 20px transparent;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    }
}

.hero-accent {
    background: linear-gradient(135deg, var(--quantum-blue), var(--pulsar-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: accent-glow 3s infinite alternate;
}

@keyframes accent-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.7));
    }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 100%;
}

/* Búsqueda */
.search-container {
    margin-top: 20px;
}

.search-box {
    position: relative;
    max-width: 500px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--quantum-blue);
    font-size: 1rem;
}

#faq-search {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    color: var(--stellar-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

#faq-search:focus {
    outline: none;
    border-color: var(--quantum-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

#faq-search::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 40, 0.95);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 8px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 10;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(0, 243, 255, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

/* Hero Right */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    animation: right-content-appear 1s ease-out 1.5s forwards;
}

@keyframes right-content-appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--quantum-blue);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--quantum-blue);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--quantum-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.emergency-contact {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.emergency-contact h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--stellar-white);
}

.emergency-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Secciones generales */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--stellar-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sección de Categorías */
.categories-section {
    background: rgba(10, 10, 26, 0.3);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    background: rgba(20, 20, 40, 0.4);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--quantum-blue), var(--pulsar-pink));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--quantum-blue);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.25);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--quantum-blue);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: rgba(0, 243, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--stellar-white);
}

.category-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-count {
    font-size: 0.75rem;
    color: var(--quantum-blue);
    font-weight: 600;
    background: rgba(0, 243, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

/* Sección FAQ */
.faq-section {
    background: rgba(15, 15, 35, 0.6);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.category-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--stellar-white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
}

.category-header i {
    color: var(--quantum-blue);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--quantum-blue);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--stellar-white);
}

.faq-question:hover {
    background: rgba(0, 243, 255, 0.05);
}

.faq-question i {
    color: var(--quantum-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Sección de Contacto */
.contact-section {
    background: rgba(10, 10, 26, 0.4);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--stellar-white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--quantum-blue);
    transform: translateY(-3px);
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--quantum-blue);
    font-size: 1.1rem;
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    display: block;
    color: var(--stellar-white);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-method span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
}

.contact-form h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--stellar-white);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    color: var(--stellar-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--quantum-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botones */
.cta-button {
    padding: 12px 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--quantum-blue), var(--pulsar-pink));
    color: var(--deep-space);
    position: relative;
    z-index: 1;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pulsar-pink), var(--quantum-blue));
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.4);
}

.cta-button.primary:hover::before {
    left: 0;
}

.cta-button.secondary {
    background: transparent;
    color: var(--quantum-blue);
    border-color: var(--quantum-blue);
}

.cta-button.secondary:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.2);
}

/* Footer - IDÉNTICO AL INDEX */
.tech-footer {
    background: var(--dark-matter);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    padding: 25px 0 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 150px;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--stellar-white);
    margin-bottom: 3px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex: 2;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--quantum-blue);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--quantum-blue);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link.active {
    color: var(--quantum-blue);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.social-link:hover {
    color: var(--quantum-blue);
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
}

.footer-copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
}

/* Efectos de partículas */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: cosmic-float linear infinite;
}

@keyframes cosmic-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) translateX(20px) rotate(180deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .cyber-header {
        padding: 12px 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .cyber-header.scrolled {
        padding: 8px 20px;
    }
    
    .logo-container h1 {
        font-size: 1rem;
    }
    
    .cyber-nav {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.7rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .quick-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .footer-content {
        gap: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-logo {
        min-width: 120px;
    }
    
    .category-card {
        padding: 20px 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}
