/* ============================================
   PACK GRÁFICA COMPLETO - STYLES.CSS
   ============================================
   Paleta de cores baseada na imagem:
   - Azul neon: #00d4ff, #0099ff, #2572ff
   - Roxo: #7b2cbf, #9d4edd
   - Dourado: #ffd700, #ffb700
   - Laranja: #ff6b35, #f7931e
   - Verde: #00c853, #64dd17
   - Rosa: #ff1744, #e032a6
   - Fundo escuro: #0a0a0a, #1a1a2e
   ============================================ */

/* ============================================
   1. RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --color-primary: #2572ff;
    --color-primary-light: #00d4ff;
    --color-secondary: #e032a6;
    --color-accent: #ffd700;
    
    /* Cores dos cards */
    --color-orange: #ff6b35;
    --color-blue: #2572ff;
    --color-green: #00c853;
    --color-purple: #9d4edd;
    --color-pink: #ff1744;
    --color-cyan: #00d4ff;
    
    /* Cores de fundo */
    --bg-dark: #0a0a0a;
    --bg-dark-light: #1a1a2e;
    --bg-card: rgba(255, 255, 255, 0.05);
    
    /* Cores de texto */
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --text-dark: #1a1a2e;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    --gradient-blue: linear-gradient(135deg, #00d4ff 0%, #2572ff 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    
    /* Sombras */
    --shadow-glow: 0 0 30px rgba(37, 114, 255, 0.5);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    
    /* Fontes */
    --font-title: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;
    --font-btn: 'Poppins', sans-serif;
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   2. TIPOGRAFIA
   ============================================ */
