/* ============================================
   PÁGINA DE PLANOS - CSS UNIFICADO
   Estilos exclusivos para página de preços e planos
   ============================================ */

/* ========== HERO SECTION ========== */

.hero-pricing {
    background: linear-gradient(135deg, #1565c0 0%, #1e88e5 50%, #2ed8b6 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Grid tecnológico */
        linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
        /* Brilhos suaves */
        radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    background-size: 
        25px 25px,
        25px 25px,
        100% 100%,
        100% 100%;
    background-position: 
        0 0,
        0 0,
        0 0,
        0 0;
    pointer-events: none;
    animation: techGrid 25s linear infinite;
}

@keyframes techGrid {
    0% {
        background-position: 
            0 0,
            0 0,
            0 0,
            0 0;
    }
    100% {
        background-position: 
            80px 80px,
            80px 80px,
            0 0,
            0 0;
    }
}

.hero-pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Linhas diagonais tecnológicas */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 150px,
            rgba(255, 255, 255, 0.06) 150px,
            rgba(255, 255, 255, 0.06) 152px
        );
    pointer-events: none;
}

.hero-pricing .container {
    position: relative;
    z-index: 1;
}

/* Layout Two-Column Hero */
.hero-pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Conteúdo do Hero */
.hero-pricing-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-pricing-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.hero-pricing-content h1 .highlight-primary {
    color: #feca57;
}

.hero-pricing-content h1 .highlight-green {
    color: #2ed8b6;
}

.hero-pricing-content .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-pricing-content .hero-description strong {
    font-weight: 700;
    color: white;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta .btn-green {
    background: #2ed8b6;
    color: white;
    box-shadow: 0 4px 15px rgba(46, 216, 182, 0.4);
}

.hero-cta .btn-green:hover {
    background: #26c4a4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 216, 182, 0.5);
}

.hero-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-cta .btn-outline:hover {
    background: white;
    color: #1e88e5;
}

/* ========== ÁREA VISUAL - PRICING CARDS PREVIEW ========== */

.hero-pricing-visual {
    position: relative;
}

.visual-pricing-container {
    position: relative;
    perspective: 1000px;
}

.pricing-cards-mockup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotateY(-5deg);
    transition: transform 0.5s ease;
}

.pricing-cards-mockup:hover {
    transform: rotateY(0deg);
}

.pricing-cards-mockup__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-cards-mockup__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

.pricing-cards-mockup__subtitle {
    font-size: 0.95rem;
    color: #636e72;
}

