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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Elementos Flutuantes - Removidos (notificações fake e timer) */

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Animação de pulsamento intenso para todos os botões */
@keyframes buttonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 72, 87, 0.6);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 72, 87, 0);
    }
}

/* Aplicar pulsamento a todos os botões básicos */
button:not(.cta-button):not(.checkout-button):not(.method-tab),
.copy-button,
.pix-close,
.pix-help-button,
input[type="submit"],
input[type="button"],
.btn,
[role="button"] {
    animation: buttonPulse 2s ease-in-out infinite !important;
    transition: all 0.3s ease;
}

/* Pausar animação no hover e adicionar efeito especial */
button:hover,
.cta-button:hover,
.checkout-button:hover,
.method-tab:hover,
.copy-button:hover,
.pix-close:hover,
.pix-help-button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover,
[role="button"]:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 72, 87, 0.6);
}

/* Pulsamento muito intenso para botões CTA principais */
@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 72, 87, 0.8);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 0 0 20px rgba(255, 72, 87, 0);
    }
}

.cta-button.modern,
.cta-button.ultimate,
.cta-button.professional,
.checkout-button {
    animation: none;
}

/* Pulsamento médio para botões secundários */
@keyframes subtlePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 72, 87, 0.5);
    }
    50% { 
        transform: scale(1.04);
        box-shadow: 0 0 0 10px rgba(255, 72, 87, 0);
    }
}

.method-tab,
.copy-button,
.pix-close,
.pix-help-button {
    animation: none;
}

/* Delays aleatórios para criar efeito orgânico */
button:nth-child(1) { animation-delay: 0s; }
button:nth-child(2) { animation-delay: 0.5s; }
button:nth-child(3) { animation-delay: 1s; }
button:nth-child(4) { animation-delay: 1.5s; }
button:nth-child(5) { animation-delay: 2s; }

.cta-button:nth-of-type(1) { animation-delay: 0.2s; }
.cta-button:nth-of-type(2) { animation-delay: 0.8s; }
.cta-button:nth-of-type(3) { animation-delay: 1.4s; }

.method-tab:nth-child(1) { animation-delay: 0.3s; }
.method-tab:nth-child(2) { animation-delay: 0.9s; }

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 15px 0;
    border-bottom: 2px solid #ff4757;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.header-security {
    display: flex;
    align-items: center;
    color: #4ecdff;
    font-weight: 600;
    font-size: 14px;
}

.header-security i {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.hero::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><radialGradient id="g"><stop offset="20%" stop-color="%23ff4757" stop-opacity="0.1"/><stop offset="50%" stop-color="%23ff4757" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ff4757" stop-opacity="0"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)"/></svg>') center/cover;
    pointer-events: none;
}

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

.alert-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 71, 87, 0.5); }
    to { box-shadow: 0 0 30px rgba(255, 71, 87, 0.8); }
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle .highlight {
    color: #4ecdff;
    font-weight: 700;
}

.live-users {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    color: #ff4757;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin: 20px auto;
    display: inline-block;
    animation: pulse 3s infinite;
}

.timer-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    margin: 25px auto;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.video-container {
    margin: 40px auto;
    max-width: 600px;
}

