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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            overflow-x: hidden;
        }

        /* Countdown Bar */
        .countdown-bar {
            background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .countdown-text {
            font-size: 1.1em;
            font-weight: 600;
        }

        .countdown-timer {
            display: flex;
            gap: 20px;
        }

        .countdown-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 15px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .countdown-number {
            font-size: 1.8em;
            font-weight: 800;
            display: block;
            line-height: 1;
        }

        .countdown-label {
            font-size: 0.75em;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .countdown-cta {
            background: #fbbf24;
            color: #1e293b;
            padding: 10px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .countdown-cta:hover {
            background: #f59e0b;
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0d9488 0%, #1e40af 50%, #7c3aed 100%);
            background-size: 200% 200%;
            color: white;
            padding: 100px 20px 120px;
            position: relative;
            overflow: hidden;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        /* PartÃ­culas animadas no fundo */
        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: particleFloat 20s infinite;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }

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

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        h1 {
            font-size: 3.5em;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            min-height: 1.2em;
        }

        /* Cursor piscante para o typewriter */
        .typewriter-cursor {
            display: inline-block;
            width: 3px;
            height: 1em;
            background: white;
            margin-left: 5px;
            animation: blink 1s infinite;
            vertical-align: baseline;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .hero h2 {
            font-size: 1.4em;
            font-weight: 400;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background: #ef4444;
            color: white;
            padding: 18px 45px;
            font-size: 1.2em;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            background: #dc2626;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
        }

        .cta-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        .cta-button.secondary {
            background: #fbbf24;
            color: #1e293b;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
        }

        .cta-button.secondary:hover {
            background: #f59e0b;
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95em;
        }

        /* Stats Section */
        .stats-section {
            background: #0c4a6e;
            color: white;
            padding: 40px 20px;
        }

        .stats-grid {
            margin-top: 17%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-item.animate {
            opacity: 1;
            transform: translateY(0);
            animation: numberPop 0.6s ease;
        }

        .stat-number {
            font-size: 3em;
            font-weight: 800;
            color: #fbbf24;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        @keyframes numberPop {
            0% { transform: scale(0.5); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .stat-label {
            font-size: 1.1em;
            opacity: 0.9;
        }

        /* Problem Section */
        .problem-section {
            padding: 100px 20px;
            background: #f0fdfa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2em;
            color: #64748b;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.2s;
        }

        .section-subtitle.animate {
            opacity: 1;
            transform: translateY(0);
        }

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

        .comparison-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
        }

        .comparison-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .comparison-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .comparison-card.highlight {
            background: linear-gradient(135deg, #0d9488 0%, #1e40af 100%);
            color: white;
            box-shadow: 0 8px 30px rgba(13, 148, 136, 0.3);
        }

        .card-icon {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .card-title {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Templates Section with Tabs */
        .templates-section {
            padding: 100px 20px;
            background: white;
        }

        .templates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .template-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }

        .template-card.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .template-card.template-hidden {
            display: none;
        }

        .template-card.template-hidden.show {
            display: block;
            animation: fadeInUp 0.5s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .template-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 12px 40px rgba(0,0,0,0.2);
        }

        .template-image-wrapper {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .template-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .template-card:hover .template-image {
            transform: scale(1.1);
        }

        .template-category {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75em;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .template-info {
            padding: 20px;
        }

        .template-name {
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1e293b;
        }

        .template-type {
            color: #0d9488;
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .template-demo-btn {
            display: inline-block;
            padding: 10px 20px;
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9em;
            transition: all 0.3s ease;
            text-align: center;
            width: 100%;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
        }

        .template-demo-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
            background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
        }

        /* Load More Button */
        .templates-load-more-container {
            text-align: center;
            margin-top: 50px;
        }

        .load-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(13, 148, 136, 0.4);
            background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
        }

        .load-more-btn:active {
            transform: translateY(-1px);
        }

        .load-more-btn .btn-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .load-more-btn.expanded .btn-icon {
            transform: rotate(180deg);
        }

        /* CTA Mid Section */
        .cta-mid-section {
            background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
            padding: 80px 20px;
            text-align: center;
            color: white;
        }

        .cta-mid-section h2 {
            font-size: 2.5em;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-mid-section p {
            font-size: 1.3em;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        /* Features Detailed */
        .features-detailed {
            padding: 100px 20px;
            background: #eff6ff;
        }

        .features-detailed-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .feature-detailed-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .feature-detailed-item.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .feature-icon-large {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0d9488 0%, #1e40af 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .feature-detailed-item:hover .feature-icon-large {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
        }

        .feature-content h3 {
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1e293b;
        }

        .feature-content p {
            color: #64748b;
            line-height: 1.8;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 100px 20px;
            background: white;
        }

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

        .benefit-card {
            background: #f8fafc;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px) rotateX(10deg);
        }

        .benefit-card.animate {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }

        .benefit-card:hover {
            background: white;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            transform: translateY(-10px) scale(1.05);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0d9488 0%, #1e40af 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            transition: all 0.4s ease;
        }

        .benefit-icon svg {
            width: 30px;
            height: 30px;
            fill: currentColor;
        }

        .benefit-card:hover .benefit-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .benefit-title {
            font-size: 1.1em;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1e293b;
        }

        .benefit-desc {
            color: #64748b;
            font-size: 0.95em;
        }

        /* Price Highlight */
        .price-highlight {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            padding: 50px;
            border-radius: 12px;
            text-align: center;
            margin-top: 60px;
            box-shadow: 0 8px 30px rgba(251, 191, 36, 0.3);
        }

        .price-highlight h3 {
            font-size: 2em;
            color: #1e293b;
            margin-bottom: 15px;
        }

        .price-highlight p {
            font-size: 1.3em;
            color: #374151;
            margin-bottom: 30px;
        }

        /* Social Proof Section */
        .social-proof-section {
            padding: 80px 20px;
            background: #f0f9ff;
            text-align: center;
        }

        .social-proof-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .proof-item {
            text-align: center;
        }

        .proof-number {
            font-size: 3.5em;
            font-weight: 800;
            color: #0d9488;
            display: block;
            margin-bottom: 10px;
        }

        .proof-label {
            font-size: 1.1em;
            color: #64748b;
            font-weight: 600;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 20px;
            background: white;
        }

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

        .testimonial-card {
            background: #f7fafc;
            padding: 35px;
            border-radius: 12px;
            border-left: 4px solid #0d9488;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateX(-30px);
        }

        .testimonial-card.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-card:hover {
            background: white;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            transform: translateY(-8px) translateX(5px);
            border-left-width: 6px;
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .testimonial-text {
            color: #4b5563;
            margin-bottom: 20px;
            font-style: italic;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 700;
            color: #1e293b;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 20px;
            background: #fefce8;
        }

        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 25px;
            font-size: 1.2em;
            font-weight: 700;
            color: #1e293b;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #fef3c7;
        }

        .faq-answer {
            padding: 0 25px 25px;
            color: #64748b;
            line-height: 1.8;
        }

        /* Comparison Table */
        .table-section {
            padding: 100px 20px;
            background: #f0fdfa;
        }

        .comparison-table {
            max-width: 1200px;
            margin: 50px auto 0;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0,0,0,0.12);
        }

        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .comparison-table th {
            padding: 30px 25px;
            text-align: left;
            background: linear-gradient(135deg, #0d9488 0%, #1e40af 100%);
            color: white;
            font-weight: 700;
            font-size: 1.2em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .comparison-table th:first-child {
            border-radius: 16px 0 0 0;
        }

        .comparison-table th:last-child {
            border-radius: 0 16px 0 0;
        }

        .comparison-table td {
            padding: 28px 25px;
            text-align: left;
            border-bottom: 2px solid #f1f5f9;
            font-size: 1.1em;
            color: #334155;
            transition: all 0.3s ease;
        }

        .comparison-table tr:hover td {
            background: #f8fafc;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .highlight-row {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            font-weight: 700;
            color: #065f46;
        }

        .comparison-table .highlight-row:hover td {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        }

        .comparison-table .method-name {
            font-size: 1.15em;
            font-weight: 700;
            color: #1e293b;
        }

        .comparison-table .highlight-row .method-name {
            color: #065f46;
        }

        .comparison-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            width: 24px;
            height: 24px;
            vertical-align: middle;
        }

        .comparison-icon svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .comparison-table .bad {
            color: #dc2626;
        }

        .comparison-table .good {
            color: #059669;
            font-weight: 700;
        }

        /* Final CTA */
        .final-cta {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #ec4899 100%);
            background-size: 200% 200%;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: gradientShift 20s ease infinite;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }

        .final-cta::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            animation: float 12s ease-in-out infinite reverse;
        }

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

        .final-cta h2 {
            font-size: 3.5em;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease;
        }

        .final-cta .subtitle {
            font-size: 1.4em;
            margin-bottom: 50px;
            opacity: 0.95;
            font-weight: 300;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .price-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            margin: 50px 0;
        }

        .price-box {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
            padding: 50px 80px;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .price-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .price-label {
            font-size: 1.1em;
            opacity: 0.9;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .price {
            font-size: 5.5em;
            font-weight: 900;
            margin-bottom: 15px;
            line-height: 1;
            text-shadow: 0 4px 15px rgba(0,0,0,0.2);
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-old {
            font-size: 2em;
            text-decoration: line-through;
            opacity: 0.6;
            margin-bottom: 10px;
        }

        .price-desc {
            font-size: 1.2em;
            opacity: 0.95;
            font-weight: 500;
            margin-top: 10px;
        }

        .price-savings {
            display: inline-block;
            background: #fbbf24;
            color: #1e293b;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9em;
            font-weight: 700;
            margin-top: 15px;
            animation: pulse 2s infinite;
        }

        .final-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1e293b;
            padding: 25px 70px;
            font-size: 1.5em;
            font-weight: 800;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(251, 191, 36, 0.5), 0 0 0 0 rgba(251, 191, 36, 0.7);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInUp 0.8s ease 0.6s both, buttonPulse 3s infinite;
            z-index: 1;
        }

        .final-cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }

        .final-cta-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .final-cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 50px rgba(251, 191, 36, 0.6), 0 0 0 10px rgba(251, 191, 36, 0.1);
        }

        .final-cta-button:active {
            transform: translateY(-2px) scale(1.02);
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(251, 191, 36, 0.5), 0 0 0 0 rgba(251, 191, 36, 0.7);
            }
            50% {
                box-shadow: 0 10px 40px rgba(251, 191, 36, 0.5), 0 0 0 15px rgba(251, 191, 36, 0);
            }
        }

        .guarantee-section {
            margin-top: 60px;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .guarantee-title {
            font-size: 1.2em;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 600;
        }

        .guarantee-badges {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .guarantee-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 1em;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .guarantee-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .guarantee-icon {
            font-size: 1.5em;
        }

        .social-proof-cta {
            margin-top: 40px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease 1s both;
        }

        .social-proof-text {
            font-size: 1.1em;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .social-proof-number {
            font-size: 1.8em;
            font-weight: 800;
            color: #fbbf24;
        }

        /* Payment Methods Section */
        .payment-section {
            background: #f8fafc;
            padding: 60px 20px;
            border-top: 1px solid #e5e7eb;
        }

        .payment-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .payment-title {
            font-size: 1.3em;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 30px;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .payment-method {
            background: white;
            padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .payment-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-color: #0d9488;
        }

        .payment-icon {
            font-size: 2em;
            font-weight: 700;
        }

        .payment-name {
            font-size: 1.1em;
            font-weight: 600;
            color: #1e293b;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 80px 20px 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .footer-main {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
            text-align: left;
        }

        .footer-column h3 {
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 20px;
            color: #0d9488;
        }

        .footer-column p,
        .footer-column a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 0.95em;
        }

        .footer-column a:hover {
            color: #0d9488;
            transform: translateX(5px);
        }

        .whatsapp-btn-footer {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #25d366 0%, #1fb855 100%);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            position: relative;
            overflow: hidden;
        }

        .whatsapp-btn-footer::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .whatsapp-btn-footer:hover::before {
            width: 300px;
            height: 300px;
        }

        .whatsapp-btn-footer:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-icon {
            width: 28px;
            height: 28px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-icon svg {
            width: 18px;
            height: 18px;
            fill: #25d366;
        }

        @keyframes pulse-whatsapp {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: #0d9488;
            transform: translateY(-5px) rotate(5deg);
        }

        .social-link svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            margin: 10px 0;
            font-size: 0.95em;
        }

        .footer-tagline {
            font-size: 1.2em;
            font-weight: 600;
            margin-top: 20px;
            background: linear-gradient(135deg, #0d9488 0%, #1e40af 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .countdown-bar {
                flex-direction: column;
                gap: 20px;
            }

            .countdown-timer {
                gap: 15px;
            }

            .countdown-item {
                padding: 6px 12px;
            }

            .countdown-number {
                font-size: 1.5em;
            }

            h1 {
                font-size: 2.2em;
            }

            .hero h2 {
                font-size: 1.1em;
            }

            .hero {
                padding: 60px 20px 80px;
            }

            .section-title {
                font-size: 2em;
            }

            .final-cta h2 {
                font-size: 2.2em;
            }

            .final-cta .subtitle {
                font-size: 1.1em;
            }

            .price {
                font-size: 3.5em;
            }

            .price-box {
                padding: 35px 50px;
            }

            .final-cta-button {
                font-size: 1.2em;
                padding: 20px 40px;
            }

            .guarantee-badges {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .guarantee-item {
                padding: 15px 20px;
                font-size: 0.9em;
            }

            .trust-badges,
            .guarantee-badges {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .payment-methods {
                gap: 15px;
            }

            .payment-method {
                padding: 15px 20px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-column {
                text-align: center;
            }

            .whatsapp-btn-footer {
                padding: 15px 30px;
                font-size: 1em;
            }

            .features-detailed-grid {
                grid-template-columns: 1fr;
            }

            .cta-mid-section h2 {
                font-size: 1.8em;
            }

            .cta-mid-section p {
                font-size: 1.1em;
            }

            .templates-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }

            .load-more-btn {
                padding: 14px 30px;
                font-size: 1em;
                width: 100%;
                max-width: 300px;
            }

            .comparison-table {
                overflow-x: auto;
            }

            .comparison-table table {
                min-width: 600px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 20px 15px;
                font-size: 0.95em;
            }
        }
