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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1A202C;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #E53E3E;
}

.logo .pro {
    color: #1A202C;
}

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

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

.nav a:hover {
    color: #E53E3E;
}

.cta-nav {
    background: #E53E3E;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-nav:hover {
    background: #C53030;
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: #E53E3E;
}

.hero-title .brand {
    color: #1A202C;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #2D3748;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #E53E3E;
}

.stat-label {
    font-size: 0.9rem;
    color: #4A5568;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: #C53030;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

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

.btn-secondary:hover {
    background: #E53E3E;
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #2D3748;
    border: 2px solid #E2E8F0;
}

.btn-outline:hover {
    background: #E53E3E;
    color: white;
    border-color: #E53E3E;
    transform: translateY(-3px);
}

.btn-success {
    background: #38A169;
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-success:hover {
    background: #2F855A;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(56, 161, 105, 0.3);
}

.hero-image {
    position: relative;
    
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.badge {
    background: rgba(229, 62, 62, 0.95);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

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

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

.section-header p {
    font-size: 1.2rem;
    color: #4A5568;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #E53E3E, #38A169);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #E53E3E;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    color: #E53E3E;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Market Opportunity Section */
.market-opportunity {
    padding: 5rem 0;
    background: #F7FAFC;
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E53E3E, #C53030);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E53E3E;
    display: block;
    margin-bottom: 0.5rem;
}

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

.market-explanation {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.market-explanation h3 {
    font-size: 2rem;
    color: #1A202C;
    margin-bottom: 1.5rem;
}

.market-explanation p {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.7;
}

/* Business Models Section */
.business-models {
    padding: 5rem 0;
    background: white;
}

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

.model-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.model-card.featured {
    border-color: #E53E3E;
    transform: scale(1.05);
}

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

.model-header h3 {
    font-size: 2rem;
    color: #1A202C;
    margin-bottom: 1rem;
}

.model-price {
    font-size: 1.5rem;
    color: #E53E3E;
    font-weight: 700;
    margin-bottom: 2rem;
}

.model-revenue {
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.revenue-label {
    display: block;
    color: #4A5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.revenue-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #38A169;
}

.model-features {
    margin-bottom: 2rem;
}

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

.feature i {
    color: #38A169;
    font-size: 1.2rem;
}

/* Differentials Section */
.differentials {
    padding: 5rem 0;
    background: #F7FAFC;
}

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

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.differential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38A169, #2F855A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.differential-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1A202C;
}

.differential-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* Financial Data Section */
.financial-data {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    color: white;
}

.financial-content {
    text-align: center;
}

.financial-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.financial-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.financial-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.financial-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: #38A169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #38A169;
    display: block;
}

.financial-stat .stat-content .stat-label {
    font-size: 0.9rem;
    color: white;
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: #F7FAFC;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1A202C;
}

.cta-text p {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    color: #38A169;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E53E3E;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #1A202C;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand .pro {
    color: #E53E3E;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #E53E3E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #38A169;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E53E3E;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #E53E3E;
}

.link-group p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2D3748;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .financial-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .model-card.featured {
        transform: none;
    }
}

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

.stat-card,
.differential-card,
.model-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}



/* Logo Styles */
.logo-img {
    height: 50px; /* Adjust as needed */
    width: auto;
}

.logo-footer-img {
    height: 40px; /* Adjust as needed */
    width: auto;
}

/* Hero Section Optimization for new image */
.hero-content {
    grid-template-columns: 1.2fr 0.8fr; /* Give more space to text */
}

.hero-image .image-container {
    box-shadow: none; /* Remove shadow for cleaner look */
    border-radius: 20; /* Remove border radius */
  
}

.hero-image img {
    object-fit: contain; /* Ensure image fits without cropping */
    max-height: 600px; /* Limit height to prevent excessive size */
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-image img {
        max-height: 400px;
    }
}



.model-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

/* Zoom suave nas imagens dos modelos */
.model-image {
    overflow: hidden;
    border-radius: 16px;
}

.model-image img {
    width: 100%;
    transition: transform .5s ease, filter .5s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.07);
    filter: brightness(1.05);
}


/* Ajustar visual do formulário Brevo dentro do card */
.contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.sib-form {
    background-color: transparent !important;
}

#sib-container {
    max-width: 100% !important;
    border-radius: 25px !important;
    border-width: 0 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* deixa o dropdown do Brevo aparecer por cima */
.sib-multiselect{ position: relative; }
.sib-multiselect .sib-menu{ z-index: 99999 !important; }

/* evita o menu ser cortado por overflow do layout */
#sib-form-container,
#sib-container,
.sib-form,
.form-section,
.contact-section,
.hero,
.container{
  overflow: visible !important;
}
