/* Guia Financeiro - Estilos Específicos */
/* Sistema Prático - Página de Vendas */

:root {
    --primary-orange: #E87E10;
    --secondary-gold: #EDAC40;
    --primary-teal: #104862;
    --accent-green: #4EA72E;
    --dark-gray: #313131;
    
    /* Breakpoints */
    --mobile: 576px;
    --tablet: 768px;
    --desktop: 992px;
    --large: 1200px;
}

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

/* Customização da Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #2d2d2d;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #2d2d2d;
}

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

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--accent-green);
}

/* Hero Section - Específico do Guia Financeiro */
.hero {
    background: linear-gradient(135deg, #1a5770 0%, #2c7b9a 30%, #d17a3d 70%, #e89456 100%);
    color: #ffffff;
    padding: 120px 0 100px;
    position: relative;
    margin-bottom: 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 C150,80 350,80 600,50 C850,20 1050,60 1200,40 L1200,120 L0,120 Z" fill="%23ffffff"/></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.highlight {
    color: #ffa64d;
    position: relative;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.hero-subtitle strong {
    color: #ffffff;
    font-weight: 700;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature .icon {
    font-size: 1.4rem;
    min-width: 1.4rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    z-index: -1;
}

.mockup {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup:hover {
    transform: translateY(-15px) scale(1.05) rotate(2deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

/* Buttons - Específicos da página */
.cta-button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: #ff7d4d;
}

.cta-button.large {
    padding: 1.5rem 2.5rem;
    font-size: 1.05rem;
    width: 100%;
}

.cta-button.secondary {
    background: rgba(78, 167, 46, 0.1);
    color: var(--dark-gray);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
    background: rgba(78, 167, 46, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Problem Section */
.problem-section {
    padding: 60px 0;
    background: rgba(237, 172, 64, 0.05);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-teal);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa64d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.problem-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.problem-item p {
    color: var(--primary-teal);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Seção 2.5: Depoimentos */
.testimonials-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

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

/* Solution Section */
.solution-section {
    padding: 60px 0;
    background: white;
}

.solution-callout {
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-green));
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
}

.solution-callout h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
    background: rgba(78, 167, 46, 0.03);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-green);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.benefit-card p {
    color: var(--primary-teal);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.recommended {
    transform: scale(1.02);
    border: 3px solid var(--primary-orange);
    position: relative;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-gold));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

.card-subtitle {
    color: var(--primary-teal);
    margin-bottom: 2rem;
    min-height: 40px;
    font-size: 0.95rem;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.price .price-old {
    font-size: 0.95rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price .price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0;
}

.price-installments {
    font-size: 0.9rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.included-items {
    text-align: left;
    margin: 2rem 0;
}

.included-items h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.included-items ul {
    list-style: none;
    padding: 0;
}

.included-items ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.included-items ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.included-items ul li strong {
    color: var(--accent-green);
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: rgba(237, 172, 64, 0.05);
    text-align: center;
}

.guarantee-highlight {
    background: linear-gradient(135deg, var(--accent-green), var(--primary-teal));
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.guarantee-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.guarantee-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.guarantee-highlight p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    margin: 0;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.guarantee-feature .icon {
    font-size: 1.1rem;
    min-width: 1.1rem;
}

.guarantee-feature span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsividade para garantia */
@media (max-width: 768px) {
    .guarantee-highlight {
        padding: 2rem 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .guarantee-highlight h3 {
        font-size: 1.5rem;
    }
    
    .guarantee-highlight p {
        font-size: 1rem;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guarantee-feature {
        padding: 0.75rem 1rem;
    }
}

.guarantees {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.guarantee-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.guarantee-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-orange);
}

.guarantee-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.guarantee-item p {
    color: var(--primary-teal);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Cross-sell Section */
.cross-sell-section {
    padding: 60px 0;
    background: rgba(78, 167, 46, 0.03);
}

.cross-sell-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.cross-sell-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.cross-sell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-green);
}

.cross-sell-header {
    padding: 1.5rem;
    text-align: center;
}

.cross-sell-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: block;
    object-fit: contain;
}

.cross-sell-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.cross-sell-card p {
    color: var(--primary-teal);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cross-sell-footer {
    padding: 1.5rem;
    background: rgba(78, 167, 46, 0.05);
    text-align: center;
}

.cross-sell-link {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cross-sell-link:hover {
    color: var(--primary-teal);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: rgba(78, 167, 46, 0.05);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(78, 167, 46, 0.08);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-green);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--primary-teal);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #104862;
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0;
    border-top: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(237, 172, 64, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-teal);
}

/* Responsive Design */
@media (min-width: 576px) {
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guarantees {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cross-sell-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .logo {
        height: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-image {
        margin-top: 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .guarantees {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cross-sell-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .problem-section,
    .solution-section,
    .benefits-section,
    .pricing-section,
    .guarantee-section,
    .cross-sell-section,
    .faq-section {
        padding: 100px 0;
    }
}

/* =====================================================
   NEW SECTIONS - SCRIPT DE VENDAS STRUCTURE
   ===================================================== */

/* Proof Section */
.proof-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 126, 16, 0.1), transparent);
    transition: left 1.5s ease;
}

.proof-section.section-visible::before {
    left: 100%;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.proof-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin: 4rem auto;
    max-width: 900px;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(232, 126, 16, 0.12);
    border: 2px solid rgba(232, 126, 16, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    flex: 1;
    max-width: 280px;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-item.animated::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(232, 126, 16, 0.25);
    border-color: var(--primary-orange);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(232, 126, 16, 0.2);
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-gold));
    border-radius: 2px;
    transition: transform 0.6s ease 0.3s;
}

.stat-item.animated .stat-number::after {
    transform: translateX(-50%) scaleX(1);
}

.stat-item.animated .stat-number {
    animation: numberPulse 0.5s ease 2s;
}

.stat-item.ready-to-animate {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 4px 8px rgba(232, 126, 16, 0.4);
    }
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--primary-teal);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.story-text p strong {
    color: var(--primary-orange);
}

.story-text p em {
    color: var(--primary-teal);
    font-style: italic;
}

/* Problem Section - Jeito Certo vs Errado */
.problem-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.problem-icon.wrong {
    color: #dc3545;
    font-size: 1.5rem;
}

.problem-icon.right {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.problem-header h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.problems-grid .problem-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.problems-grid .problem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Method Example */
.method-example {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
}

.method-example h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.example-calculation {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.calculation-row:last-child {
    border-bottom: none;
}

.calculation-row.total {
    font-size: 1.2rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* Objections Section */
.objections-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.objection-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.objection-question {
    background: var(--primary-orange);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.objection-question .icon {
    font-size: 1.5rem;
}

.objection-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.objection-answer {
    padding: 1.5rem;
}

.objection-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.objection-answer p:last-child {
    margin-bottom: 0;
}

.objection-answer strong {
    color: var(--primary-orange);
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.urgency-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.timer-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 100px;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Final CTA Section */
.final-cta-section {
    background: white;
    padding: 80px 0;
}

.choice-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.choice-item {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.choice-item.bad {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.choice-item.good {
    background: #d4edda;
    border: 2px solid var(--accent-green);
}

.choice-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.choice-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    margin-top: 3rem;
}

.final-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-teal);
}

.cta-button.huge {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    margin: 2rem 0;
}

.cta-subtext {
    margin-top: 1rem;
}

.cta-subtext p {
    color: var(--accent-green);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

/* Offer Sections */
.offer-breakdown {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
}

.offer-breakdown h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-teal);
}

.offer-items {
    display: grid;
    gap: 0.5rem;
}

.offer-section-title {
    font-size: 0.95rem;
    color: var(--primary-teal);
    margin: 1rem 0 0.75rem 0;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-orange);
}

.offer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
    margin: 1rem 0;
    position: relative;
}

.offer-divider::after {
    content: "E VOCÊ TAMBÉM RECEBE";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0.25rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: white;
    padding: 0.65rem 0.85rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.offer-item.highlight-item {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    border-left: 3px solid var(--primary-orange);
}

.offer-item .check {
    font-size: 1rem;
    min-width: 18px;
}

.price-economy {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 0.5rem;
    background: rgba(107, 159, 91, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.offer-item .icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 0.25rem;
}

.item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-teal);
}

.item-content p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.main-offer {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pricing-card.single-offer {
    max-width: 600px;
    width: 100%;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 3px solid var(--primary-orange);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.offer-header h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.price-comparison {
    margin: 2rem 0;
}

.old-price span {
    text-decoration: line-through;
    color: #666;
    font-size: 1rem;
}

.current-price {
    margin-top: 1rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin: 0.5rem 0;
}

.price-detail {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.offer-value {
    background: rgba(232, 126, 16, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.payment-options {
    margin-top: 1.5rem;
}

.payment-options p {
    font-size: 0.9rem;
    color: var(--accent-green);
    margin: 0.25rem 0;
}

.alternative-offer {
    text-align: center;
    margin: 3rem 0 2rem 0;
}

.alternative-offer h3 {
    font-size: 1.2rem;
    color: var(--primary-teal);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .timer-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .choice-comparison {
        grid-template-columns: 1fr;
    }
    
    .cta-button.huge {
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
    }
    
    .offer-items {
        gap: 1rem;
    }
    
    .offer-item {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   NEW SECTIONS STYLES
   ===================================================== */

/* Pain Section */
.pain-section {
    background: #ffffff;
    padding: 80px 0;
}

.pain-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.pain-item {
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.pain-item:hover {
    transform: none;
}

.pain-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 12px;
}

.pain-content h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pain-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.pain-transition {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 3rem;
    background: #fff7ed;
    border-radius: 12px;
    border: 1px solid #ffd4b3;
}

.pain-transition p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-gray);
}

.pain-transition strong {
    color: #ff6b35;
}

/* Solution Section */
.solution-section {
    background: #f9fafb;
    padding: 80px 0;
    position: relative;
}

.solution-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.solution-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.solution-text strong {
    color: var(--dark-gray);
    font-weight: 700;
}

.pillars-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 4rem auto;
    max-width: 900px;
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.pillars-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35 0%, #6b7280 50%, #4EA72E 100%);
    border-radius: 16px 16px 0 0;
}

.pillar-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    position: relative;
    border: none;
    flex: 1;
    transition: none;
    box-shadow: none;
}

.pillar-item:hover {
    transform: none;
    box-shadow: none;
}

.pillar-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.pillar-item:nth-child(1) .pillar-number {
    background: #ff6b35;
}

.pillar-item:nth-child(2) .pillar-number {
    background: #6b7280;
}

.pillar-item:nth-child(3) .pillar-number {
    background: #4EA72E;
}

.pillar-content h3 {
    color: var(--dark-gray);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pillar-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-visual {
    text-align: center;
    margin-top: 3rem;
}

.gf-logo {
    max-width: 400px;
    height: auto;
}

/* Features Section */
.features-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.feature-benefit {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    animation: none;
    display: block;
    border: 1px solid #e5e7eb;
}

.feature-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.feature-icon {
    font-size: 3rem;
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    min-height: 70px;
    box-shadow: none;
    flex-shrink: 0;
}

.feature-benefit h3 {
    color: var(--dark-gray);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.feature-benefit p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.feature-benefit p strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Bonus Section */
.bonus-section {
    background: #fef3e9;
    color: var(--dark-gray);
    padding: 80px 0;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #f0d4b8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bonus-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #6b7280;
}

.bonus-text strong {
    color: #ff6b35;
    font-weight: 700;
}

.bonus-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

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

.bonus-feature span {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
}

.bonus-visual {
    text-align: center;
}

.video-mockup {
    background: linear-gradient(135deg, #2d5f72, #1a4555);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #5c9fd4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(92, 159, 212, 0.4);
}

.video-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.video-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Target Section */
.target-section {
    background: white;
    padding: 80px 0;
}

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

.target-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.target-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.target-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.target-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.target-item strong {
    color: var(--primary-orange);
}

/* ===== NOVAS SEÇÕES 7-11 ===== */

/* Seção 6.5: Quem Sou Eu (Autor) */
.author-section {
    padding: 80px 0;
    background: #ffffff;
}

.author-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.author-image {
    flex-shrink: 0;
    position: relative;
}

.author-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 126, 16, 0.1), rgba(78, 167, 46, 0.1));
    border-radius: 20px;
    z-index: 0;
}

.author-image img {
    width: 320px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    border: 3px solid #ffffff;
}

.author-info {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
}

.author-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.author-role {
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.author-description {
    margin-bottom: 2rem;
}

.author-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.author-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f9fafb;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    min-width: 0;
}

.credential-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.badge-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.credential-badge > div {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.credential-badge strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.credential-badge p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Seção 7: Oferta */
.offer-section {
    padding: 80px 0;
    background: #fcfcfc;
    color: var(--dark-gray);
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 2rem;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #e5e7eb;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
    border-color: #ff6b35;
    background: linear-gradient(to bottom, #fff7ed 0%, white 100px);
}

.best-offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-items {
    margin-bottom: 2rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
}

.offer-item .check {
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1;
    display: inline-block;
}

.offer-item span:last-child {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
    text-align: left;
}

.offer-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.price-old {
    font-size: 0.95rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0;
}

.price-current.highlight {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card .cta-button {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1rem;
}

.offer-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 1;
    color: #6b7280;
}

.guarantee-item .icon {
    color: var(--accent-green);
}

/* Seção 8: Garantia */
.guarantee-section {
    padding: 4rem 0;
    background: #ffffff;
}

.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(to right, #f0f4ed 0%, #f5f8f3 100%);
    border: 2px solid #d4e3cc;
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    box-shadow: 0 5px 20px rgba(107, 159, 91, 0.1);
}

.guarantee-icon {
    flex-shrink: 0;
    background: #6B9F5B;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(107, 159, 91, 0.3);
}

.guarantee-icon svg {
    width: 80px;
    height: 80px;
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6b7280;
}

.guarantee-text strong {
    color: #2d3748;
}

.highlight-green {
    color: #6B9F5B;
    font-weight: 700;
}

/* Seção 9: Autoridade */
.authority-section {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.authority-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.authority-image {
    flex-shrink: 0;
}

.author-photo {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.authority-text {
    flex: 1;
}

.authority-text h3 {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.authority-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.credential-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.credential-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.credential-item strong {
    display: block;
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.credential-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Seção 10: FAQ Nova */
.faq-section-new {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-teal);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0;
}

/* Seção 11: CTA Final */
.final-cta-section {
    padding: 6rem 0;
    background: #ffffff;
    color: var(--text-dark);
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.final-offer-summary {
    max-width: 700px;
    margin: 0 auto;
}

.offer-recap {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.recap-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recap-item .icon {
    font-size: 1.5rem;
}

.final-pricing {
    margin: 3rem 0;
}

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

.final-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

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

.urgency-reminder {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    backdrop-filter: blur(5px);
}

.urgency-reminder p {
    margin: 0.5rem 0;
}

/* Botão CTA Mega */
.cta-button.mega {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    background: white;
    color: var(--primary-orange);
    border: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.mega:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* =====================================================
   RESPONSIVE KPI IMPROVEMENTS
   ===================================================== */

@media (max-width: 768px) {
    .proof-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .stat-item {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        max-width: 320px;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .proof-stats {
        gap: 1rem;
        margin: 2rem auto;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-width: auto;
        max-width: none;
    }
    
    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* New Sections Mobile */
    .pain-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pain-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* =====================================================
   KPI ANIMATION IMPROVEMENTS
   ===================================================== */

/* Initial state for KPIs - hidden */
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated state */
.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Number animation */
.stat-item.animate .stat-number {
    animation: numberPulse 1s ease-out;
}

@keyframes numberPulse {
    0% {
        transform: scale(0.3);
        opacity: 0;
        color: var(--secondary-gold);
    }
    60% {
        transform: scale(1.2);
        color: var(--secondary-gold);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        color: var(--primary-orange);
    }
}

/* Enhanced hover effects */
.stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(232, 126, 16, 0.25);
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(232, 126, 16, 0.3);
}

/* Better spacing and alignment */
.proof-stats {
    padding: 3rem 0;
}

.stat-item {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Improved mobile responsiveness */
@media (max-width: 768px) {
    .proof-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .stat-item {
        min-height: 140px;
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        min-height: 120px;
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Media Queries para Novas Seções */
@media (max-width: 768px) {
    /* Hero Responsivo */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .mockup {
        padding: 1rem;
        max-width: 100%;
    }
    
    .mockup:hover {
        transform: none;
    }
    
    /* Depoimentos Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Pain Section Mobile */
    .pain-section {
        padding: 60px 0;
    }
    
    .pain-items {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .pain-item {
        padding: 0;
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }
    
    .pain-icon {
        min-width: 70px;
        min-height: 70px;
        font-size: 2.5rem;
        flex-shrink: 0;
    }
    
    /* Solution Section Mobile */
    .solution-section {
        padding: 60px 0;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
        padding: 2rem 1.5rem;
        flex-direction: column;
    }
    
    .pillar-item {
        padding: 2rem 1rem;
    }
    
    .pillar-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pillar-content h3 {
        font-size: 1.1rem;
    }
    
    .pillar-content p {
        font-size: 0.9rem;
    }
    
    .gf-logo {
        max-width: 200px;
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .feature-benefit {
        padding: 2rem;
    }
    
    .feature-icon {
        min-width: 60px;
        min-height: 60px;
        font-size: 2rem;
    }
    
    /* Seção 6.5: Autor */
    .author-section {
        padding: 60px 0;
    }
    
    .author-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .author-image::before {
        top: 10px;
        left: 10px;
    }
    
    .author-image img {
        width: 240px;
        height: 300px;
    }
    
    .author-info {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .author-info h3 {
        font-size: 1.6rem;
    }
    
    .author-role {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .author-description p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .author-credentials {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .credential-badge {
        min-width: 0;
        padding: 0.8rem 1rem;
        flex-direction: row;
        text-align: left;
    }
    
    .credential-badge > div {
        flex: 1;
    }
    
    /* Seção 7: Oferta */
    .offer-section {
        padding: 60px 0;
    }
    
    .stack-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stack-content {
        text-align: center;
    }
    
    .stack-icon {
        min-width: 60px;
        min-height: 60px;
    }
    
    .total-value {
        flex-direction: column;
        gap: 1rem;
    }
    
    .offer-price {
        font-size: 2.8rem;
    }
    
    /* Seção 7: Oferta */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
        min-height: auto;
    }
    
    .offer-item {
        text-align: left;
        align-items: flex-start !important;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .offer-item .check {
        margin-top: 0.2rem;
        flex-shrink: 0;
    }
    
    .offer-item span:last-child {
        text-align: left;
        flex: 1;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .offer-guarantees {
        gap: 1rem;
    }
    
    .guarantee-item {
        font-size: 0.8rem;
    }
    
    /* Seção 8: Garantia */
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    /* Seção 8: Garantia */
    .guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .guarantee-icon {
        width: 100px;
        height: 100px;
    }
    
    .guarantee-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .guarantee-title {
        font-size: 1.5rem;
    }
    
    .guarantee-text {
        font-size: 1rem;
    }
    
    /* Seção 9: Autoridade */
    .authority-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .author-photo {
        width: 200px;
        height: 200px;
    }
    
    .authority-text h3 {
        font-size: 2rem;
    }
    
    .authority-text p {
        font-size: 1rem;
    }
    
    .credentials {
        gap: 1rem;
    }
    
    .credential-item {
        padding: 0.8rem;
    }
    
    /* Seção 10: FAQ */
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    /* Seção 11: CTA Final */
    .final-cta-section {
        padding: 4rem 0;
    }
    
    .offer-recap {
        gap: 1rem;
    }
    
    .recap-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .final-price {
        font-size: 2.5rem;
    }
    
    .final-guarantees {
        gap: 1rem;
    }
    
    .cta-button.mega {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
    
    .urgency-reminder {
        padding: 1.5rem;
    }
}

/* ===== ANIMAÇÕES SUTIS ===== */

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

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MENU MOBILE TOGGLE ===== */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 4px;
}

/* Desktop - garantir que o menu hambúrguer fique escondido */
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav ul {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        padding: 0 !important;
        height: auto !important;
        min-height: auto !important;
        gap: 2rem !important;
    }
}

.nav-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #313131;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-toggle .bar:nth-child(1) {
    top: 12px;
}

.nav-toggle .bar:nth-child(2) {
    top: 19px;
}

.nav-toggle .bar:nth-child(3) {
    top: 26px;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    
    .logo img {
        height: 44px;
    }

    .nav ul {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: auto !important;
        min-height: calc(100vh - 70px) !important;
        background: #ffffff !important;
        z-index: 1200 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 20px 30px 40px 30px !important;
        margin: 0 !important;
        list-style: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(100%) !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 0 !important;
        border: none !important;
        box-shadow: none !important;
        max-width: none !important;
        min-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .nav.mobile-open ul {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }

    .nav ul li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
        list-style: none;
        flex-shrink: 0;
        height: 60px;
        display: flex;
        align-items: center;
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul li a {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0;
        font-size: 18px;
        font-weight: 500;
        color: #2c5f5a;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .nav ul li a:hover {
        color: #ff6b35;
    }
}