/* ===== VARIÁVEIS CSS ===== */
:root {
    --bg-dark: #121212;
    --bg-graphite: #1a1a1a;
    --text-white: #ffffff;
    --text-offwhite: #f0f0f0;
    --accent-orange: #ff6b35;
    --accent-red: #d32f2f;
    --accent-gold: #ffd700;
    --gray-light: #e0e0e0;
    --gray-medium: #9e9e9e;
    --gray-dark: #424242;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* ===== RESET E ESTILOS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* ===== HEADER COM CONTADOR ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.logo span {
    color: var(--accent-red);
}

.urgency-counter {
    display: flex;
    align-items: center;
    background-color: rgba(211, 47, 47, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--accent-red);
    animation: pulse-red 2s infinite;
}

.counter-icon {
    margin-right: 8px;
    color: var(--accent-red);
}

.counter-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.counter-number {
    color: var(--accent-red);
    font-weight: 700;
    margin-left: 5px;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(211, 47, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-graphite) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-red));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.urgency-badge i {
    margin-right: 8px;
}

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

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-headline .highlight {
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.hero-subhead {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-offwhite);
    font-weight: 500;
}

.hero-subhead .accent {
    color: var(--accent-orange);
    font-weight: 600;
}

.hero-gancho {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
    box-shadow: var(--box-shadow);
}

