/* Reset e Variáveis */
:root {
    --color-primary: #006465;
    --color-primary-dark: #004849;
    --color-secondary: #0f928c;
    --color-accent: #00c9d2;
    --color-highlight: #beee3b;
    --color-dark: #484848;
    --color-danger: #dc3545;
    --color-warning: #ffc107;
    --color-success: #28a745;
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-gray: #e9ecef;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-highlight);
    color: var(--color-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: #a8d633;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-light-gray);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-dark);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(190, 238, 59, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 201, 210, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 4px 15px rgba(220, 53, 69, 0.4),
        0 0 0 0 rgba(220, 53, 69, 0.7);
    animation: urgencyPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.hero-badge i {
    font-size: 1rem;
    animation: shake 0.5s infinite;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

@keyframes urgencyPulse {
    0% { 
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(220, 53, 69, 0.4),
            0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 6px 20px rgba(220, 53, 69, 0.6),
            0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(220, 53, 69, 0.4),
            0 0 0 0 rgba(220, 53, 69, 0.7);
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-highlight);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    display: none;
}

.floating-card {
    position: absolute;
    padding: 20px 30px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.floating-card span {
    font-weight: 600;
    color: var(--color-dark);
}

.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 25%;
    animation-delay: 2s;
}

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

/* Problems Section */
.problems {
    padding: 80px 0;
    background: var(--color-light-gray);
}

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

.problem-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.problem-icon.danger {
    background: rgba(220, 53, 69, 0.1);
    color: var(--color-danger);
}

.problem-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: var(--color-warning);
}

.problem-icon.alert {
    background: rgba(0, 100, 101, 0.1);
    color: var(--color-primary);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.problem-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--color-dark);
    opacity: 0.8;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.cta-box-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cta-box-content p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--color-white);
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.factor-card {
    position: relative;
    padding: 2rem;
    background: var(--color-light-gray);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.factor-card:hover {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.factor-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.2;
}

.factor-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.factor-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.factor-card p {
    font-size: 0.875rem;
    color: var(--color-dark);
    opacity: 0.7;
}

.methodology-box {
    padding: 2.5rem;
    background: var(--color-light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--color-highlight);
    text-align: center;
}

.methodology-box h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.methodology-box p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.methodology-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

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

.form-header h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.125rem;
    color: var(--color-dark);
    opacity: 0.7;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 100, 101, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--color-dark);
    opacity: 0.8;
}

.form-checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-dark);
    opacity: 0.7;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: var(--color-light-gray);
    border-radius: 12px;
}

.success-message i {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--color-white);
}

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

.benefit-card {
    padding: 2rem;
    background: var(--color-light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 12px;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--color-dark);
    opacity: 0.8;
}

.value-proposition {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    color: var(--color-white);
}

.value-box {
    flex: 1;
}

.value-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-highlight);
    margin-bottom: 0.5rem;
}

.value-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: var(--color-light-gray);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-box .stat-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.stat-box .stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: var(--color-dark);
    opacity: 0.7;
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.7;
    color: var(--color-dark);
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--color-dark);
    opacity: 0.7;
}

