/* ==========================================
   DESIGN: PLAYFUL MODERNISM
   - Clean geometry with playful elements
   - Vibrant colors: coral, turquoise, yellow
   - Bold Poppins typography
   ========================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --color-primary: #FF6B6B;
    --color-secondary: #4ECDC4;
    --color-accent: #FFE66D;
    --color-purple: #6C5CE7;
    
    /* Cores de texto */
    --color-text: #2D3436;
    --color-text-light: #636E72;
    --color-white: #FFFFFF;
    --color-background: #FAFAFA;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Bordas */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Formas decorativas */
.shape-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.shape-1 {
    width: 16rem;
    height: 16rem;
    background: var(--color-primary);
    top: 5rem;
    right: -8rem;
    filter: blur(80px);
}

.shape-2 {
    width: 24rem;
    height: 24rem;
    background: var(--color-secondary);
    top: 37.5rem;
    left: -12rem;
    filter: blur(80px);
}

.shape-3 {
    width: 20rem;
    height: 20rem;
    background: var(--color-accent);
    top: 75rem;
    right: 0;
    filter: blur(80px);
}

/* Badges */
.badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.badge-secondary {
    background: rgba(78, 205, 196, 0.2);
    color: var(--color-secondary);
}

.badge-accent {
    background: rgba(255, 230, 109, 0.3);
    color: var(--color-text);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-white);
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

.btn-cta {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    animation: pulse-subtle 2s ease-in-out infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* Animações */
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

.fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    padding: 5rem 0 8rem;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-accent {
    color: var(--color-text);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
}

.avatars {
    display: flex;
    margin-left: -0.5rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: 2px solid var(--color-background);
    margin-left: -0.5rem;
}

.avatar {
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.social-text p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.social-text strong {
    color: var(--color-text);
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    z-index: 10;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.image-container:hover {
    transform: rotate(0deg);
}

.image-container img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.decorative-1 {
    width: 6rem;
    height: 6rem;
    background: var(--color-accent);
    top: -1.5rem;
    right: -1.5rem;
    animation: pulse-subtle 2s ease-in-out infinite;
}

.decorative-2 {
    width: 8rem;
    height: 8rem;
    background: var(--color-secondary);
    bottom: -1.5rem;
    left: -1.5rem;
    animation: float 3s ease-in-out infinite;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */
.benefits-section {
    padding: 5rem 0;
    background: var(--color-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 42rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--color-white);
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    background: rgba(255, 107, 107, 0.1);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    padding-top: 0.5rem;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.problem-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.problem-list {
    margin: 2rem 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    background: var(--color-primary);
    color: var(--color-white);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.problem-item p {
    font-size: 1.125rem;
    color: var(--color-text);
}

.solution-box {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 107, 107, 0.2);
    margin-top: 2rem;
}

.solution-box p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

.highlight {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* ==========================================
   GAMES SECTION
   ========================================== */
.games-section {
    padding: 5rem 0;
    background: var(--color-background);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--color-white);
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.game-card:nth-child(1) { animation-delay: 0s; }
.game-card:nth-child(2) { animation-delay: 0.1s; }
.game-card:nth-child(3) { animation-delay: 0.2s; }
.game-card:nth-child(4) { animation-delay: 0.3s; }
.game-card:nth-child(5) { animation-delay: 0.4s; }
.game-card:nth-child(6) { animation-delay: 0.5s; }
.game-card:nth-child(7) { animation-delay: 0.6s; }
.game-card:nth-child(8) { animation-delay: 0.7s; }
.game-card:nth-child(9) { animation-delay: 0.8s; }
.game-card:nth-child(10) { animation-delay: 0.9s; }

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

.game-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.game-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #F5F5F5;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-info {
    padding: 1rem;
}

.game-number {
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.game-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

/* ==========================================
   BONUS SECTION
   ========================================== */
.bonus-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.1), rgba(255, 107, 107, 0.1));
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 62.5rem;
    margin: 0 auto;
}

.bonus-card {
    background: var(--color-white);
    border: 2px solid rgba(255, 230, 109, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.bonus-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #F5F5F5;
    margin-bottom: 1rem;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.bonus-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--color-white);
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .stars {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #E8E8E8;
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMzRjMC0yLjIxLTEuNzktNC00LTRzLTQgMS43OS00IDQgMS43OSA0IDQgNCA0LTEuNzkgNC00em0wLTEwYzAtMi4yMS0xLjc5LTQtNC00cy00IDEuNzktNCA0IDEuNzkgNCA0IDQgNC0xLjc5IDQtNHptMC0xMGMwLTIuMjEtMS43OS00LTQtNHMtNCAxLjc5LTQgNCAxLjc5IDQgNCA0IDQtMS43OSA0LTR6Ii8+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

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

.old-price {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-value {
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--color-white);
}

.price-cents {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.payment-info {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.price-divider {
    width: 1px;
    height: 5rem;
    background: rgba(255, 255, 255, 0.2);
    display: none;
}

.price-features {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.feature-item .check {
    font-weight: bold;
}

.security-info {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 3rem 0;
    background: rgba(45, 52, 54, 0.03);
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .price-box {
        flex-direction: row;
        justify-content: center;
    }
    
    .price-divider {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 3.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 0 5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
}