.hero-visual {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dossier-icon {
    width: 150px;
    height: 150px;
    background-color: var(--bg-graphite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.dossier-icon i {
    font-size: 4rem;
    color: var(--accent-orange);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    animation: pulse-ring 3s linear infinite;
}

.pulse-ring.ring-2 {
    animation-delay: 1.5s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

.hero-seal {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.hero-seal i {
    margin-right: 10px;
    color: var(--accent-orange);
}

.cta-container {
    margin: 2.5rem 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-red));
    color: white;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    font-size: 1.3rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    margin-bottom: 1rem;
    animation: pulse 2s infinite, shake 5s infinite;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes shake {
    0%, 90%, 100% {
        transform: translateX(0);
    }
    92%, 96% {
        transform: translateX(-3px);
    }
    94%, 98% {
        transform: translateX(3px);
    }
}

.cta-note {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.cta-note i {
    margin-right: 5px;
    color: var(--accent-orange);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.feature i {
    color: var(--accent-orange);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    animation: float-around 20s infinite linear;
}

.floating-element.el1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.el2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.floating-element.el3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* ===== VARIÁVEIS CSS ===== */
:root {
    --bg-dark: #121212;
    --bg-graphite: #1a1a1a;
    --text-white: #ffffff;
    --text-offwhite: #f0f0f0;
    --accent-orange: #ff6b35;
    --accent-red: #d32f2f;
    --accent-gold: #ffd700;
    --accent-blue: #2196f3;
    --gray-light: #e0e0e0;
    --gray-medium: #9e9e9e;
    --gray-dark: #424242;
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===== SEÇÃO BENEFÍCIOS ===== */
.benefits {
    background: linear-gradient(135deg, var(--bg-graphite) 0%, #2a2a2a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== GRID DE BENEFÍCIOS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    text-align: center;
    overflow: hidden;
}

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

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

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.15),
        0 0 0 1px rgba(255, 107, 53, 0.1);
}

.benefit-card.featured {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.05), rgba(255, 255, 255, 0.02));
    position: relative;
}

.benefit-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.benefit-badge i {
    margin-right: 5px;
}

/* ===== ÍCONES ===== */
.benefit-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ===== CONTEÚDO DOS CARDS ===== */
.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.3;
}

.benefit-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.benefit-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    text-align: left;
}

.benefit-feature i {
    color: var(--accent-orange);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.benefit-feature span {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.benefit-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-orange);
}

.benefit-guarantee i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.benefit-guarantee span {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== CTA DOS BENEFÍCIOS ===== */
.benefits-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(33, 150, 243, 0.05));
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.benefits-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.benefits-cta strong {
    color: var(--accent-orange);
}

.benefits-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.benefits-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ===== ANIMAÇÕES ===== */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefits-cta {
        padding: 1.5rem;
    }
    
    .benefits-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefits-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
/* ===== PROVA SOCIAL MELHORADA ===== */
.social-proof {
    background: linear-gradient(135deg, var(--bg-graphite) 0%, #2a2a2a 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
}

.proof-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Cartão de Depoimento */
.testimonial-card {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.quote-mark {
    font-size: 4rem;
    color: var(--accent-orange);
    line-height: 1;
    font-family: serif;
}

.client-badge {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text strong {
    color: var(--accent-orange);
    font-weight: 700;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-orange);
}

.client-avatar img {
    width: 30px;
    height: 30px;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.client-business {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.result-tag {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.testimonial-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Container de Urgência */
.urgency-card {
    background: linear-gradient(145deg, #2a1a1a, #1a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 71, 87, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b7a);
}

.urgency-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.warning-icon {
    font-size: 2rem;
}

.urgency-title {
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.urgency-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
}

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

.counter-wrapper {
    background: rgba(255, 71, 87, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.counter-label {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-number {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.counter-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 71, 87, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.counter-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), #ff8c9b);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.urgency-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.1rem;
}

.feature span:last-child {
    color: white;
    font-size: 1rem;
}

.urgency-warning {
    background: rgba(255, 71, 87, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 71, 87, 0.5);
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-text {
    color: white;
    margin: 0;
    line-height: 1.5;
}

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

/* Selos de Confiança */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 968px) {
    .proof-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .proof-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .social-proof {
        padding: 3rem 0;
    }
    
    .testimonial-card,
    .urgency-card {
        padding: 2rem;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .proof-title {
        font-size: 1.8rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .urgency-title {
        font-size: 1.3rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== PREÇOS MELHORADO ===== */
.pricing {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 5rem 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-subtitle strong {
    color: var(--accent-orange);
}

.pricing-content {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-card {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent-orange);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Badge de Oferta */
.offer-badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b7a);
    padding: 0.8rem 4rem;
    transform: rotate(45deg);
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-timer {
    color: white;
    font-size: 0.7rem;
    display: block;
    margin-top: 2px;
}

/* Cabeçalho do Card */
.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Seção de Preço */
.price-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

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

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

.price-currency {
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
}

.price-decimal {
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.price-installments {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Botão CTA */
.cta-button {
    display: block;
    background: linear-gradient(135deg, var(--accent-orange), #D73430);
    color: white;
    text-decoration: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #ff8c42, var(--accent-orange));
}

.button-main-text {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.button-sub-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Garantia */
.guarantee-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.guarantee-icon {
    font-size: 1.2rem;
}

.guarantee-badge span:last-child {
    color: white;
    font-weight: 600;
}

.guarantee-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

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

/* Bônus */
.bonus-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 71, 87, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.bonus-icon {
    font-size: 1.5rem;
}

.bonus-header h4 {
    color: var(--accent-orange);
    margin: 0;
    font-size: 1.2rem;
}

.bonus-tag {
    background: var(--accent-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: auto;
}

.bonus-text {
    color: white;
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

.bonus-countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 71, 87, 0.2);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 71, 87, 0.4);
}

.countdown-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.countdown-number {
    color: var(--accent-red);
    font-size: 1.5rem;
    font-weight: 900;
}

/* Urgência */
.urgency-section {
    margin-bottom: 2rem;
}

.urgency-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 71, 87, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content h5 {
    color: var(--accent-red);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.alert-content p {
    color: white;
    margin: 0;
    line-height: 1.5;
}

.alert-content strong {
    color: var(--accent-red);
}

/* Recursos */
.features-section {
    margin-bottom: 1rem;
}

.features-section h4 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature span:last-child {
    color: white;
    font-weight: 500;
}

/* Selo de Segurança */
.security-badge {
    text-align: center;
}

.security-content {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-icon {
    font-size: 1.2rem;
}

.security-content span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .pricing {
        padding: 3rem 0;
    }
    
    .price-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .offer-badge {
        right: -30px;
        padding: 0.6rem 3rem;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .current-price {
        flex-direction: column;
        gap: 0;
    }
    
    .urgency-alert {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== FORMULÁRIO ===== */
.form-section {
    background-color: var(--bg-graphite);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.lead-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-dark);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-cta {
    background-color: var(--accent-orange);
    color: white;
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-cta:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

.payment-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* ===== FAQ MELHORADO ===== */
.faq {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 5rem 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.question-text {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-orange);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Estado ativo */
.faq-item.active .faq-question {
    background: rgba(255, 107, 53, 0.15);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-red);
}

.faq-item.active .faq-question::after {
    background: rgba(255, 107, 53, 0.3);
}

/* Resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.answer-content {
    padding: 0 2rem 1.5rem;
}

.answer-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Rodapé do FAQ */
.faq-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.faq-contact {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-contact:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .answer-content {
        padding: 0 1.5rem 1.25rem;
    }
    
    .faq-question::after {
        left: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .answer-content {
        padding: 0 1.25rem 1rem;
    }
    
    .faq-footer p {
        font-size: 1rem;
    }
}
/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-graphite);
    padding: 2rem 0;
    text-align: center;
    color: var(--gray-medium);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subhead {
        font-size: 1.4rem;
    }
    
    .hero-gancho {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .urgency-counter {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .price-card {
        padding: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
}
/* ===== SEÇÃO PROCESSO ===== */
.process {
    background-color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.process h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.process-step {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: var(--transition);
}

.process-step:hover::before {
    left: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    border-left-width: 6px;
    box-shadow: var(--box-shadow);
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-step h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: inline-block;
}

.process-step p {
    color: var(--gray-light);
    line-height: 1.6;
    font-size: 1rem;
}

.legal-note {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1), rgba(255, 107, 53, 0.05));
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.legal-note::before {
    content: '⚠️';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.legal-note p {
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .process {
        padding: 60px 0;
    }
    
    .process h2 {
        font-size: 2.2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .legal-note {
        padding: 1.5rem;
    }
    
    .legal-note p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process h2 {
        font-size: 1.8rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
}

/* ===== SEÇÃO QUEM SOU EU ===== */
.about-me {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    padding: 5rem 0;
    position: relative;
}

.about-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-description strong {
    color: var(--accent-orange);
}

.about-quote {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--accent-orange);
    font-style: italic;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-orange);
    background: rgba(255, 126, 95, 0.1);
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
}

.about-image {
    flex: 0 0 300px;
}

.profile-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }
    
    .about-image {
        flex: 0 0 auto;
        width: 250px;
    }
    
    .profile-image {
        height: 300px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
}