.video-placeholder {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 2px solid #ff4757;
    border-radius: 15px;
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.video-placeholder i {
    font-size: 60px;
    color: #ff4757;
    margin-bottom: 15px;
}

.video-placeholder p {
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.video-placeholder span {
    color: #cccccc;
    font-size: 14px;
}

/* CTA Buttons */
.cta-section {
    margin: 40px 0;
}

.cta-button {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 15px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 71, 87, 0.6);
    background: linear-gradient(135deg, #ff3838, #ff2828);
}

.price-info {
    color: #4ecdff;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Testimonials - Ultra Modern Design */
.testimonials {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 71, 87, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(76, 205, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-badge i {
    font-size: 14px;
}

.testimonials .section-title {
    margin-bottom: 10px;
}

.testimonials .section-title .subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #4ecdff;
    margin-top: 10px;
    opacity: 0.8;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.8), rgba(26, 26, 26, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4757, #4ecdff, #ff4757);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 71, 87, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.featured {
    background: linear-gradient(145deg, rgba(255, 71, 87, 0.1), rgba(76, 205, 255, 0.05));
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.testimonial-card.featured::before {
    background: linear-gradient(90deg, #ffd700, #ff4757, #4ecdff, #ffd700);
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    padding: 6px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4757, #4ecdff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
}

.avatar::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar i {
    position: relative;
    z-index: 2;
}

.user-info {
    flex: 1;
}

.user-name {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.user-details {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffd700;
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4757, #4ecdff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.testimonial-content p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin-left: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 205, 255, 0.1);
    border: 1px solid rgba(76, 205, 255, 0.3);
    color: #4ecdff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.verified-badge i {
    font-size: 14px;
}

.privacy-guarantee {
    background: linear-gradient(135deg, rgba(76, 205, 255, 0.05), rgba(76, 205, 255, 0.02));
    border: 1px solid rgba(76, 205, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 60px auto 50px;
    max-width: 700px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.privacy-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 205, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(76, 205, 255, 0.3);
}

.privacy-content {
    flex: 1;
}

.privacy-content h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.privacy-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-badge {
    width: 40px;
    height: 40px;
    background: rgba(76, 205, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ecdff;
    font-size: 16px;
}

.cta-button.modern {
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 50%, #ff4757 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

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

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

@keyframes gradientShift {
    0% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    }
    25% {
        transform: scale(1.06);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6), 0 0 0 18px rgba(255, 71, 87, 0);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    }
    75% {
        transform: scale(1.06);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6), 0 0 0 18px rgba(255, 71, 87, 0);
    }
    100% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    }
}

.cta-button.modern i {
    font-size: 18px;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* How It Works - Ultra Modern Timeline */
.how-it-works {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(76, 205, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 71, 87, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-description {
    color: #999;
    font-size: 18px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #333, #666, #333);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #4ecdff, #ff4757, #ffd700);
    border-radius: 2px;
    animation: progressFill 3s ease-in-out infinite alternate;
}

@keyframes progressFill {
    0% { height: 0%; }
    100% { height: 100%; }
}

.timeline-step {
    position: relative;
    margin-bottom: 100px;
    opacity: 1;
    transform: translateZ(0);
    will-change: auto;
}

.timeline-step:nth-child(odd) .timeline-content {
    margin-right: 60%;
    text-align: right;
}

.timeline-step:nth-child(even) .timeline-content {
    margin-left: 60%;
    text-align: left;
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    z-index: 10;
}

.node-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4ecdff, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    position: relative;
    box-shadow: 
        0 0 30px rgba(76, 205, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.node-inner::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-inner i {
    position: relative;
    z-index: 2;
}

.node-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(76, 205, 255, 0.3);
    border-radius: 50%;
    opacity: 0.3;
}

.timeline-step.featured-step .node-inner {
    background: linear-gradient(135deg, #ffd700, #ff4757);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.timeline-step.featured-step .node-pulse {
    border-color: rgba(255, 215, 0, 0.5);
}

.content-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.9), rgba(26, 26, 26, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    will-change: transform;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4ecdff, #ff4757, #4ecdff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(76, 205, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.content-card:hover::before {
    opacity: 1;
}

.timeline-step.featured-step .content-card {
    background: linear-gradient(145deg, rgba(76, 205, 255, 0.1), rgba(255, 71, 87, 0.05));
    border: 1px solid rgba(76, 205, 255, 0.3);
}

.timeline-step.featured-step .content-card::before {
    background: linear-gradient(90deg, #ffd700, #ff4757, #4ecdff, #ffd700);
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 0;
    margin-bottom: 20px;
}

.step-badge {
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 205, 255, 0.3);
}

.step-badge.featured {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
}

.card-body {
    padding: 0 30px 30px;
}

.card-body h3 {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-body p {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.confidential-badge {
    background: rgba(76, 205, 255, 0.1);
    border: 1px solid rgba(76, 205, 255, 0.3);
    color: #4ecdff;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
}

.features-list, .report-features {
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #cccccc;
    font-size: 14px;
}

.feature-item i {
    color: #4ecdff;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.platform-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.platform-item:hover {
    background: rgba(76, 205, 255, 0.1);
    border-color: rgba(76, 205, 255, 0.3);
    transform: translateY(-3px);
}

.platform-item i {
    font-size: 24px;
    color: #4ecdff;
    margin-bottom: 8px;
    display: block;
}

.platform-item span {
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
}

.screenshot-placeholder {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px dashed rgba(76, 205, 255, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.screenshot-placeholder:hover {
    border-color: rgba(76, 205, 255, 0.5);
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #666;
    font-style: italic;
}

.placeholder-content i {
    font-size: 32px;
    color: #4ecdff;
    opacity: 0.5;
}

.process-summary {
    margin: 80px 0 60px;
    text-align: center;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #4ecdff, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #999;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Urgency - Ultra Modern Design */
.urgency {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 25%, #0a1a1a 75%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.urgency-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 71, 87, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(76, 205, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 71, 87, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particlesFloat 20s linear infinite;
}

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

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 71, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 205, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: orbsMove 15s ease-in-out infinite alternate;
}

@keyframes orbsMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -20px) scale(1.1); }
}

.urgency-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.1));
    border: 2px solid rgba(255, 71, 87, 0.5);
    color: #ff4757;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 71, 87, 0.6);
        transform: scale(1.05);
    }
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    color: #ffd700;
    font-weight: 600;
}

.timer-icon {
    font-size: 24px;
    animation: hourglassFlip 3s ease-in-out infinite;
}

@keyframes hourglassFlip {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.reason-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.9), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--card-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 0 50px var(--card-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card.critical {
    --card-color: #ff4757;
    --card-glow: rgba(255, 71, 87, 0.2);
    border-color: rgba(255, 71, 87, 0.3);
}

.reason-card.high {
    --card-color: #ff6b35;
    --card-glow: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.reason-card.medium {
    --card-color: #ffd700;
    --card-glow: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--card-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.reason-card:hover .card-glow {
    opacity: 1;
}

.reason-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.reason-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--card-color), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 900;
    position: relative;
    box-shadow: 0 8px 25px var(--card-glow);
}

.reason-number::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-number span {
    position: relative;
    z-index: 2;
}

.reason-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--card-color), rgba(255, 255, 255, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px var(--card-glow);
}

.urgency-level {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.urgency-level.critical {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    animation: criticalBlink 1.5s ease-in-out infinite;
}

.urgency-level.high {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.urgency-level.medium {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
}

@keyframes criticalBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.reason-content h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reason-content p {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.data-loss-indicator {
    margin-top: 20px;
}

.loss-bar {
    width: 100%;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.loss-progress {
    height: 100%;
    width: 23%;
    background: linear-gradient(90deg, #ff4757, #ff6b35);
    border-radius: 4px;
    animation: lossIncrease 3s ease-in-out infinite;
}

@keyframes lossIncrease {
    0% { width: 23%; }
    50% { width: 35%; }
    100% { width: 23%; }
}

.loss-text {
    color: #ff4757;
    font-size: 12px;
    font-weight: 600;
}

.loss-percentage {
    font-weight: 900;
    animation: percentageUpdate 3s ease-in-out infinite;
}

.health-metrics {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    font-size: 12px;
    font-weight: 600;
}

.metric i {
    font-size: 16px;
}

.price-comparison {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.old-price, .new-price {
    text-align: center;
}

.old-price .label, .new-price .label {
    display: block;
    font-size: 10px;
    color: #999;
    margin-bottom: 4px;
}

.old-price .value {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.new-price .value {
    color: #ffd700;
    font-weight: 900;
    font-size: 16px;
}

.arrow {
    color: #ffd700;
    font-size: 16px;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.emotional-scale {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.scale-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
}

.scale-item.negative {
    color: #ff4757;
}

.scale-item.positive {
    color: #4ecdff;
}

.scale-item i {
    font-size: 20px;
}

.scale-arrow {
    color: #ff6b35;
    font-size: 16px;
}

.urgency-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.action-required {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(145deg, rgba(255, 71, 87, 0.1), rgba(255, 71, 87, 0.05));
    border: 2px solid rgba(255, 71, 87, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    animation: actionPulse 2s ease-in-out infinite;
}

@keyframes actionPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(255, 71, 87, 0.8);
    }
}

.action-text h4 {
    color: white;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.action-text p {
    color: #cccccc;
    font-size: 14px;
}

.cta-button.ultimate {
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 50%, #ff4757 100%);
    background-size: 200% 200%;
    animation: ultimateGradient 3s ease infinite;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 71, 87, 0.5);
}

@keyframes ultimateGradient {
    0% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5);
    }
    25% {
        transform: scale(1.08);
        box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5), 0 0 0 25px rgba(255, 71, 87, 0);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5);
    }
    75% {
        transform: scale(1.08);
        box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5), 0 0 0 25px rgba(255, 71, 87, 0);
    }
    100% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5);
    }
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 71, 87, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cta-button.ultimate:hover .button-glow {
    opacity: 1;
}

.cta-button.ultimate:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 71, 87, 0.4),
        0 0 60px rgba(255, 71, 87, 0.6);
}

/* Social Proof - Professional Elegant Theme */
.social-proof {
    background: linear-gradient(135deg, #0d1b1d 0%, #250914 100%);
    position: relative;
    overflow: hidden;
}

.social-proof-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 71, 87, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(76, 205, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 71, 87, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particlesFloat 20s linear infinite;
}

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

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 71, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(76, 205, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: orbsMove 15s ease-in-out infinite alternate;
}

@keyframes orbsMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -20px) scale(1.1); }
}

.social-proof-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.authority-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 72, 87, 0.25), rgba(255, 72, 87, 0.15));
    border: 2px solid rgba(255, 72, 87, 0.6);
    color: #ff4857;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: authorityGlow 3s ease-in-out infinite;
}

