/* ===== SECCIONES PRINCIPALES ===== */

/* ===== HEADERS DE SECCIÓN ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.cyber-section-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FADA25 0%, #E0A500 50%, #FFE55C 100%);
    border-radius: 2px;
}

.cyber-section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* ===== TARJETAS DE BENEFICIOS ===== */
.cyber-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cyber-benefit-card {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(250, 218, 37, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-align: center;
}

.cyber-benefit-card:hover {
    transform: translateY(-10px);
    border-color: #FADA25;
    box-shadow: 0 0 20px rgba(250, 218, 37, 0.5);
}

.benefit-icon {
    margin-bottom: 2rem;
    text-align: center;
}

.benefit-icon .icon-container {
    width: 100px;
    height: 100px;
}

.benefit-icon .icon-container i {
    font-size: 2.5rem;
    color: #0A0A0F;
    position: relative;
    z-index: 2;
}

.benefit-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-align: center;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: center;
    font-size: 1.1rem;
}

/* ===== SHOWCASE ===== */
.cyber-showcase {
    background: rgba(26, 26, 46, 0.4);
    border-radius: 20px;
    padding: 4rem;
    margin-top: 4rem;
    border: 1px solid rgba(250, 218, 37, 0.2);
    position: relative;
    overflow: hidden;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 218, 37, 0.1);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-glow {
    opacity: 1;
}

.feature-item i {
    color: #FADA25;
    font-size: 1.3rem;
}

.feature-item:hover {
    transform: translateX(10px);
}

.showcase-visual {
    position: relative;
    height: 300px;
}

.showcase-visual .holographic-display {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(250, 218, 37, 0.3);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.display-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    height: 100%;
    align-items: center;
    justify-items: center;
}

.grid-item {
    font-size: 3rem;
    opacity: 0;
    animation: gridItemAppear 4s ease-in-out infinite;
}

.grid-item:nth-child(2) { animation-delay: 1s; }
.grid-item:nth-child(3) { animation-delay: 2s; }
.grid-item:nth-child(4) { animation-delay: 3s; }

.display-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hologram-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    opacity: 0.2;
    filter: blur(20px);
    animation: hologramGlow 3s ease-in-out infinite;
}

/* ===== TIMELINE ===== */
.cyber-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(250, 218, 37, 0.3);
    transform: translateX(-50%);
}

.line-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FADA25 0%, #E0A500 50%, #FFE55C 100%);
    filter: blur(4px);
    opacity: 0.5;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.timeline-item.timeline-reverse {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 2;
}

.marker-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FADA25 0%, #E0A500 50%, #FFE55C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0A0A0F;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 0 20px rgba(250, 218, 37, 0.5);
}

.marker-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #FADA25;
    border-radius: 50%;
    animation: markerRing 3s ease-in-out infinite;
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #FADA25;
    border-radius: 50%;
    opacity: 0;
    animation: markerPulse 2s ease-in-out infinite;
}

.timeline-content {
    width: 45%;
}

.timeline-item.timeline-reverse .timeline-content {
    text-align: right;
}

.content-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(250, 218, 37, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
    transform: translateY(-5px);
    border-color: #FADA25;
    box-shadow: 0 0 20px rgba(250, 218, 37, 0.5);
}

.card-header {
    position: relative;
    background: rgba(250, 218, 37, 0.1);
    padding: 1.5rem;
    overflow: hidden;
}

.header-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    opacity: 0.3;
    filter: blur(10px);
}

