/* Guia Financeiro SMART - Stylesheet */

/* ===== CSS VARIABLES ===== */
:root {
    /* SMART Theme Colors */
    --smart-green: #4EA72E;
    --smart-blue: #104862;
    --smart-orange: #E87E10;
    --smart-gold: #EDAC40;
    --dark-gray: #313131;
    
    /* Gradients */
    --smart-gradient: linear-gradient(135deg, var(--smart-green), var(--smart-blue));
    --accent-gradient: linear-gradient(135deg, var(--smart-orange), var(--smart-gold));
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    
    /* Effects */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--smart-blue);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    background: var(--smart-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--smart-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
    background: white;
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    height: 50px;
    width: auto;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(78, 167, 46, 0.05), rgba(16, 72, 98, 0.05));
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--smart-blue);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 500;
}

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

.hero-mockup {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.hero-mockup:hover {
    transform: translateY(-15px) translateZ(20px) scale(1.05);
    box-shadow: 0 25px 50px rgba(78, 167, 46, 0.3), 
                0 15px 30px rgba(16, 72, 98, 0.2),
                0 5px 15px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1) contrast(1.05);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: 80px 0;
    background: white;
}

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

.problem-item {
    background: rgba(78, 167, 46, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: var(--smart-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.problem-item p {
    color: var(--smart-blue);
    line-height: 1.6;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
    padding: 80px 0;
    background: rgba(16, 72, 98, 0.05);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-description {
    font-size: 1.1rem;
    color: var(--smart-blue);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--dark-gray);
}

.feature-check {
    color: var(--smart-green);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.1rem;
}

.solution-mockup {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 80px 0;
    background: white;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    border-color: var(--smart-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.benefit-card p {
    color: var(--smart-blue);
    line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: rgba(78, 167, 46, 0.05);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--smart-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.feature-card .feature-icon {
    background: var(--smart-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.feature-card p {
    color: var(--smart-blue);
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 80px 0;
    background: white;
}

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

.pricing-dual-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.pricing-card.featured {
    border: 3px solid var(--smart-green);
}

.pricing-card.package-card {
    border: 3px solid var(--smart-orange);
}

.pricing-badge {
    background: var(--smart-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-badge.package-badge-highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.package-logo-small {
    margin-bottom: 1.5rem;
}

.package-logo-small img {
    max-width: 180px;
    height: auto;
}

.pricing-header-card {
    margin: 1.5rem 0 2rem;
}

.pricing-header-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.pricing-header-card p {
    color: var(--smart-blue);
    font-size: 1rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-old {
    display: block;
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--smart-green);
    margin-bottom: 0.5rem;
}

.price-current.package-price {
    color: var(--smart-orange);
}

.price-installment {
    display: block;
    font-size: 0.9rem;
    color: var(--smart-blue);
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-features .check {
    color: var(--smart-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-card.package-card .pricing-features .check {
    color: var(--smart-orange);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--smart-blue);
    font-size: 0.9rem;
}

.guarantee-icon {
    color: var(--smart-green);
    font-size: 1.2rem;
}

.guarantee-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(78, 167, 46, 0.05);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--smart-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guarantee-footer p {
    color: var(--smart-blue);
    font-size: 1rem;
    margin: 0;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 60px 0;
    background: rgba(78, 167, 46, 0.05);
    text-align: center;
}

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

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--smart-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.guarantee-description {
    font-size: 1.1rem;
    color: var(--smart-blue);
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.guarantee-feature .feature-icon {
    color: var(--smart-green);
    font-size: 1.2rem;
}

/* ===== CROSS-SELL SECTION ===== */
.cross-sell-section {
    padding: 60px 0;
    background: rgba(16, 72, 98, 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: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cross-sell-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--smart-green);
}

.cross-sell-header {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: 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(--smart-blue);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.cross-sell-link:hover {
    color: var(--smart-blue);
}

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

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

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

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

.faq-question span:first-child {
    font-weight: 600;
    color: var(--dark-gray);
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    color: var(--smart-green);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(78, 167, 46, 0.02);
}

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

.faq-answer p {
    color: var(--smart-blue);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-info p {
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--smart-green);
}

.footer-links span {
    color: #666;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 576px) {
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .guarantee-features {
        gap: 3rem;
    }
    
    .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;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cross-sell-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);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Layout lado a lado dos cards de preço em desktop */
    .pricing-dual-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .pricing-dual-container {
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .package-logo-small img {
        max-width: 120px;
    }
}
/* ===================================================
   SE��O DE PACOTE RELACIONADO
   =================================================== */

.related-products-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.package-highlight {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.package-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    margin-bottom: 1rem;
}

.package-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.package-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
}

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

.package-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.package-info {
    text-align: left;
}

.package-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #313131;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.package-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.package-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-item svg {
    stroke: var(--smart-green);
    min-width: 20px;
}

.benefit-item span {
    font-size: 0.95rem;
    color: #313131;
    font-weight: 500;
}

.package-pricing {
    background: linear-gradient(135deg, rgba(78, 167, 46, 0.1) 0%, rgba(16, 72, 98, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-old-package {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current-package {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value-package {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--smart-green);
    line-height: 1;
}

.package-cta {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.package-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0;
}

.package-note svg {
    stroke: var(--smart-blue);
    min-width: 16px;
}

/* Responsivo para package */
@media (min-width: 768px) {
    .package-content {
        grid-template-columns: 250px 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    
    .package-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

