/* arraia-coracao-em-dia - page-specific styles */

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

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
        }

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

        /* Contador Regressivo */
        .countdown-section {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            padding: 15px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .countdown-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: rgba(255,255,255,0.2);
            padding: 10px 15px;
            border-radius: 8px;
            min-width: 80px;
        }

        .countdown-number {
            font-size: 24px;
            font-weight: 800;
            display: block;
        }

        .countdown-label {
            font-size: 12px;
            text-transform: uppercase;
        }

        /* Hero Section */
        .hero-section {
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #FF6B35, #F7931E);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-left {
            text-align: center;
        }

        .arraia-logo {
            max-width: 65%;
            margin: -115px 0 0 0;
        }

        .benefits-list {
            list-style: none;
            margin-top: 20px;
        }

        .benefits-list li {
            color: white;
            font-size: 18px;
            font-weight: 600;
            margin: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .benefits-list li::before {
            content: '❤️';
            font-size: 20px;
        }

        .hero-right {
            text-align: center;
        }

        .product-image {
            max-width: 28%;
            margin: -31px -40px 19px -40px;
        }

        .cta-button {
            background: green;
            color: white;
            border: none;
            padding: 20px 40px;
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 10px;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            background: #006600;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Offers Section */
        .offers-section {
            background: white;
            padding: 50px 0;
            text-align: center;
        }

        .section-title {
            color: #F41011;
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

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

        .offer-card {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
        }

        .offer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .offer-image {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px auto;
            display: block;
        }

        .offer-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .offer-price {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .offer-installments {
            font-size: 16px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .offer-original-price {
            text-decoration: line-through;
            font-size: 18px;
            opacity: 0.7;
            margin-bottom: 15px;
        }

        .offer-benefits {
            list-style: none;
            margin-bottom: 20px;
        }

        .offer-benefits li {
            margin: 8px 0;
            font-size: 14px;
        }

        .offer-benefits li::before {
            content: '✓ ';
            color: #90EE90;
            font-weight: bold;
        }

        .offer-button {
            background: white;
            color: #FF6B35;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .offer-button:hover {
            background: #f0f0f0;
            transform: scale(1.05);
        }

        /* Info Sections */
        .info-section {
            padding: 50px 0;
        }

        .info-section.gray {
            background: #E2E2E2;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .info-text {
            font-size: 20px;
            color: #000;
            text-align: center;
        }

        .info-image {
            text-align: center;
        }

        .info-image img {
            max-width: 100%;
            height: auto;
        }

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

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

        .benefit-icon {
            width: 50%;
            margin-bottom: 15px;
        }

        .benefit-title {
            color: #000;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.3;
        }

        /* Complications Grid */
        .complications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

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

        .complication-icon {
            width: 54%;
            border-radius: 50%;
            margin-bottom: 15px;
        }

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

        .testimonial-video {
            aspect-ratio: 16/9;
            border-radius: 10px;
            overflow: hidden;
        }

        .testimonial-video iframe {
            width: 100%;
            height: 100%;
        }

        /* FAQ Section */
        .faq-section {
            background: #E2E2E2;
            padding: 50px 0;
        }

        .faq-item {
            background: white;
            margin-bottom: 10px;
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            background: #F41011;
            color: white;
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 25px;
            background: #ECEFF0;
            display: none;
        }

        .faq-answer.active {
            display: block;
        }

        /* Footer */
        .footer {
            background: #000;
            color: white;
            padding: 50px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: white;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .footer-section a {
            color: #62D8FF;
            text-decoration: none;
            font-size: 12px;
            display: block;
            margin-bottom: 5px;
        }

        .footer-section img {
            max-width: 85%;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .arraia-logo {
                max-width: 80%;
                margin: -54px 0 -45px 0;
            }

            .product-image {
                max-width: 40%;
                margin: -24px 0 0 0;
            }

            .benefits-list {
                display: none;
            }

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

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

            .countdown-timer {
                gap: 10px;
            }

            .countdown-item {
                min-width: 60px;
                padding: 8px 10px;
            }

            .countdown-number {
                font-size: 20px;
            }

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

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Pulse animation for CTA buttons */
        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
            }
            50% {
                box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
            }
        }

        .cta-button.pulse {
            animation: pulseGlow 2s infinite;
        }