/* ========================================
   PÁGINA DE PLANES - NODIOSAS.COM
   ======================================== */

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #5BCEFA 0%, #F5A9B8 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge i {
    color: #ffd700;
}


/* ===== PLANS SECTION ===== */
.plans-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plan-card.featured {
    border-color: #5BCEFA;
    transform: scale(1.05);
    background: linear-gradient(135deg, #5BCEFA 0%, #F5A9B8 100%);
    color: white;
}

.plan-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.plan-badge i {
    margin-right: 0.5rem;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #5BCEFA 0%, #F5A9B8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.plan-card.featured .plan-icon {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.plan-card.featured .plan-name {
    color: white;
}

.plan-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.plan-card.featured .plan-description {
    color: rgba(255,255,255,0.8);
}

.plan-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.plan-card.featured .currency {
    color: rgba(255,255,255,0.8);
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.plan-card.featured .amount {
    color: white;
}

.period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.plan-card.featured .period {
    color: rgba(255,255,255,0.8);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #555;
    font-size: 1rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: #28a745;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.plan-card.featured .plan-features li {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.1);
}

.plan-card.featured .plan-features i {
    color: #90EE90;
}

.btn-plan {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #5BCEFA 0%, #F5A9B8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(91, 206, 250, 0.3);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 206, 250, 0.4);
    color: white;
    text-decoration: none;
}

.btn-plan.featured {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-plan.featured:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #5BCEFA 0%, #F5A9B8 100%);
    color: white;
}

.comparison-header > div {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.comparison-header > div:last-child {
    border-right: none;
}

.feature-column {
    text-align: left !important;
}

.plan-column.featured {
    background: rgba(255,255,255,0.1);
    position: relative;
}

.plan-column.featured::after {
    content: '⭐';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-row > div:last-child {
    border-right: none;
}

.feature-name {
    text-align: left !important;
    font-weight: 500;
    color: #333;
    background: #f8f9fa;
}

.plan-value.featured {
    background: linear-gradient(135deg, rgba(91, 206, 250, 0.1) 0%, rgba(245, 169, 184, 0.1) 100%);
    font-weight: 600;
    color: #5BCEFA;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #5BCEFA 0%, #F5A9B8 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary.btn-large {
    background: white;
    color: #5BCEFA;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
    color: #5BCEFA;
    text-decoration: none;
}

.btn-secondary.btn-large {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-large:hover {
    background: rgba(255,255,255,0.3);
    color: white;
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .comparison-header > div:last-child,
    .comparison-row > div:last-child {
        border-bottom: none;
    }
    
    .feature-column,
    .feature-name {
        text-align: center !important;
        font-weight: 600;
        background: #f8f9fa;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}
