/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #0070f3;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0070f3;
}

.cta-button {
    background: #0070f3;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
}

.nav-mobile {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003d82 0%, #002a5c 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-primary.large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Hero Cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

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

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

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    opacity: 0.8;
}

/* Solutions Overview */
.solutions-overview {
    padding: 100px 0;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefit {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

.solution-link {
    color: #0070f3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.solution-link:hover {
    color: #0056b3;
}

/* Results Section */
.results {
    padding: 100px 0;
    background: #1a202c;
    color: white;
}

.results .section-header h2 {
    color: white;
}

.results .section-header p {
    color: #a0aec0;
}

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

.result-card {
    text-align: center;
    padding: 2rem;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4fd1c7;
    margin-bottom: 1rem;
}

.result-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.result-card p {
    color: #a0aec0;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #003d82 0%, #002a5c 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #4fd1c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4fd1c7;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
}

/* Product Page Styles */
.product-hero {
    background: linear-gradient(135deg, #003d82 0%, #002a5c 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.product-hero .hero-buttons {
    display: flex;
    justify-content: center;
    width: 100%;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.product-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-content {
    padding: 100px 0;
}

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

.content-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #10b981;
    font-weight: 500;
}

.benefits-list li:before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0070f3;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .product-hero h1 {
        font-size: 2.2rem;
    }
    
    .product-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
}


/* Additional styles for product pages */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-number {
    background: #0070f3;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

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

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

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

.process-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.process-item p {
    color: #666;
    line-height: 1.6;
}

.case-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.case-text h3 {
    color: #0070f3;
    margin-bottom: 1.5rem;
}

.case-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.result-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.result-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.result-value {
    display: block;
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
}

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

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

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

.strategy-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.strategy-item p {
    color: #666;
    line-height: 1.6;
}

.advantage-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-item h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list.negative li:before {
    content: "✗";
    color: #ef4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.comparison-list.positive li:before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.vs-divider {
    background: #0070f3;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

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

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

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

.type-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.type-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.type-features span {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.payment-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.payment-card h3 {
    color: #0070f3;
    margin-bottom: 1rem;
}

.payment-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.payment-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-benefits span {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.metric-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0070f3;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.case-highlight {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #0070f3;
    text-align: center;
}

.case-highlight h3 {
    color: #0070f3;
    margin-bottom: 1rem;
}

.case-highlight p {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-highlight cite {
    color: #333;
    font-weight: 500;
}

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

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

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

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

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-details span {
    color: #0070f3;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.alert-category h3 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.alert-list {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.alert-item:last-child {
    border-bottom: none;
}

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

.story-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h3 {
    color: #0070f3;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.story-insights {
    list-style: none;
    margin: 1.5rem 0;
}

.story-insights li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.5rem;
}

.story-insights li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

.story-actions {
    list-style: none;
    margin: 1rem 0;
}

.story-actions li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.story-actions li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0070f3;
    font-weight: bold;
}

.story-metrics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metric-highlight {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.metric-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.mobile-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.mobile-feature h3 {
    color: #333;
    margin-bottom: 1rem;
}

.mobile-feature p {
    color: #666;
    line-height: 1.6;
}

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

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

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

.campaign-card h3 {
    color: #0070f3;
    margin-bottom: 1rem;
}

.campaign-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.campaign-example {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0070f3;
}

.campaign-example strong {
    color: #333;
}

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

.intelligence-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.intelligence-item:hover {
    transform: translateY(-5px);
}

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

.intelligence-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.intelligence-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments for product pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .advantage-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vs-divider {
        order: 2;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .alerts-grid {
        grid-template-columns: 1fr;
    }
}


/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}



.product-hero .hero-buttons {
    margin-top: 30px; /* Ajuste conforme necessário */
}



@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}




.nav-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem; /* Diminuído de 1.8rem para 1.5rem */
    color: black;
}

.nav-logo h2 span.red-dash {
    color: red;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: white; /* Default to white for footer */
}

.footer-section h3 span.red-dash {
    color: red;
}




.product-hero .hero-buttons {
    margin-bottom: 30px;
}