.section-tag {
    display: inline-block;
    background: var(--gradient-blue);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-success {
    color: var(--color-green);
    font-weight: 700;
}

/* ============================================
   3. BOTÕES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-btn);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(37, 114, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}

.btn-pulse {
    animation: pulse-scale 1.5s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 114, 255, 0.4); }
    50% { box-shadow: 0 0 40px rgba(37, 114, 255, 0.8); }
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

/* Efeito de partículas no fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(224, 50, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    color: var(--color-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid var(--color-orange);
}

.hero-title {
    font-family: var(--font-title);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.number-highlight {
    font-family: var(--font-title);
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-list {
    list-style: none;
    margin-bottom: 30px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.hero-list i {
    color: var(--color-green);
    font-size: 1.2rem;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.guarantee i {
    color: var(--color-green);
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-blue);
    border-radius: 30px;
    opacity: 0.3;
    filter: blur(40px);
    z-index: 1;
    animation: glow-pulse 3s infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--color-accent);
    z-index: 3;
    box-shadow: var(--shadow-card);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.price-new {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--color-accent);
}

/* Scroll down indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-down i {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   5. BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 100px 0;
    background: var(--bg-dark-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--card-color);
}

/* Cores específicas dos cards */
.card-orange { --card-color: var(--color-orange); }
.card-blue { --card-color: var(--color-blue); }
.card-green { --card-color: var(--color-green); }
.card-purple { --card-color: var(--color-purple); }
.card-pink { --card-color: var(--color-pink); }
.card-cyan { --card-color: var(--color-cyan); }

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--card-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   6. INCLUDES SECTION
   ============================================ */
.includes {
    padding: 100px 0;
    background: var(--bg-dark);
}

.includes-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.includes-content {
    animation: fadeInLeft 1s ease;
}

.includes-list {
    margin: 40px 0;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

.include-item:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.item-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.item-text {
    flex: 1;
}

.item-text h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.item-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.item-count {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.includes-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.includes-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.highlight-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    animation: float 3s ease-in-out infinite;
}

.highlight-number {
    font-family: var(--font-title);
    font-size: 3rem;
    display: block;
}

.highlight-text {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   7. TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-dark-light);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   8. OFFER SECTION
   ============================================ */
.offer {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(0, 200, 83, 0.1) 0%, transparent 40%);
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 23, 68, 0.2);
    color: var(--color-pink);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 1px solid var(--color-pink);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.offer-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.price-old {
    text-align: center;
}

.price-old .price-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.price-old .price-value {
    font-size: 2rem;
    text-decoration: line-through;
    color: var(--text-gray);
}

.price-arrow {
    font-size: 2rem;
    color: var(--color-green);
}

.price-new {
    text-align: center;
}

.price-new .price-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-new .price-value {
    font-family: var(--font-title);
    font-size: 4rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-installment {
    display: block;
    color: var(--color-green);
    font-weight: 700;
    margin-top: 10px;
}

/* Countdown */
.countdown {
    margin: 40px 0;
}

.countdown-label {
    display: block;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.time-box {
    background: var(--bg-dark);
    padding: 20px;
    border-radius: 15px;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-value {
    display: block;
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--color-accent);
}

.time-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.time-separator {
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: 700;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.badge-item i {
    color: var(--color-green);
    font-size: 1.2rem;
}

/* ============================================
   9. FAQ SECTION
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--bg-dark-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary-light);
}

.faq-question i {
    transition: transform var(--transition-fast);
    color: var(--color-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   10. FINAL CTA
   ============================================ */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(37, 114, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-title);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-small {
    margin-top: 30px;
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-small i {
    color: var(--color-green);
}

/* ============================================
   11. FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary-light);
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-title);
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links a,
.footer-contact a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary-light);
}

/* ============================================
   12. RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-list {
        display: inline-block;
        text-align: left;
    }
    
    .guarantee {
        justify-content: center;
    }
    
    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .includes-wrapper {
        grid-template-columns: 1fr;
    }
    
    .includes-image {
        order: -1;
    }
    
    .highlight-card {
        right: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .number-highlight {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing {
        flex-direction: column;
    }
    
    .price-arrow {
        transform: rotate(90deg);
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-box {
        min-width: 60px;
        padding: 15px;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .offer-card {
        padding: 40px 20px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   13. ANIMAÇÕES EXTRAS
   ============================================ */
.fade-in {
    animation: fadeIn 1s ease;
}

.slide-up {
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* ============================================
   CRÉDITO DO DESENVOLVEDOR - ADV-LORD
   Com foto de perfil do WhatsApp
   ============================================ */

/* Container principal */
.dev-credit {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

/* Estado minimizado */
.dev-credit.minimized .dev-content {
    transform: translateX(calc(100% + 60px));
    opacity: 0;
    pointer-events: none;
}

.dev-credit.minimized .dev-toggle {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    animation: pulse-whatsapp 2s infinite;
}

/* Botão de toggle */
.dev-toggle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
    border: 3px solid #25d366;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.dev-toggle:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
        transform: scale(1.1);
    }
}

/* Conteúdo do crédito */
.dev-content {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    padding: 12px 20px 12px 15px;
    border-radius: 60px;
    border: 2px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 211, 102, 0.1);
    backdrop-filter: blur(10px);
    margin-right: 65px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(0);
    opacity: 1;
}

/* FOTO DE PERFIL DO WHATSAPP */
.dev-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dev-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.dev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Indicador online */
.dev-avatar::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #25d366;
    border: 2px solid #1a1a2e;
    border-radius: 50%;
    animation: pulse-online 2s infinite;
}

@keyframes pulse-online {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Informações do desenvolvedor */
.dev-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.dev-label {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dev-name {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff 0%, #2572ff 50%, #e032a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.dev-role {
    font-size: 0.75rem;
    color: #25d366;
    font-weight: 600;
}

/* Botão WhatsApp */
.dev-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-left: 5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.dev-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.dev-whatsapp i {
    font-size: 1.2rem;
}

/* Animação de entrada */
.dev-credit {
    animation: slideInDev 0.8s ease 1s both;
}

@keyframes slideInDev {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

/* Tooltip */
.dev-credit::before {
    content: '💻 Desenvolvedor';
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid #25d366;
}

.dev-credit:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
    .dev-credit {
        bottom: 15px;
        right: 15px;
    }
    
    .dev-content {
        padding: 10px 15px 10px 12px;
        margin-right: 55px;
        gap: 12px;
    }
    
    .dev-avatar {
        width: 45px;
        height: 45px;
    }
    
    .dev-name {
        font-size: 1rem;
    }
    
    .dev-role {
        font-size: 0.7rem;
    }
    
    .dev-whatsapp {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .dev-whatsapp-text {
        display: none; /* Esconde texto em mobile, mostra só ícone */
    }
    
    .dev-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .dev-credit {
        transform: scale(0.85);
        transform-origin: bottom right;
    }
}

.section-header {
    text-align: center;
}

    :root {
            --primary: #2572ff;
            --primary-dark: #1a5fd9;
            --success: #00c853;
            --success-dark: #00a344;
            --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --white: #ffffff;
            --shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: var(--bg-gradient);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .thankyou-container {
            background: var(--white);
            border-radius: 24px;
            padding: 60px 40px;
            max-width: 600px;
            width: 100%;
            text-align: center;
            box-shadow: var(--shadow);
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #00c853 0%, #00a344 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: scaleIn 0.5s ease-out 0.3s both;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        .success-icon i {
            font-size: 40px;
            color: var(--white);
        }

        .thankyou-title {
            font-family: 'Fredoka One', cursive;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .thankyou-title span {
            color: var(--success);
        }

        .thankyou-message {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .arrow-container {
            margin: 30px 0;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-15px);
            }
            60% {
                transform: translateY(-7px);
            }
        }

        .arrow-container i {
            font-size: 3rem;
            color: var(--primary);
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            padding: 20px 50px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
            }
            50% {
                box-shadow: 0 10px 40px rgba(0, 200, 83, 0.6);
            }
            100% {
                box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
            }
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 200, 83, 0.5);
        }

        .download-btn i {
            font-size: 1.4rem;
        }

        .support-text {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
            font-size: 0.95rem;
            color: #888;
        }

        .support-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        .support-text a:hover {
            text-decoration: underline;
        }

        /* Responsivo */
        @media (max-width: 480px) {
            .thankyou-container {
                padding: 40px 25px;
            }

            .thankyou-title {
                font-size: 2rem;
            }

            .thankyou-message {
                font-size: 1rem;
            }

            .download-btn {
                font-size: 1.1rem;
                padding: 18px 35px;
                width: 100%;
                justify-content: center;
            }
        }
