/* ============================================
   PRICING PAGE STYLES - COMPLETO
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    padding-top: 80px;
    margin: 0;
    line-height: 1.6;
}

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

/* ============================================
   HERO SECTION
   ============================================ */

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.pricing-hero {
    background: #ffffff;
    padding: 140px 20px 80px 20px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin: 0 auto;
    line-height: 1.6;
    max-width: 700px;
}

/* ============================================
   BILLING TOGGLE SECTION
   ============================================ */

.comparison-section {
    padding: 40px 20px;
    background: #ffffff;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
}

.toggle-label.monthly {
    color: #06b6d4;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.savings-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
    margin-left: 8px;
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-cards-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.25);
    border-color: rgba(6, 182, 212, 0.3);
}

.pricing-card.featured {
    border-color: #06b6d4;
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.3);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 40px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #06b6d4;
    line-height: 1;
    transition: all 0.3s ease;
}

.price-period {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.plan-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
    min-height: 48px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #374151;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon i {
    font-size: 14px;
    color: #06b6d4;
}

.plan-button {
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-button.primary {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.plan-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.plan-button.secondary {
    background: transparent;
    color: #06b6d4;
    border: 2px solid #06b6d4;
}

.plan-button.secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-3px);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table-section {
    padding: 100px 20px;
    background: #f9fafb;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 182, 212, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.comparison-table th {
    padding: 24px 20px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}

.comparison-table th.feature-column {
    text-align: left;
    min-width: 250px;
}

.comparison-table th.highlight-column {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    position: relative;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    color: #374151;
    transition: all 0.3s ease;
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
}

.comparison-table td.feature-name i {
    color: #06b6d4;
    margin-right: 10px;
    font-size: 18px;
}

.comparison-table td.highlight-cell {
    background: rgba(6, 182, 212, 0.05);
    font-weight: 600;
    color: #06b6d4;
}

.comparison-table tbody tr {
    opacity: 0;
    transform: translateY(20px);
}

.comparison-table tbody tr.animate-in {
    animation: fadeInUp 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.comparison-table tbody tr:hover {
    background: rgba(6, 182, 212, 0.02);
}

.comparison-table tbody tr.highlighted {
    background: rgba(6, 182, 212, 0.05);
}

.comparison-table td.column-highlighted,
.comparison-table th.column-highlighted {
    background: rgba(6, 182, 212, 0.1);
}

.comparison-table i.check {
    color: #10b981;
    font-size: 24px;
}

.comparison-table i.lni-close {
    color: #ef4444;
    font-size: 20px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 100px 20px;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #06b6d4;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #06b6d4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-content {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 36px;
}

.cta-btn {
    padding: 18px 36px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1f2937;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

    .comparison-table-wrapper {
        position: relative;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .pricing-hero {
        padding: 120px 20px 80px 20px;
        min-height: 40vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .price-amount {
        font-size: 48px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .plan-name {
        font-size: 20px;
    }

    .price-amount {
        font-size: 42px;
    }

    .cta-title {
        font-size: 28px;
    }
}