/* Guia Financeiro - A Trilha do Sucesso - Sales Page Styles */

:root {
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: white;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0 6rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    max-width: 500px;
    height: auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--success-color);
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.btn .material-icons {
    font-size: 1.5rem;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Problem Section */
.section-problem {
    background: var(--bg-light);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
}

.problem-content p {
    margin-bottom: 1.5rem;
}

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

.problem-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.problem-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border-color: var(--primary-color);
}

.problem-icon {
    margin-bottom: 1.5rem;
}

.problem-icon .material-icons {
    font-size: 4rem;
    color: var(--primary-color);
}

.problem-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Solution Section */
.solution-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
}

.solution-content p {
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

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

.highlight-icon {
    margin-bottom: 1rem;
}

.highlight-icon .material-icons {
    font-size: 3.5rem;
    color: #fbbf24;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: bounce 2s ease-in-out infinite;
}

.highlight-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.highlight-box p {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.author-intro {
    background: linear-gradient(to bottom, #f0fdf4 0%, white 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #10b981;
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.author-content {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

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

.author-image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.author-text {
    flex: 1;
}

.author-text p {
    margin-bottom: 1.25rem;
}

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

/* Product Section */
.section-product {
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Produto destaque ocupa 2 colunas */
.product-featured {
    grid-column: 1 / 3;
    border-color: var(--success-color);
    border-width: 3px;
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.product-badge-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.product-badge-icon .material-icons {
    font-size: 2.5rem;
    color: white;
}

.product-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

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

.product-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.product-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.product-price strong {
    color: var(--success-color);
    font-size: 1.5rem;
}

.products-summary {
    text-align: center;
    margin-top: 4rem;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.products-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.products-summary::after {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    animation: twinkle 2s ease-in-out infinite;
}

.products-summary h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-weight: 700;
}

.summary-highlight {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(to right, #fbbf24, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(251, 191, 36, 0.5);
    letter-spacing: 0.5px;
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

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

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

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

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(251, 191, 36, 0.9));
    }
}

/* Testimonials Section */
.section-testimonials {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-testimonials::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.testimonial-card {
    background: transparent;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: fit-content;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.3);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-cta .cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonials-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Pricing Section */
.section-pricing {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-intro p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--danger-color);
    text-decoration: line-through;
    margin: 1.5rem 0;
}

.pricing-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

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

.pricing-left {
    text-align: center;
}

.pricing-box h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-container {
    margin: 1.5rem 0;
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #dbeafe 100%);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #10b981;
}

.price-installment,
.price-cash {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.installment-number,
.cash-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.installment-value,
.cash-value {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.installment-value {
    color: var(--success-color);
}

.cash-value {
    color: var(--primary-color);
}

.price-divider {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 700;
    align-self: center;
}

.pricing-comparison {
    text-align: center;
    font-size: 1rem;
    color: var(--success-color);
    font-weight: 600;
    margin-top: 1rem;
}

.pricing-right {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-item .material-icons {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-container {
    text-align: center;
    margin-top: 2.5rem;
}

.security-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.security-text .material-icons {
    font-size: 1rem;
}

/* Guarantee Section */
.section-guarantee {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-guarantee::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.guarantee-badge .material-icons {
    font-size: 1.5rem;
}

.guarantee-icon {
    margin-bottom: 1.5rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

.guarantee-icon .material-icons {
    font-size: 5rem;
    color: var(--success-color);
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

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

.guarantee-intro {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.guarantee-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.guarantee-step {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #d1fae5;
    transition: all 0.3s ease;
}

.guarantee-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 40px;
    margin-bottom: 0.75rem;
}

.guarantee-step p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.guarantee-highlight {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #10b981;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.guarantee-highlight p {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
}

.guarantee-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.guarantee-footer {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--success-color);
    margin-top: 2rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question .material-icons {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question .material-icons {
    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;
    color: var(--text-light);
    font-size: 1rem;
}

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

.section-final-cta .section-title {
    color: white;
}

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

.path {
    background: white;
    color: var(--text-dark);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.path-negative {
    border: 3px solid var(--danger-color);
}

.path-positive {
    border: 3px solid var(--success-color);
}

.path-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.path h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

/* Final Choice Section - Refatorado */
.final-choice {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.4);
    text-align: center;
}

.offer-time-badge {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 2rem 0;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    animation: glow-badge 2s ease-in-out infinite;
}

.offer-time-badge .material-icons {
    font-size: 1.3rem;
    vertical-align: middle;
    margin-right: 0.5rem;
}

@keyframes glow-badge {
    0%, 100% { 
        box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
    }
}

.choice-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.choice-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.btn-final {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #6366f1;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-final .material-icons {
    font-size: 1.5rem;
}

.security-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

.security-item .material-icons {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: rgba(255,255,255,0.9);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo a {
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer-logo img {
    height: 50px;
    width: auto;
    opacity: 0.95;
}

.footer-product {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.75rem 0 0.25rem;
    color: white;
}

.footer-rights {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin: 0.25rem 0 1.5rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-links .separator {
    color: rgba(255,255,255,0.4);
}

.footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0 4rem;
    }
    
    .logo img {
        max-width: 100%;
        width: 90%;
        height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }
    
    .video-container {
        max-width: 100%;
        margin: 1.5rem auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.25rem;
    }

    .author-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-image {
        margin-bottom: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
        padding: 0;
    }
    
    .product-featured {
        grid-column: 1;
    }
    
    .product-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .product-logo img {
        max-width: 80%;
        max-height: 70px;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.25rem;
        white-space: nowrap;
    }

    .pricing-box {
        padding: 2rem 1rem;
    }

    .pricing-box h3 {
        font-size: 1.5rem;
    }

    .installment-value {
        font-size: 2rem;
    }

    .cash-value {
        font-size: 2rem;
    }

    .guarantee-steps {
        grid-template-columns: 1fr;
    }

    .paths-container {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Final Choice Mobile */
    .final-choice {
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
    }

    .offer-time-badge {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .offer-time-badge .material-icons {
        font-size: 1.1rem;
    }

    .choice-title {
        font-size: 1.8rem;
    }

    .choice-description {
        font-size: 1.05rem;
    }

    .btn-final {
        font-size: 1rem;
        padding: 1.1rem 2rem;
    }

    .security-items {
        flex-direction: column;
        gap: 1rem;
    }
}
