/* ==========================================
   PLANES DE SOPORTE - CSS ESPECÍFICO
   ========================================== */

/* Hero Section */
.plans-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 106, 0, 0.1));
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.plans-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 106, 0, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-weight: 500;
}

.feature-item i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--color-dark);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #c0c0c0;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.2);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 40px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 106, 0, 0.2);
}

.plan-icon i {
    font-size: 2rem;
    color: var(--color-primary);
}

.plan-name {
    font-size: 1.8rem;
    color: var(--color-text);
    margin-bottom: 5px;
    font-weight: 700;
}

.plan-subtitle {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: #aaa;
}

.plan-consult {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    padding: 5px 15px;
    border: 2px solid var(--color-primary);
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Plan Features */
.plan-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.feature i {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature span {
    color: #e0e0e0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Plan Action */
.plan-action {
    text-align: center;
}

.plan-btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    width: 100%;
    max-width: 250px;
}

.plan-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

.plan-note {
    color: #aaa;
    font-size: 0.85rem;
    margin: 0;
}

/* Included Services */
.included-services {
    padding: 100px 0;
    background: rgba(15, 15, 15, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(25, 25, 25, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.2);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 106, 0, 0.5);
}

.service-item h3 {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 15px;
}

.service-item p {
    color: #c0c0c0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(0, 0, 0, 0.9));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: var(--color-primary);
    color: white;
}

.btn.primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

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

.btn.secondary:hover {
    background: rgba(255, 106, 0, 0.1);
    border-color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
    margin-top: 80px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    width: 100%;
}

.footer-brand h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.2;
}

.footer-brand .brand-highlight {
    color: #FF6A00;
}

.footer-brand p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 35px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 50%;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
}

.footer-section {
    width: 100%;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FF6A00, rgba(255, 106, 0, 0.5));
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.5;
    padding: 2px 0;
}

.footer-section ul li a:hover {
    color: #FF6A00;
    padding-left: 5px;
}

.footer-section ul li i {
    color: #FF6A00;
    width: 18px;
    font-size: 0.9rem;
    margin-right: 8px;
    display: inline-block;
}

.footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    color: #bbbbbb;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: #FF6A00;
}

.footer-bottom-links span {
    color: #777777;
    font-weight: 300;
}

/* Footer Responsive */
@media (max-width: 1240px) {
    .footer .container {
        padding: 0 30px;
    }
    
    .footer-content {
        max-width: 100%;
        gap: 60px;
    }
    
    .footer-links {
        gap: 50px;
    }
    
    .footer-bottom-content {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        max-width: 900px;
    }
    
    .footer-brand {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .footer .container {
        padding: 0 20px;
    }
    
    .footer-content {
        padding: 60px 0 40px;
        gap: 50px;
        max-width: 100%;
    }
    
    .footer-brand h3 {
        font-size: 2.2rem;
    }
    
    .footer-brand p {
        font-size: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 350px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 50px 0 30px;
        gap: 40px;
    }
    
    .footer-brand h3 {
        font-size: 2rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-section ul li a {
        text-align: center;
        padding-left: 0;
        font-size: 0.9rem;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
        transform: translateX(5px);
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}