/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d1b69;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 25%, #f8b500 50%, #ff6b9d 75%, #c44569 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

/* Countdown Banner */
.countdown-banner {
    background: linear-gradient(45deg, #ff1744, #e91e63, #ff6b9d);
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: pulse 2s infinite;
}

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

.countdown-text {
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.time-unit {
    background: rgba(255,255,255,0.2);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.time-unit span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.time-unit label {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,107,157,0.95) 0%, rgba(196,69,105,0.95) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-exclusive {
    background: linear-gradient(45deg, #ff1744, #ff6b9d);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.4);
    animation: bounce 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text .highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.feature-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.social-proof {
    margin-bottom: 35px;
}

.proof-numbers {
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 15px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.proof-numbers .number {
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
    margin-right: 10px;
}

.proof-numbers .text {
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Video Container */
.hero-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    background: #000;
}

.video-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0,0,0,0.4);
}

.video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 20, 147, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.play-button i {
    font-size: 24px;
    color: white;
    margin-left: 1px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2d1b69;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    text-decoration: none;
    display: inline-flex;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #ff6b9d;
    border: 2px solid #ff6b9d;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-3px);
}

.pulse {
    animation: pulse 2s infinite;
}

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

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #fce4ec 50%, #fff 100%);
    position: relative;
}

.benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 60px;
    font-weight: 500;
}

.gallery-subtitle {
    color: white !important;
}

.faq-subtitle {
    color: white !important;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.2);
    border-color: #ff6b9d;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: #ff6b9d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefit-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d1b69;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #512da8 50%, #2d1b69 100%);
    color: white;
    overflow: hidden;
}

.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-carousel {
    margin: 60px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    height: 650px;
}

.carousel-track {
    display: flex;
    gap: 25px;
    position: absolute;
    width: calc(300px * 12);
}

.carousel-track.top {
    top: 0;
    animation: scroll-fast 25s linear infinite;
}

.carousel-track.bottom {
    top: 320px;
    animation: scroll-slow 40s linear infinite;
}

@keyframes scroll-fast {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6 - 150px)); }
}

@keyframes scroll-slow {
    0% { transform: translateX(calc(-300px * 6 - 150px)); }
    100% { transform: translateX(0); }
}

.drama-card {
    min-width: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.drama-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
}

.drama-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.drama-info {
    padding: 20px;
    text-align: center;
}

.drama-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.rating {
    color: #ffd700;
    font-weight: 600;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.cta-gallery {
    text-align: center;
    margin-top: 60px;
}

.cta-subtitle {
    margin-top: 20px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ff6b9d 100%);
    color: white;
    position: relative;
    overflow: visible;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.countdown-pricing {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    overflow: visible;
}

.pricing-card {
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    color: #2d1b69;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.pricing-card.basic {
    position: relative;
    margin-top: 20px;
    padding-top: 70px;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid #ffd700;
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
    margin-top: 20px;
    padding-top: 70px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    margin-top: 20px;
    padding-top: 70px;
}

.popular-badge {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ff6b9d 100%);
    color: #fff;
    padding: 18px 20px;
    border-radius: 0 0 20px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 1.2;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    border-bottom: 3px solid #ffd700;
    transform: none;
    min-width: auto;
    backdrop-filter: none;
    white-space: normal;
    animation: badge-glow 3s ease-in-out infinite;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes badge-glow {
    0%, 100% { 
        background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ff6b9d 100%);
        border-bottom-color: #ffd700;
    }
    50% { 
        background: linear-gradient(135deg, #ff8fab 0%, #ff6b9d 50%, #ff8fab 100%);
        border-bottom-color: #ffed4e;
    }
}

.card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2d1b69;
}

.price {
    margin-bottom: 15px;
    position: relative;
}

.old-price {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    display: none;
}

.price-comparison {
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #e91e63;
    font-weight: 600;
    text-align: center;
    border: 2px solid #4caf50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b9d;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: #ff6b9d;
    line-height: 1;
}

.period {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b9d;
}

.price-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #2d1b69;
}

.features i {
    color: #4caf50;
    font-size: 1.1rem;
}

.tip {
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #1976d2;
    border-left: 4px solid #2196f3;
}

