/* obrigado-arraia - page-specific styles */

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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 25%, #2c5530 75%, #4a7c59 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container {
            max-width: 800px;
            margin: 20px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
            color: white;
            text-align: center;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.1) 10px,
                rgba(255, 255, 255, 0.1) 20px
            );
            animation: confetti 3s linear infinite;
        }

        @keyframes confetti {
            0% { transform: translateX(-100px) translateY(-100px); }
            100% { transform: translateX(100px) translateY(100px); }
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .header p {
            font-size: 1.2rem;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        .content {
            padding: 50px 30px;
            text-align: center;
        }

        .success-icon {
            font-size: 4rem;
            color: #28a745;
            margin-bottom: 30px;
            animation: bounce 1s ease-in-out infinite alternate;
        }

        @keyframes bounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-10px); }
        }

        .main-title {
            font-size: 2.2rem;
            color: #2c5530;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .subtitle {
            font-size: 1.3rem;
            color: #ff6b35;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #555;
        }

        .next-steps {
            background: linear-gradient(135deg, #fff8f0 0%, #f0f8ff 100%);
            border: 3px solid #ff6b35;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            position: relative;
        }

        .next-steps::before {
            content: '📱';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 0 15px;
            font-size: 2rem;
        }

        .next-steps h3 {
            color: #2c5530;
            font-size: 1.5rem;
            margin-bottom: 20px;
            margin-top: 10px;
        }

        .steps-list {
            text-align: left;
            max-width: 500px;
            margin: 0 auto;
        }

        .step {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .step-number {
            background: #ff6b35;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .whatsapp-cta {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            padding: 20px 40px;
            font-size: 1.4rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            display: inline-block;
            margin: 30px 0;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .whatsapp-cta:hover::before {
            left: 100%;
        }

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

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .benefits {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
        }

        .benefits h3 {
            color: #2c5530;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

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

        .benefit-item {
            display: flex;
            align-items: center;
            font-size: 1rem;
        }

        .benefit-icon {
            font-size: 1.5rem;
            margin-right: 10px;
        }

        .urgency {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            0% { box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4); }
            100% { box-shadow: 0 10px 40px rgba(255, 107, 53, 0.8); }
        }

        .footer {
            background: #2c5530;
            color: white;
            text-align: center;
            padding: 30px;
        }

        .footer p {
            margin-bottom: 10px;
        }

        .social-proof {
            background: rgba(44, 85, 48, 0.1);
            border-left: 4px solid #2c5530;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }

        .social-proof .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 10px;
        }

        .social-proof .author {
            font-weight: bold;
            color: #2c5530;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .container {
                margin: 10px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .header p {
                font-size: 1rem;
            }

            .main-title {
                font-size: 1.8rem;
            }

            .subtitle {
                font-size: 1.1rem;
            }

            .content {
                padding: 30px 20px;
            }

            .whatsapp-cta {
                padding: 18px 30px;
                font-size: 1.2rem;
            }

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

            .steps-list {
                text-align: center;
            }

            .step {
                justify-content: center;
            }
        }