@keyframes authorityGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 72, 87, 0.4);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 72, 87, 0.7);
    }
}

.metrics-dashboard {
    background: linear-gradient(145deg, rgba(45, 25, 30, 0.9), rgba(26, 16, 20, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 72, 87, 0.2);
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 72, 87, 0.1),
        0 0 60px rgba(255, 72, 87, 0.05);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.dashboard-title i {
    color: #ff4857;
    font-size: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff4857;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff4857;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.metric-card {
    background: linear-gradient(145deg, rgba(55, 55, 55, 0.8), rgba(35, 35, 35, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--metric-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-card.primary {
    --metric-color: linear-gradient(90deg, #ff4857, #ff3545);
}

.metric-card.success {
    --metric-color: linear-gradient(90deg, #ff4857, #ff6b7a);
}

.metric-card.info {
    --metric-color: linear-gradient(90deg, #ff4857, #ff2d47);
}

.metric-card.warning {
    --metric-color: linear-gradient(90deg, #ff4857, #ff5d6e);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: var(--metric-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.metric-content {
    flex: 1;
}

.metric-number {
    font-size: 36px;
    font-weight: 900;
    color: white;
    display: inline-block;
    margin-right: 5px;
}

.metric-suffix {
    font-size: 24px;
    font-weight: 700;
    color: #ff4857;
}

.metric-label {
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2ed573;
    font-size: 11px;
    font-weight: 600;
}

.metric-trend i {
    font-size: 12px;
}

.metric-chart {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: end;
    gap: 3px;
    padding: 15px;
    height: 60px;
}

.chart-bar {
    width: 4px;
    background: linear-gradient(180deg, #ff4857, #ff3545);
    border-radius: 2px;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from { height: 0%; }
    to { height: var(--bar-height, 100%); }
}

.accuracy-ring {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.accuracy-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: #333;
    stroke-width: 6;
}

.ring-progress {
    fill: none;
    stroke: #2ed573;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: ringFill 2s ease-out forwards;
}

@keyframes ringFill {
    to { stroke-dashoffset: calc(283 - (283 * 98.7) / 100); }
}

.ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.brazil-map {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3742fa, #2f3542);
    border-radius: 10px;
    position: relative;
}

.map-dots {
    position: absolute;
    inset: 10px;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff4857;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.4s; }
.dot:nth-child(3) { animation-delay: 0.8s; }
.dot:nth-child(4) { animation-delay: 1.2s; }
.dot:nth-child(5) { animation-delay: 1.6s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.metric-time {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.time-number {
    font-size: 28px;
    font-weight: 900;
    color: white;
}

.time-unit {
    font-size: 14px;
    color: #ffa502;
    font-weight: 600;
}

.speed-gauge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 25px;
}

.gauge-arc {
    width: 100%;
    height: 100%;
    border: 3px solid #333;
    border-bottom: none;
    border-radius: 50px 50px 0 0;
    position: relative;
}

.gauge-arc::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 60%;
    width: 30%;
    height: 3px;
    background: #ffa502;
    border-radius: 2px;
}

.gauge-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 20px;
    background: #ffa502;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(45deg);
    animation: needleMove 3s ease-in-out infinite alternate;
}

@keyframes needleMove {
    0% { transform: translateX(-50%) rotate(-30deg); }
    100% { transform: translateX(-50%) rotate(45deg); }
}

.credentials-section {
    margin-bottom: 60px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.credential-card {
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.9), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.credential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.credential-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.credential-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.credential-card.security .credential-icon {
    background: linear-gradient(135deg, #2ed573, #1abc9c);
}

.credential-card.statistics .credential-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.credential-title h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.credential-badge {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(46, 213, 115, 0.1);
}

.feature-item i {
    color: #4ecdff;
    font-size: 16px;
    width: 20px;
}

.feature-item span {
    color: #cccccc;
    font-size: 14px;
    flex: 1;
}

.feature-status.verified {
    color: #2ed573;
    font-size: 16px;
}

.stats-visualization {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.stat-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-item.positive .stat-circle {
    background: linear-gradient(135deg, #2ed573, #1abc9c);
}

.stat-item.negative .stat-circle {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.stat-percentage {
    color: white;
    font-size: 16px;
    font-weight: 900;
}

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

.stat-label {
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
}

.stat-result {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.additional-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.additional-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

.additional-stat i {
    color: #4ecdff;
    font-size: 16px;
    width: 20px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.5), rgba(26, 26, 26, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
}

.trust-item span {
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.cta-button.professional {
    background: linear-gradient(135deg, #4ecdff 0%, #45b7d1 50%, #4ecdff 100%);
    background-size: 200% 200%;
    animation: professionalGradient 4s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes professionalGradient {
    0% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(76, 205, 255, 0.6);
    }
    25% {
        transform: scale(1.06);
        box-shadow: 0 8px 25px rgba(76, 205, 255, 0.6), 0 0 0 18px rgba(76, 205, 255, 0);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(76, 205, 255, 0.6);
    }
    75% {
        transform: scale(1.06);
        box-shadow: 0 8px 25px rgba(76, 205, 255, 0.6), 0 0 0 18px rgba(76, 205, 255, 0);
    }
    100% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(76, 205, 255, 0.6);
    }
}

.button-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 80px 60px;
    animation: particlesMove 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button.professional:hover .button-particles {
    opacity: 1;
}

@keyframes particlesMove {
    0% { background-position: 0 0; }
    100% { background-position: 80px 60px; }
}

/* Novos estilos para seção simplificada */
.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-stats .stat-item {
    text-align: center;
}

.trust-stats .stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #ff4857;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 72, 87, 0.5);
}

.trust-stats .stat-label {
    color: #cccccc;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(45, 45, 45, 0.6), rgba(26, 26, 26, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 72, 87, 0.3);
}

.credential-item .credential-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4857, #ff3545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255, 72, 87, 0.3);
}

.credential-item .credential-text h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.credential-item .credential-text p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsividade para a nova estrutura */
@media (max-width: 768px) {
    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .trust-stats .stat-number {
        font-size: 36px;
    }
    
    .credentials-simple {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Payment - Harmonic Red Theme */
.payment {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0f 20%, #2a0a15 40%, #1a0a0f 60%, #2a0a15 80%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.payment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.security-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 72, 87, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 72, 87, 0.04) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255, 72, 87, 0.02) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 40px 40px;
    opacity: 0.6;
    transform: translateZ(0);
}

.payment-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(3px 3px at 40px 50px, rgba(255, 72, 87, 0.3), transparent),
        radial-gradient(2px 2px at 100px 30px, rgba(255, 72, 87, 0.25), transparent),
        radial-gradient(1px 1px at 160px 90px, rgba(255, 72, 87, 0.35), transparent),
        radial-gradient(2px 2px at 200px 60px, rgba(255, 72, 87, 0.2), transparent);
    background-repeat: repeat;
    background-size: 180px 120px;
    opacity: 0.7;
    transform: translateZ(0);
}

.payment-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 72, 87, 0.25), rgba(255, 72, 87, 0.15));
    border: 2px solid rgba(255, 72, 87, 0.6);
    color: #ff4857;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: none;
    box-shadow: 0 0 20px rgba(255, 72, 87, 0.4);
}

@keyframes securityPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 72, 87, 0.4);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 72, 87, 0.7);
    }
}

.security-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 72, 87, 0.1);
    border: 1px solid rgba(255, 72, 87, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 72, 87, 0.3);
}

.security-item i {
    color: #ff4857;
    font-size: 20px;
}

.security-item span {
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.product-summary {
    background: linear-gradient(145deg, rgba(45, 25, 30, 0.9), rgba(26, 16, 20, 0.95));
    border: 1px solid rgba(255, 72, 87, 0.2);
    border-radius: 25px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
    transform: translateZ(0);
    will-change: transform;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 72, 87, 0.1),
        0 0 60px rgba(255, 72, 87, 0.05);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4857, #ff3545);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(255, 72, 87, 0.4);
}

.product-info h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-badge {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.2s ease;
    transform: translateZ(0);
}

.benefit-item:hover {
    background: rgba(255, 72, 87, 0.1);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4857, #ff3545);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.benefit-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.benefit-desc {
    color: #999;
    font-size: 12px;
}

.pricing-card,
.dynamic-pricing-card {
    background: linear-gradient(145deg, rgba(255, 71, 87, 0.1), rgba(255, 71, 87, 0.05));
    border: 2px solid rgba(255, 71, 87, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
}

.dynamic-pricing-card {
    margin-top: 20px;
    transition: all 0.3s ease;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.discount-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    animation: discountPulse 2s ease-in-out infinite;
}

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

.timer-display {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffd700;
    font-size: 12px;
    font-weight: 600;
}

.timer-display i {
    animation: timerSpin 3s linear infinite;
}

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

.price-breakdown {
    text-align: center;
    margin-bottom: 20px;
}

.original-price {
    margin-bottom: 10px;
}

.price-label {
    display: block;
    color: #999;
    font-size: 12px;
    margin-bottom: 3px;
}

.original-price .price-value {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
}

.discount-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4757, transparent);
    margin: 15px 0;
}

.final-price {
    margin-bottom: 10px;
}

.final-price .price-value {
    color: #ff4757;
    font-size: 32px;
    font-weight: 900;
    display: block;
}

.payment-method-label {
    color: #4ecdff;
    font-size: 14px;
    font-weight: 600;
}

.installment-option {
    color: #cccccc;
    font-size: 14px;
}

.savings-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.checkout-form {
    background: linear-gradient(145deg, rgba(45, 25, 30, 0.9), rgba(26, 16, 20, 0.95));
    border: 1px solid rgba(255, 72, 87, 0.2);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 72, 87, 0.1),
        0 0 60px rgba(255, 72, 87, 0.05);
    isolation: isolate;
    transform: translateZ(0);
    will-change: auto;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.step span {
    width: 30px;
    height: 30px;
    background: #333;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step.active span {
    background: linear-gradient(135deg, #ff4857, #ff3545);
    color: white;
}

.step label {
    color: #999;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.step.active label {
    color: #ff4857;
}

.step-line {
    width: 30px;
    height: 2px;
    background: #333;
}

.method-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.method-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: none;
    transform: translateZ(0);
}

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

.method-tab:hover::before {
    left: 100%;
}

.method-tab.active {
    background: linear-gradient(145deg, rgba(255, 72, 87, 0.15), rgba(255, 72, 87, 0.08));
    border-color: rgba(255, 72, 87, 0.5);
    box-shadow: 0 8px 25px rgba(255, 72, 87, 0.3);
}

.tab-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff4857, #ff3545);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.tab-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.tab-subtitle {
    color: #999;
    font-size: 12px;
}

.tab-badge {
    color: #ffd700;
    font-size: 16px;
}

.form-section {
    margin-bottom: 30px;
    position: relative;
}

#cardSection {
    position: relative;
    z-index: 100;
}

.form-section h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #ff4857, #ff3545);
    border-radius: 2px;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group:has(.custom-dropdown) {
    z-index: 1000;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper:has(.custom-dropdown) {
    z-index: 1000;
}

.input-wrapper label {
    display: block;
    color: #cccccc;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 15px 45px 15px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: #ff4857;
    background: rgba(255, 72, 87, 0.1);
    box-shadow: 0 0 20px rgba(255, 72, 87, 0.3);
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    pointer-events: none;
}

.input-wrapper:focus-within .input-icon {
    color: #ff4857;
}

/* Discretion Notice - Ultra Confidential Design */
.discretion-notice {
    background: linear-gradient(145deg, rgba(76, 205, 255, 0.08), rgba(76, 205, 255, 0.04));
    border: 2px solid rgba(76, 205, 255, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 0;
}

.discretion-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 205, 255, 0.05), transparent);
    opacity: 0.5;
}

.discretion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.discretion-header i {
    color: #4ecdff;
    font-size: 20px;
    animation: none;
}

@keyframes discretionPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(76, 205, 255, 0.5));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(76, 205, 255, 0.8));
    }
}