.timeline-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-body {
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.timeline-item.timeline-reverse .card-body {
    flex-direction: row-reverse;
}

.timeline-image {
    flex: 0 0 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.timeline-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 218, 37, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-image:hover .image-overlay {
    opacity: 1;
}

.overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    filter: blur(10px);
}

.image-overlay i {
    font-size: 2.5rem;
    color: #0A0A0F;
    position: relative;
    z-index: 2;
}

.timeline-info {
    flex: 1;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.timeline-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(250, 218, 37, 0.2);
    color: #FADA25;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(250, 218, 37, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-final {
    text-align: center;
    margin-top: 4rem;
}

.final-container {
    position: relative;
    background: linear-gradient(135deg, #FADA25 0%, #E0A500 50%, #FFE55C 100%);
    border-radius: 20px;
    padding: 4rem;
    color: #0A0A0F;
    overflow: hidden;
}

.final-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    filter: blur(30px);
    opacity: 0.5;
}

.final-content {
    position: relative;
    z-index: 2;
}

.final-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

/* ===== PRECIOS ===== */
.cyber-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.cyber-pricing-card {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(250, 218, 37, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.cyber-pricing-card.featured {
    border-color: #FADA25;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(250, 218, 37, 0.5);
}

.cyber-pricing-card:hover {
    transform: translateY(-10px);
    border-color: #FADA25;
}

.cyber-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.pricing-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    opacity: 0;
    filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cyber-pricing-card:hover .pricing-glow {
    opacity: 0.3;
}

.pricing-scan {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #FADA25 0%, #E0A500 50%, #FFE55C 100%);
    animation: pricingScan 4s ease-in-out infinite;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #FADA25 0%, #E0A500 50%, #FFE55C 100%);
    color: #0A0A0F;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FADA25;
    border-radius: 50px;
    opacity: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

.pricing-header {
    background: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 50%, #16213E 100%);
    color: #FFFFFF;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cyber-pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #FADA25 0%, #E0A500 50%, #FFE55C 100%);
    color: #0A0A0F;
}

.plan-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.plan-icon i {
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.plan-name {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.price-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    filter: blur(20px);
    opacity: 0.3;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    z-index: 2;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    z-index: 2;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.plan-description {
    opacity: 0.9;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(250, 218, 37, 0.1);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.pricing-features .feature-item:last-child {
    border-bottom: none;
}

.pricing-features .feature-item.featured-item {
    color: #FADA25;
    font-weight: 600;
}

.pricing-features .feature-item i {
    color: #FADA25;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pricing-features .featured-item i {
    color: #00D4FF;
}

.pricing-action {
    padding: 0 2rem 2rem;
}

.pricing-comparison {
    text-align: center;
    margin-top: 4rem;
}

.comparison-container {
    position: relative;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(250, 218, 37, 0.2);
    overflow: hidden;
}

.comparison-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    filter: blur(20px);
    opacity: 0.2;
}

.comparison-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.comparison-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.comparison-note i {
    color: #FADA25;
    font-size: 1.2rem;
}

/* ===== FAQ ===== */
.cyber-faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.category-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #FADA25 0%, #E0A500 50%, #FFE55C 100%);
    color: #0A0A0F;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.category-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-icon {
    position: relative;
    font-size: 1.8rem;
    z-index: 2;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cyber-faq-item {
    position: relative;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(250, 218, 37, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.faq-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    opacity: 0;
    filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cyber-faq-item:hover .faq-glow {
    opacity: 0.2;
}

.cyber-faq-item:hover {
    border-color: #FADA25;
    transform: translateY(-2px);
}

.cyber-faq-item.active {
    border-color: #FADA25;
    box-shadow: 0 0 20px rgba(250, 218, 37, 0.5);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: rgba(250, 218, 37, 0.05);
}

.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    flex: 1;
    text-align: left;
}

.question-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FADA25;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.question-icon i {
    color: #0A0A0F;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.answer-content {
    padding: 0 2rem 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

.faq-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-container {
    position: relative;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 20px;
    padding: 4rem;
    border: 1px solid rgba(250, 218, 37, 0.2);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 218, 37, 0.3) 0%, rgba(0, 212, 255, 0.3) 100%);
    filter: blur(30px);
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .showcase-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 80px;
    }
    
    .timeline-item.timeline-reverse .timeline-content {
        margin-left: 80px;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .cyber-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-section-title {
        text-align: center;
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    /* Timeline móvil mejorado */
    .timeline-line {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        position: relative;
        z-index: 10;
    }
    
    .marker-core {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .marker-pulse {
        /* Mover el marker-pulse para que no interfiera con el contenido */
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid #FADA25;
        border-radius: 50%;
        opacity: 0;
        animation: markerPulse 2s ease-in-out infinite;
        z-index: 1;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 60px;
        margin-top: 1rem;
        position: relative;
        z-index: 2;
    }
    
    .timeline-item.timeline-reverse .timeline-content {
        margin-left: 60px;
        text-align: left;
    }
    
    .card-body {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .timeline-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cyber-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-pricing-card.featured {
        transform: none;
    }
    
    .cyber-pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    .cyber-showcase {
        padding: 2rem 1rem;
    }
    
    .timeline-final .final-container {
        padding: 2rem 1rem;
    }
    
    .pricing-header {
        padding: 2rem 1rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .faq-container {
        padding: 2rem 1rem;
    }
    
    /* Timeline extra pequeño */
    .timeline-marker {
        width: 50px;
        height: 50px;
        left: 15px;
    }
    
    .marker-core {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 50px;
    }
    
    .timeline-item.timeline-reverse .timeline-content {
        margin-left: 50px;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes gridItemAppear {
    0% { opacity: 0; transform: scale(0.8); }
    25% { opacity: 1; transform: scale(1); }
    75% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8); }
}

@keyframes hologramGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

@keyframes markerRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes markerPulse {
    0% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.3); }
    100% { opacity: 0; transform: scale(1.6); }
}

@keyframes badgePulse {
    0% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.2); }
}

@keyframes pricingScan {
    0% { left: -100%; }
    100% { left: 100%; }
}