.guarantee {
    background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #fce4ec 50%, #fff 100%);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.2);
}

.testimonial-card .rating {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d1b69;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author strong {
    color: #ff6b9d;
    font-weight: 700;
}

.author span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d1b69 0%, #512da8 50%, #2d1b69 100%);
    color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.faq-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.faq-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d1b69 0%, #1a0e3a 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.security-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.security-badges span {
    background: #ffffff;
    color: #2d1b69;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(45, 27, 105, 0.4);
    border: 2px solid #ff6b9d;
    transition: all 0.3s ease;
    text-shadow: none;
}

.security-badges span:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(45, 27, 105, 0.6);
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    border-color: #2d1b69;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .hero-video {
        order: 1;
        margin-bottom: 30px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
         .pricing-card.featured {
         transform: none;
         margin-top: 20px;
         padding-top: 70px;
     }
     
     .pricing-card.basic {
         margin-top: 20px;
         padding-top: 70px;
     }
    
         .popular-badge {
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         z-index: 10;
         white-space: normal;
         font-size: 0.75rem;
         padding: 15px 15px;
         border-radius: 0 0 15px 15px;
         background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 50%, #ff6b9d 100%);
         color: #fff;
         font-weight: 700;
         box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
         text-transform: uppercase;
         letter-spacing: 0.8px;
         border-bottom: 2px solid #ffd700;
         text-align: center;
         line-height: 1.2;
         min-width: auto;
         backdrop-filter: none;
         animation: badge-glow 3s ease-in-out infinite;
         height: 50px;
         display: flex;
         align-items: center;
         justify-content: center;
     }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .security-badges {
        justify-content: center;
    }
    
    .countdown-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .pricing-header h2 {
        font-size: 2.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
}

/* Animações adicionais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Modal de Pagamento PIX */
.modal-pagamento {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px;
}

/* Loading */
.loading-container {
    text-align: center;
    padding: 40px 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b9d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Informações do pagamento */
.pagamento-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff, #e8f4fd);
    border-radius: 15px;
    border: 2px solid #e3f2fd;
}

.pagamento-info h4 {
    color: #2d1b69;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.valor-pagamento {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b9d;
    margin: 0;
}

/* QR Code */
.qr-code-container {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.qr-code-container img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-instrucoes {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

/* Código PIX */
.pix-copia-cola {
    margin-bottom: 30px;
}

.pix-copia-cola label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2d1b69;
    font-size: 1rem;
}

.codigo-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.codigo-container input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: #f8f9fa;
    color: #333;
    transition: border-color 0.3s ease;
}

.codigo-container input:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.btn-copiar {
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copiar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* Status do pagamento */
.status-pagamento {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff3e0, #fce4ec);
    border-radius: 15px;
    border: 2px solid #ffccbc;
}

.aguardando-pagamento {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ff6b9d;
    font-size: 1.1rem;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff6b9d;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.tempo-expiracao {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Erro */
.erro-container {
    text-align: center;
    padding: 40px 20px;
}

.erro-container i {
    font-size: 3rem;
    color: #ff5722;
    margin-bottom: 20px;
}

.erro-container h4 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.erro-container p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .qr-code-container img {
        max-width: 200px;
    }
    
    .codigo-container {
        flex-direction: column;
    }
    
    .codigo-container input {
        margin-bottom: 10px;
    }
    
    .btn-copiar {
        width: 100%;
    }
    
    .valor-pagamento {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 5px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .qr-code-container {
        padding: 20px 15px;
    }
    
    .qr-code-container img {
        max-width: 180px;
    }
}

/* Formulário de dados do cliente */
.form-cliente {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d1b69;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8f9fa;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    background: white;
}

.form-group input::placeholder {
    color: #999;
    font-weight: 400;
}

.btn-continuar {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-continuar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #ff5a8a, #b73e5e);
}

.btn-continuar:active {
    transform: translateY(0);
}

/* Responsividade do formulário */
@media (max-width: 768px) {
    .form-group input {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .btn-continuar {
        padding: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input {
        padding: 10px;
    }
    
    .btn-continuar {
        padding: 12px;
        font-size: 0.95rem;
    }
}