.discretion-header h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.discretion-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.discretion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(76, 205, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid rgba(76, 205, 255, 0.3);
}

.discretion-item:hover {
    background: rgba(76, 205, 255, 0.1);
    transform: translateX(5px);
    border-left-color: rgba(76, 205, 255, 0.6);
}

.discretion-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 205, 255, 0.3);
}

.discretion-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.discretion-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.discretion-desc {
    color: #4ecdff;
    font-size: 12px;
    font-weight: 500;
}

.discretion-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.15), rgba(46, 213, 115, 0.08));
    border: 2px solid rgba(46, 213, 115, 0.4);
    border-radius: 15px;
    padding: 15px;
    color: #2ed573;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    position: relative;
    animation: none;
    box-shadow: 0 0 20px rgba(46, 213, 115, 0.3);
}

@keyframes discretionHighlight {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(46, 213, 115, 0.3);
    }
    50% { 
        box-shadow: 0 0 30px rgba(46, 213, 115, 0.6);
    }
}

.discretion-highlight i {
    font-size: 16px;
    animation: none;
}

@keyframes discretionShield {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsividade para a seção de discrição */
@media (max-width: 768px) {
    .discretion-notice {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .discretion-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .discretion-header h4 {
        font-size: 15px;
    }
    
    .discretion-item {
        padding: 12px;
        gap: 12px;
    }
    
    .discretion-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .discretion-title {
        font-size: 13px;
    }
    
    .discretion-desc {
        font-size: 11px;
    }
    
    .discretion-highlight {
        padding: 12px;
        font-size: 13px;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .discretion-notice {
        padding: 15px;
        border-radius: 15px;
    }
    
    .discretion-content {
        gap: 12px;
    }
    
    .discretion-item {
        padding: 10px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .discretion-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .discretion-title {
        font-size: 12px;
    }
    
    .discretion-desc {
        font-size: 10px;
    }
    
    .discretion-highlight {
        padding: 10px;
        font-size: 12px;
    }
}

.card-brand {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.security-guarantees {
    background: linear-gradient(145deg, rgba(255, 72, 87, 0.08), rgba(255, 72, 87, 0.04));
    border: 2px solid rgba(255, 72, 87, 0.3);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
}

.guarantees-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.guarantees-header i {
    color: #ff4857;
    font-size: 20px;
}

.guarantees-header h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(255, 72, 87, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 72, 87, 0.15);
}

.guarantee-item i {
    color: #ff4857;
    font-size: 18px;
}

.guarantee-item span {
    color: #cccccc;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.checkout-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #ff4757 0%, #ff3838 50%, #ff4757 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    animation: none;
    transform: translateZ(0);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

@keyframes checkoutGradient {
    0% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    }
    25% {
        transform: scale(1.07);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6), 0 0 0 22px rgba(255, 71, 87, 0);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    }
    75% {
        transform: scale(1.07);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6), 0 0 0 22px rgba(255, 71, 87, 0);
    }
    100% { 
        background-position: 0% 50%;
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    }
}

.checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.button-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.payment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timer-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
}

.trust-seals {
    display: flex;
    gap: 15px;
}

.seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    background: rgba(255, 72, 87, 0.1);
    border: 1px solid rgba(255, 72, 87, 0.3);
    border-radius: 8px;
}