.pricing-cards-mockup__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-card-preview {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-card-preview:hover {
    border-color: #2ed8b6;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 216, 182, 0.3);
}

.pricing-card-preview.featured {
    background: linear-gradient(135deg, #1e88e5 0%, #2ed8b6 100%);
    color: white;
    border-color: #feca57;
    position: relative;
}

.pricing-card-preview.featured::before {
    content: '⭐ POPULAR';
    position: absolute;
    top: -10px;
    right: 10px;
    background: #feca57;
    color: #2d3436;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
}

.pricing-card-preview__name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card-preview__price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-card-preview__price .currency {
    font-size: 1rem;
    font-weight: 600;
}

.pricing-card-preview__price .period {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-card-preview__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-preview__features li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pricing-card-preview__features li i {
    font-size: 0.7rem;
    color: #27ae60;
}

.pricing-card-preview.featured .pricing-card-preview__features li i {
    color: #feca57;
}

.pricing-cards-mockup__footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f9ff;
    color: #0284c7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0.25rem;
}

/* ========== TRUST INDICATORS ========== */

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item i {
    font-size: 1.5rem;
    color: #feca57;
}

.trust-item-content {
    text-align: left;
}

.trust-item-number {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.trust-item-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========== VALUE STRIP ========== */

.value-strip {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
}

.value-item-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.value-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 0.25rem;
}

.value-item-desc {
    font-size: 0.9rem;
    color: #636e72;
}

/* ========== SECTION HEADERS ========== */

.section-header h2 {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========== PRICING SECTION ========== */

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem auto;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 50px;
    min-width: 320px;
    max-width: 400px;
    box-shadow: var(--shadow-sm);
}

.toggle-option {
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-medium);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 44px;
}

.toggle-option.active {
    background: var(--primary-color);
    color: white;
}

.discount-badge {
    background: linear-gradient(45deg, #2ed8b6, #20c997);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.4rem;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(46, 216, 182, 0.3);
}

/* Container Expandido para Pricing */
.container-expanded {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Pricing Table Layout */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.pricing-card .price {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
    min-height: 4rem;
}

.pricing-card .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.pricing-card .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: font-size 0.3s ease;
    white-space: nowrap;
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--text-medium);
    white-space: nowrap;
}

.plan-desc {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.savings-note {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0.75rem auto;
    max-width: fit-content;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.pricing-card .features {
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card .features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.pricing-card .features i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card .btn.full-width {
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-card h3 {
    color: var(--text-dark) !important;
    font-weight: 800 !important;
}

.pricing-card .plan-desc {
    color: var(--text-medium) !important;
    font-weight: 500 !important;
}

.pricing-card .features li {
    color: var(--text-medium) !important;
    font-weight: 500 !important;
}

/* Custom Plan Section */
.custom-plan {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    text-align: center;
}

.custom-plan h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* ========== FEATURES SECTION ========== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.feature-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* ========== COMPARISON TABLE ========== */

.comparison-table {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    margin: 4rem 0;
}

.comparison-table th {
    font-weight: 700 !important;
    color: var(--text-dark) !important;
}

.comparison-table td {
    color: var(--text-medium) !important;
    font-weight: 500;
}

/* ========== COMPARISON TABLE ========== */

.comparison-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.table-header {
    background: linear-gradient(135deg, #1e88e5 0%, #2ed8b6 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.table-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.table-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.comparison-table-wrapper {
    padding: 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table thead th {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-dark);
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: 10;
}

.comparison-table thead th:first-child {
    text-align: left;
    padding-left: 2rem;
}

.comparison-table thead th.plan-vip {
    background: linear-gradient(135deg, #e3f2fd 0%, #b3e5fc 100%);
    position: relative;
    padding-top: 2.5rem !important;
}

.comparison-table thead th.plan-vip::before {
    content: '⭐ RECOMENDADO';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e88e5, #2ed8b6);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

.comparison-table tbody td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.comparison-table tbody td:first-child {
    text-align: left;
    padding-left: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Feature Category Headers */
.comparison-table tbody tr.category-row {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.comparison-table tbody tr.category-row td {
    padding: 1rem 2rem;
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary-color);
    text-align: left;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Icons */
.comparison-table .check-icon {
    color: #2ed8b6;
    font-size: 1.3rem;
}

.comparison-table .times-icon {
    color: #e74c3c;
    font-size: 1.3rem;
    opacity: 0.5;
}

.comparison-table .text-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Highlight VIP Column */
.comparison-table tbody td.vip-column {
    background: #e3f2fd;
}

.comparison-table tbody tr:hover td.vip-column {
    background: #bbdefb;
}

/* ========== FAQ SECTION ========== */

.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: all var(--transition-normal);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question h3 {
    color: var(--text-dark);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.7;
}

/* ========== URGENCY SECTION ========== */

.urgency-section {
    background: linear-gradient(45deg, #2ed8b6, #20c997);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    position: relative;
}

.urgency-section h2,
.urgency-section p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.urgency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    z-index: 1;
}

.urgency-section .container {
    position: relative;
    z-index: 2;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.25);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.countdown-number {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-item span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========== BARRA FIXA INFERIOR ========== */

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #feca57 0%, #ff6b6b 100%);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 9999;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUpIn 0.5s ease-out;
}

.sticky-bottom-bar.hidden {
    transform: translateY(100%);
    opacity: 0;
}

.sticky-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

.sticky-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.sticky-bar-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.sticky-bar-icon i {
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sticky-bar-text {
    flex: 1;
}

.sticky-bar-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.1rem;
}

.sticky-bar-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sticky-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-bar-timer {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-bar-timer span {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sticky-bar-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sticky-btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b6b;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sticky-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: white;
    color: #ff6b6b;
    text-decoration: none;
}

.sticky-btn-primary i {
    font-size: 0.8rem;
}

.sticky-btn-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.sticky-btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.sticky-btn-close i {
    font-size: 0.8rem;
}

/* ========== ANIMAÇÕES ========== */

@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1400px) {
    .container-expanded {
        max-width: 1200px;
        padding: 0 1.5rem;
    }
}

@media (max-width: 1200px) {
    .container-expanded {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .pricing-table {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-pricing-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-pricing-content h1 {
        font-size: 2.2rem;
    }

    .pricing-cards-mockup {
        transform: none;
    }

    .pricing-cards-mockup__grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .comparison-table-wrapper {
        padding: 1rem;
    }

    .comparison-table thead th {
        font-size: 0.95rem;
        padding: 1rem 0.75rem;
    }

    .comparison-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-pricing {
        padding: 6rem 0 4rem;
    }

    .hero-pricing-content h1 {
        font-size: 1.8rem;
    }

    .hero-pricing-content .hero-description {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .comparison-table thead th {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }

    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .comparison-table tbody td:first-child {
        padding-left: 1rem;
    }

    .comparison-table thead th:first-child {
        padding-left: 1rem;
    }

    .comparison-table .check-icon,
    .comparison-table .times-icon {
        font-size: 1.1rem;
    }

    .comparison-table tbody tr.category-row td {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
    }
    
    .value-items {
        gap: 1.5rem;
    }

    .value-item {
        flex: 1 1 calc(50% - 1.5rem);
        min-width: 140px;
    }
    
    .container-expanded {
        padding: 0 1rem;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-toggle {
        min-width: 300px;
        max-width: 350px;
    }
    
    .toggle-option {
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    
    .discount-badge {
        font-size: 0.73rem;
        padding: 0.22rem 0.55rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .sticky-bar-content {
        padding: 0.5rem 0;
    }
    
    .sticky-bar-icon {
        width: 40px;
        height: 40px;
    }
    
    .sticky-bar-title {
        font-size: 0.85rem;
    }
    
    .sticky-bar-subtitle {
        font-size: 0.75rem;
    }
    
    .sticky-bar-timer {
        padding: 0.4rem 0.6rem;
    }
    
    .sticky-bar-timer span {
        font-size: 0.8rem;
    }
    
    .sticky-btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .hero-pricing {
        padding: 5rem 0 4rem;
    }

    .hero-pricing-content h1 {
        font-size: 1.75rem;
    }

    .hero-pricing-content .hero-description {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .table-header {
        padding: 2rem 1rem;
    }

    .table-header h2 {
        font-size: 1.8rem;
    }

    .table-header p {
        font-size: 0.95rem;
    }

    .comparison-table thead th {
        font-size: 0.75rem;
        padding: 0.65rem 0.35rem;
    }

    .comparison-table tbody td {
        padding: 0.65rem 0.35rem;
        font-size: 0.8rem;
    }

    .comparison-table tbody td:first-child {
        padding-left: 0.75rem;
        font-size: 0.75rem;
    }

    .comparison-table thead th:first-child {
        padding-left: 0.75rem;
    }

    .comparison-table thead th.plan-vip::before {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        top: -8px;
    }

    .comparison-table tbody tr.category-row td {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .pricing-toggle {
        min-width: 280px;
        max-width: 320px;
        gap: 0.25rem;
    }
    
    .toggle-option {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        margin-left: 0.3rem;
    }
    
    .urgency-section {
        padding: 3rem 1rem;
    }
    
    .urgency-section h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .sticky-bar-content {
        gap: 0.5rem;
    }
    
    .sticky-bar-left {
        gap: 0.5rem;
    }
    
    .sticky-bar-right {
        gap: 0.5rem;
    }
    
    .sticky-bar-timer {
        display: none;
    }
    
    .sticky-btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .sticky-btn-primary span {
        display: none;
    }
}