.credibility-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--color-light-gray);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* E-book Section */
.ebook-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.ebook-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(190, 238, 59, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ebook-wrapper {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ebook-mockup {
    position: relative;
}

.pdf-mockup {
    position: relative;
    perspective: 1000px;
}

.pdf-cover {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, #006465 0%, #0f928c 100%);
    border-radius: 20px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.pdf-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(190, 238, 59, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 201, 210, 0.15) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.pdf-mockup:hover .pdf-cover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.pdf-icon {
    width: 100px;
    height: 100px;
    background: rgba(190, 238, 59, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.pdf-icon i {
    font-size: 4rem;
    color: #beee3b;
}

.pdf-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.pdf-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 320px;
}

.pdf-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(190, 238, 59, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(190, 238, 59, 0.3);
}

.pdf-badge-mini i {
    color: #beee3b;
    font-size: 1.125rem;
}

.pdf-badge-mini span {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.pdf-pages {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.pdf-pages i {
    color: #beee3b;
    font-size: 1.125rem;
}

.pdf-shadow {
    position: absolute;
    bottom: -30px;
    left: 10%;
    right: 10%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

.ebook-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
    text-align: center;
    animation: badgePulse 2s infinite;
    z-index: 10;
}

.badge-promo {
    display: block;
    color: #beee3b;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.badge-discount {
    display: block;
    color: white;
    font-size: 0.7rem;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 5px;
}

.badge-price {
    display: block;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-price sup {
    font-size: 1rem;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.05) rotate(-5deg); }
}

.mockup-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: #006465;
    transition: var(--transition);
}

.mini-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mini-badge i {
    color: #beee3b;
    font-size: 1.125rem;
}

.ebook-content .section-label {
    margin-bottom: 1rem;
}

.ebook-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ebook-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #484848;
    margin-bottom: 2rem;
}

.ebook-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 1.25rem;
    color: #beee3b;
    flex-shrink: 0;
}

.benefit-item span {
    color: #484848;
    font-weight: 500;
}

.ebook-cta-box {
    background: linear-gradient(135deg, #006465, #0f928c);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 100, 101, 0.3);
}

.price-box {
    margin-bottom: 1.5rem;
}

.old-price {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.new-price-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 2rem;
    color: #beee3b;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 5px;
}

.new-price {
    font-size: 5rem;
    color: #beee3b;
    font-weight: 800;
    line-height: 1;
}

.cents {
    font-size: 2rem;
    color: #beee3b;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 5px;
}

.economy {
    display: block;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.ebook-cta {
    margin-bottom: 1.5rem;
    font-size: 1.125rem !important;
    background: #beee3b !important;
    color: #006465 !important;
    box-shadow: 0 8px 25px rgba(190, 238, 59, 0.4) !important;
}

.ebook-cta:hover {
    background: #a8d633 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(190, 238, 59, 0.6) !important;
}

.ebook-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.875rem;
}

.guarantee i {
    color: #beee3b;
    font-size: 1.125rem;
}

.urgency-text {
    color: white;
    font-size: 0.875rem;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    margin: 0;
}

.urgency-text i {
    color: #beee3b;
    margin-right: 5px;
}

.urgency-text strong {
    color: #beee3b;
}

.why-andrey {
    margin-top: 4rem;
    text-align: center;
}

.why-andrey h3 {
    font-size: 2rem;
    color: #006465;
    margin-bottom: 2rem;
}

.why-andrey h3 i {
    color: #beee3b;
    margin-right: 10px;
}

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

.credential-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.credential-card i {
    font-size: 2.5rem;
    color: #006465;
    margin-bottom: 1rem;
}

.credential-card h4 {
    font-size: 1.25rem;
    color: #006465;
    margin-bottom: 0.5rem;
}

.credential-card p {
    color: #484848;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--color-white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--color-light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question i {
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
    color: var(--color-dark);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-box {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 3rem;
}

.urgency-box i {
    font-size: 2rem;
    color: var(--color-highlight);
}

.urgency-text strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.urgency-text p {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-highlight);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-guarantees {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.guarantee-item i {
    color: var(--color-highlight);
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background: var(--color-dark);
    color: var(--color-white);
}

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

.footer-brand h3 {
    font-size: 2rem;
    color: var(--color-highlight);
    margin-bottom: 1rem;
}

.footer-brand p,
.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--color-white);
    text-decoration: underline;
}

/* Sticky Urgency Banner */
.sticky-urgency-banner {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--color-white);
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.5);
    transition: top 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 3px solid #a71d2a;
}

.sticky-urgency-banner.show {
    top: 0;
    animation: slideDown 0.5s ease;
}

.sticky-urgency-banner i {
    animation: shake 0.5s infinite;
    font-size: 1rem;
}

.sticky-urgency-banner .countdown {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@keyframes slideDown {
    from {
        top: -100px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

/* Logo Styles */
.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.main-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(0, 100, 101, 0.3));
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* Watermark Logo - DESATIVADO */
/* body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/logo-adhamos.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
} */

/* Garante que o conteúdo fique acima da marca d'água */
section,
footer,
header {
    position: relative;
    z-index: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
    text-decoration: none;
    border: none;
    outline: none;
}

.whatsapp-float:focus,
.whatsapp-float:active {
    border: none;
    outline: none;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 35px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 90px;
}

.whatsapp-tooltip strong {
    color: #006465;
    display: block;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.whatsapp-tooltip span {
    color: #484848;
    font-size: 0.75rem;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 10px 20px;
        text-align: center;
    }
    
    .hero-badge span {
        display: block;
    }
    
    .sticky-urgency-banner {
        font-size: 0.75rem;
        padding: 10px;
        flex-direction: column;
        gap: 6px;
    }
    
    .sticky-urgency-banner span {
        font-size: 0.7rem;
    }
    
    .sticky-urgency-banner .countdown {
        margin-left: 0;
        margin-top: 4px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .problem-grid,
    .factors-grid,
    .benefits-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .value-proposition {
        flex-direction: column;
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .final-guarantees {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ebook-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ebook-mockup {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pdf-cover {
        height: 450px;
        padding: 2rem;
    }
    
    .pdf-title {
        font-size: 2.25rem;
    }
    
    .pdf-subtitle {
        font-size: 1rem;
    }
    
    .ebook-badge {
        top: -10px;
        right: -10px;
        padding: 15px;
    }
    
    .badge-price {
        font-size: 1.5rem;
    }
    
    .mockup-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .mini-badge {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .ebook-content h2 {
        font-size: 1.75rem;
    }
    
    .new-price {
        font-size: 3.5rem;
    }
    
    .ebook-guarantees {
        flex-direction: column;
        gap: 1rem;
    }
    
    .andrey-credentials {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1200px) {
    .hero-image {
        display: block;
    }
    
    .hero .container {
        max-width: 60%;
    }
}