.seal i {
    color: #ff4857;
    font-size: 16px;
}

.seal span {
    color: #cccccc;
    font-size: 10px;
    font-weight: 600;
}

/* Custom Dropdown - Ultra Modern Design */
.custom-dropdown {
    position: relative;
    width: 100%;
    z-index: auto;
}

.custom-dropdown.open {
    z-index: 100000;
}

.dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.dropdown-selected:hover::before {
    left: 100%;
}

.dropdown-selected:hover {
    border-color: rgba(255, 72, 87, 0.5);
    background: linear-gradient(145deg, rgba(255, 72, 87, 0.1), rgba(255, 72, 87, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 72, 87, 0.2);
}

.selected-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.selected-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selected-main i {
    color: #ff4857;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.selected-text {
    color: white;
    font-size: 16px;
    font-weight: 700;
}

.selected-sub {
    color: #4ecdff;
    font-size: 12px;
    font-weight: 600;
    background: rgba(76, 205, 255, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
    border: 1px solid rgba(76, 205, 255, 0.3);
}

.dropdown-arrow {
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
    color: #ff4857;
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(45, 25, 30, 0.98), rgba(26, 16, 20, 0.99));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 72, 87, 0.3);
    border-radius: 15px;
    margin-top: 5px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 72, 87, 0.1),
        inset 0 1px 0 rgba(255, 72, 87, 0.1);
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.custom-dropdown.open .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-option {
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 72, 87, 0.1), transparent);
    transition: left 0.4s ease;
}

.dropdown-option:hover::before {
    left: 100%;
}

.dropdown-option:hover {
    background: linear-gradient(145deg, rgba(255, 72, 87, 0.15), rgba(255, 72, 87, 0.08));
    transform: translateX(5px);
}

.dropdown-option.active {
    background: linear-gradient(145deg, rgba(255, 72, 87, 0.2), rgba(255, 72, 87, 0.1));
    border-left: 4px solid #ff4857;
}

.dropdown-option.popular {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    border-left: 4px solid #ff6b35;
}

.dropdown-option.popular:hover {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.25), rgba(255, 107, 53, 0.15));
}

.option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    position: relative;
    z-index: 2;
}

.option-main {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.option-main i {
    color: #ff4857;
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-option.popular .option-main i {
    color: #ff6b35;
}

.dropdown-option:hover .option-main i {
    transform: scale(1.2);
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.option-title {
    color: white;
    font-size: 15px;
    font-weight: 700;
}

.option-subtitle {
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

.option-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

.option-badge.best {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.option-badge.popular {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.option-badge i {
    font-size: 8px;
}

/* Scrollbar personalizada para o dropdown */
.dropdown-options::-webkit-scrollbar {
    width: 8px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 5px 0;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff4857, #ff3545);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff3545, #ff2535);
    cursor: pointer;
}

/* Animação de entrada das opções */
.custom-dropdown.open .dropdown-option {
    animation: slideInOption 0.3s ease forwards;
    opacity: 1;
}

.custom-dropdown.open .dropdown-option:nth-child(1) { animation-delay: 0.05s; }
.custom-dropdown.open .dropdown-option:nth-child(2) { animation-delay: 0.1s; }
.custom-dropdown.open .dropdown-option:nth-child(3) { animation-delay: 0.15s; }
.custom-dropdown.open .dropdown-option:nth-child(4) { animation-delay: 0.2s; }
.custom-dropdown.open .dropdown-option:nth-child(5) { animation-delay: 0.25s; }
.custom-dropdown.open .dropdown-option:nth-child(6) { animation-delay: 0.3s; }
.custom-dropdown.open .dropdown-option:nth-child(7) { animation-delay: 0.35s; }
.custom-dropdown.open .dropdown-option:nth-child(8) { animation-delay: 0.4s; }
.custom-dropdown.open .dropdown-option:nth-child(9) { animation-delay: 0.45s; }
.custom-dropdown.open .dropdown-option:nth-child(10) { animation-delay: 0.5s; }
.custom-dropdown.open .dropdown-option:nth-child(11) { animation-delay: 0.55s; }
.custom-dropdown.open .dropdown-option:nth-child(12) { animation-delay: 0.6s; }

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

/* Efeito de ripple ao clicar */
.dropdown-option {
    position: relative;
    overflow: hidden;
}

.dropdown-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 72, 87, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.dropdown-option.ripple::after {
    width: 200px;
    height: 200px;
}

/* Responsividade */
@media (max-width: 768px) {
    .dropdown-selected {
        padding: 12px 15px;
    }
    
    .selected-text {
        font-size: 14px;
    }
    
    .selected-sub {
        font-size: 11px;
        padding: 1px 6px;
    }
    
    .option-content {
        padding: 15px;
    }
    
    .option-title {
        font-size: 14px;
    }
    
    .option-subtitle {
        font-size: 11px;
    }
    
    .option-badge {
        font-size: 8px;
        padding: 3px 6px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    text-align: center;
    border: 2px solid #ff4757;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
    color: white;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.modal-content p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.special-offer {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.special-offer h3 {
    color: #ff4757;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.discount-price {
    margin: 15px 0;
}

.discount-price .old {
    color: #999;
    text-decoration: line-through;
    font-size: 16px;
}

.discount-price .new {
    color: #ff4757;
    font-size: 24px;
    font-weight: 900;
    display: block;
    margin-top: 5px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.accept-offer {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

.decline-offer {
    background: transparent;
    color: #999;
    border: 1px solid #333;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.decline-offer:hover {
    color: #cccccc;
    border-color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* PIX Modal - Ultra Modern Design */
.pix-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.pix-modal-content {
    background: linear-gradient(145deg, rgba(45, 25, 30, 0.95), rgba(26, 16, 20, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(76, 205, 255, 0.3);
    border-radius: 25px;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(76, 205, 255, 0.1),
        inset 0 1px 0 rgba(76, 205, 255, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(76, 205, 255, 0.2);
    background: linear-gradient(135deg, rgba(76, 205, 255, 0.1), rgba(76, 205, 255, 0.05));
}

.pix-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pix-title i {
    color: #4ecdff;
    font-size: 24px;
    animation: qrPulse 2s ease-in-out infinite;
}

@keyframes qrPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pix-title h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.pix-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pix-close:hover {
    background: rgba(255, 71, 87, 0.2);
    border-color: rgba(255, 71, 87, 0.5);
    color: #ff4857;
    transform: rotate(90deg);
}

.pix-body {
    padding: 30px;
}

.pix-amount {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(46, 213, 115, 0.05));
    border: 2px solid rgba(46, 213, 115, 0.3);
    border-radius: 15px;
}

.amount-label {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.amount-value {
    color: #2ed573;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(46, 213, 115, 0.5);
}

.amount-discount {
    color: #4ecdff;
    font-size: 12px;
    font-weight: 600;
}

.pix-qr-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #666;
}

.qr-placeholder i {
    font-size: 48px;
    animation: qrSpin 2s linear infinite;
}

@keyframes qrSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.qr-instructions {
    color: white;
}

.qr-instructions h4 {
    color: #4ecdff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qr-instructions ol {
    padding-left: 20px;
}

.qr-instructions li {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.pix-code-section {
    margin-bottom: 30px;
}

.code-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ecdff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.code-container {
    display: flex;
    gap: 10px;
    position: relative;
}

.pix-code-input {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 12px;
    font-family: monospace;
    resize: none;
}

.copy-button {
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.copy-button:hover {
    background: linear-gradient(135deg, #45b7d1, #3a9bc1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 205, 255, 0.4);
}

.copy-feedback {
    position: absolute;
    top: -40px;
    right: 0;
    background: linear-gradient(135deg, #2ed573, #1abc9c);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 5px;
    animation: feedbackSlide 0.3s ease;
}

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

.pix-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    margin-bottom: 30px;
}

.timer-icon i {
    color: #ff6b35;
    font-size: 20px;
    animation: timerTick 1s ease-in-out infinite;
}

@keyframes timerTick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.timer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.timer-text span:first-child {
    color: #999;
    font-size: 12px;
}

.timer-countdown {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 900;
    font-family: monospace;
}

.pix-security {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.pix-security .security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pix-security .security-item:hover {
    background: rgba(76, 205, 255, 0.1);
    transform: translateY(-3px);
}

.pix-security .security-item i {
    color: #4ecdff;
    font-size: 18px;
}

.pix-security .security-item span {
    color: #cccccc;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.pix-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.pix-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
}

.pix-status i {
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pix-help-button {
    background: transparent;
    border: 1px solid rgba(76, 205, 255, 0.3);
    border-radius: 20px;
    padding: 10px 20px;
    color: #4ecdff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pix-help-button:hover {
    background: rgba(76, 205, 255, 0.1);
    border-color: rgba(76, 205, 255, 0.5);
}

/* Responsividade do Modal PIX */
@media (max-width: 768px) {
    .pix-modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .pix-header {
        padding: 20px;
    }
    
    .pix-title h3 {
        font-size: 18px;
    }
    
    .pix-body {
        padding: 20px;
    }
    
    .pix-qr-section {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .amount-value {
        font-size: 28px;
    }
    
    .pix-security {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .pix-security .security-item {
        flex-direction: row;
        justify-content: center;
        padding: 10px;
    }
    
    .pix-footer {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .pix-modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .pix-header {
        padding: 15px;
    }
    
    .pix-body {
        padding: 15px;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
    
    .code-container {
        flex-direction: column;
    }
    
    .copy-button {
        justify-content: center;
    }
    
    .pix-timer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Responsividade */
@media (max-width: 1024px) and (min-width: 769px) {
    .testimonials-container {
        gap: 25px;
        max-width: 900px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .payment-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .privacy-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
        margin: 40px auto 30px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .testimonial-header {
        gap: 12px;
    }
    
    .user-name {
        font-size: 16px;
    }
    
    .testimonial-content p {
        font-size: 15px;
        margin-left: 15px;
    }
    
    .quote-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric-card {
        padding: 20px;
    }
    
    .metric-chart {
        display: none;
    }
    
    .accuracy-ring, .brazil-map, .speed-gauge {
        position: relative;
        top: auto;
        right: auto;
        margin: 15px auto 0;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .credential-card {
        padding: 25px;
    }
    
    .stats-visualization {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        justify-content: center;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-proof-header {
        margin-bottom: 40px;
    }
    
    .authority-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .timeline-container {
        padding: 20px 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-step:nth-child(odd) .timeline-content,
    .timeline-step:nth-child(even) .timeline-content {
        margin: 0;
        text-align: center;
    }
    
    .timeline-node {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 20px;
        width: 70px;
        height: 70px;
    }
    
    .node-inner {
        font-size: 24px;
    }
    
    .timeline-step {
        margin-bottom: 60px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 25px 0;
    }
    
    .card-body {
        padding: 0 25px 25px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .platform-item {
        padding: 12px 8px;
    }
    
    .platform-item i {
        font-size: 20px;
    }
    
    .platform-item span {
        font-size: 11px;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .how-it-works-header {
        margin-bottom: 50px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .urgency {
        min-height: auto;
        padding: 60px 0;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .reason-card {
        padding: 25px;
    }
    
    .reason-header {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .reason-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .reason-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .urgency-level {
        font-size: 9px;
        padding: 5px 10px;
    }
    
    .reason-content h3 {
        font-size: 18px;
    }
    
    .reason-content p {
        font-size: 14px;
    }
    
    .health-metrics {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .emotional-scale {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .scale-arrow {
        transform: rotate(90deg);
    }
    
    .action-required {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .action-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .action-text h4 {
        font-size: 18px;
    }
    
    .urgency-header {
        margin-bottom: 50px;
    }
    
    .alert-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .urgency-timer {
        flex-direction: column;
        gap: 10px;
    }
    
    .timer-icon {
        font-size: 20px;
    }
    
    .logo-img {
        height: 35px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
    
    .modal-buttons {
        gap: 10px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .testimonial-header .rating {
        align-self: flex-end;
    }
    
    .privacy-guarantee {
        padding: 20px;
        margin: 30px auto 25px;
    }
    
    .privacy-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .testimonials .section-title .subtitle {
        font-size: 14px;
    }
    
    .featured-badge {
        font-size: 9px;
        padding: 4px 12px;
    }
    
    .timeline-node {
        width: 60px;
        height: 60px;
    }
    
    .node-inner {
        font-size: 20px;
    }
    
    .card-header {
        padding: 15px 20px 0;
    }
    
    .card-body {
        padding: 0 20px 20px;
    }
    
    .card-body h3 {
        font-size: 18px;
    }
    
    .card-body p {
        font-size: 14px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .platform-item {
        padding: 15px 10px;
    }
    
    .confidential-badge {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .summary-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .step-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .reason-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .reason-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .reason-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .reason-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .urgency-level {
        font-size: 8px;
        padding: 4px 8px;
    }
    
    .reason-content h3 {
        font-size: 16px;
        text-align: center;
    }
    
    .reason-content p {
        font-size: 13px;
        text-align: center;
    }
    
    .data-loss-indicator {
        margin-top: 15px;
    }
    
    .loss-bar {
        height: 6px;
    }
    
    .loss-text {
        font-size: 11px;
    }
    
    .health-metrics {
        justify-content: center;
    }
    
    .metric {
        font-size: 11px;
    }
    
    .price-comparison {
        padding: 12px;
    }
    
    .old-price .value, .new-price .value {
        font-size: 12px;
    }
    
    .emotional-scale {
        padding: 12px;
    }
    
    .scale-item {
        font-size: 11px;
    }
    
    .scale-item i {
        font-size: 16px;
    }
    
    .action-required {
        padding: 15px;
    }
    
    .action-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .action-text h4 {
        font-size: 16px;
    }
    
    .action-text p {
        font-size: 12px;
    }
    
    .alert-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .urgency-timer {
        font-size: 14px;
    }
    
    .timer-icon {
        font-size: 18px;
    }
    
    .metrics-dashboard {
        padding: 20px;
        border-radius: 20px;
    }
    
    .dashboard-title {
        font-size: 16px;
    }
    
    .dashboard-title i {
        font-size: 18px;
    }
    
    .live-indicator {
        font-size: 11px;
    }
    
    .metric-card {
        padding: 18px;
        border-radius: 15px;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .metric-number {
        font-size: 28px;
    }
    
    .metric-suffix {
        font-size: 20px;
    }
    
    .metric-label {
        font-size: 11px;
    }
    
    .metric-trend {
        font-size: 10px;
    }
    
    .time-number {
        font-size: 24px;
    }
    
    .time-unit {
        font-size: 12px;
    }
    
    .accuracy-ring, .brazil-map {
        width: 50px;
        height: 50px;
    }
    
    .ring-text {
        font-size: 10px;
    }
    
    .credential-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .credential-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .credential-title h3 {
        font-size: 16px;
    }
    
    .credential-badge {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .stat-circle {
        width: 50px;
        height: 50px;
    }
    
    .stat-percentage {
        font-size: 14px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-result {
        font-size: 12px;
    }
    
    .additional-stat {
        font-size: 13px;
    }
    
    .trust-indicators {
        gap: 15px;
    }
    
    .trust-item {
        padding: 12px;
    }
    
    .trust-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .trust-item span {
        font-size: 11px;
    }
    
    .authority-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-summary {
        position: static;
        padding: 25px;
        border-radius: 20px;
    }
    
    .summary-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .product-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .product-info h3 {
        font-size: 16px;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .benefit-title {
        font-size: 13px;
    }
    
    .benefit-desc {
        font-size: 11px;
    }
    
    .pricing-card,
    .dynamic-pricing-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .final-price .price-value {
        font-size: 28px;
    }
    
    .checkout-form {
        padding: 25px;
        border-radius: 20px;
    }
    
    .form-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-header h3 {
        font-size: 18px;
    }
    
    .method-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .method-tab {
        padding: 15px;
    }
    
    .tab-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .tab-title {
        font-size: 14px;
    }
    
    .tab-subtitle {
        font-size: 11px;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .input-wrapper input,
    .input-wrapper select {
        padding: 12px 40px 12px 12px;
        font-size: 14px;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .guarantee-item {
        padding: 12px 8px;
    }
    
    .guarantee-item span {
        font-size: 10px;
    }
    
    .checkout-button {
        padding: 18px;
        font-size: 16px;
    }
    
    .payment-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .timer-warning {
        font-size: 13px;
    }
    
    .trust-seals {
        gap: 10px;
    }
    
    .seal {
        padding: 8px;
    }
    
    .security-indicators {
        gap: 15px;
    }
    
    .security-item {
        padding: 12px;
    }
    
    .security-item i {
        font-size: 18px;
    }
    
    .security-item span {
        font-size: 11px;
    }
    
    .security-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* ===== ESTILOS DO RODAPÉ ===== */
.footer-section {
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #330000 100%);
    color: white;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    border-radius: 10px;
}


.footer-description {
    color: #ccc;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #4ecdff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4ecdff;
    padding-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: #4ecdff;
    transform: translateX(5px);
}

.footer-column span {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-disclaimer-small {
    display: block;
    color: #666;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.8;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-copyright {
    color: #999;
}

.footer-security-badges {
    display: flex;
    gap: 1rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78, 205, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 255, 0.3);
    color: #4ecdff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== ESTILOS DO CHECKBOX DE TERMOS ===== */
.terms-agreement {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.9));
    border-radius: 12px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.agreement-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-wrapper:hover {
    border-color: rgba(78, 205, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    width: 100%;
}

#termsAgreement {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

#termsAgreement:checked + .checkbox-label .checkbox-custom {
    background: linear-gradient(135deg, #4ecdff, #45b7d1);
    border-color: #4ecdff;
    color: white;
}

.checkbox-custom i {
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#termsAgreement:checked + .checkbox-label .checkbox-custom i {
    opacity: 1;
}

.agreement-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.agreement-text span {
    color: #ccc;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 1.4;
}

.agreement-text a {
    color: #4ecdff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.agreement-text a:hover {
    color: #45b7d1;
    text-decoration: underline;
}

.agreement-text small {
    color: #999;
    font-size: 0.75rem;
    font-weight: 300;
}

.agreement-notice {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #999;
    font-size: 0.75rem;
    padding: 0.8rem;
    background: rgba(78, 205, 255, 0.05);
    border-radius: 8px;
    border-left: 2px solid rgba(78, 205, 255, 0.3);
}

.agreement-notice i {
    color: rgba(78, 205, 255, 0.7);
    font-size: 0.7rem;
}

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-security-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    
    .checkbox-wrapper {
        padding: 1rem 0.5rem;
    }
    
    .checkbox-label {
        gap: 0.5rem;
    }
    
    .agreement-text span {
        font-size: 0.9rem;
    }
}
