:root {
    --primary-color: #0056a6; /* Azul da logomarca */
    --secondary-color: #ff7d00; /* Laranja da logomarca */
    --dark-color: #333;
    --light-color: #f9f9f9;
    --gray-color: #f0f0f0;
    --text-color: #444;
    --hero-bg-color: #f5f7fa; /* Cor de fundo que combina com a logomarca */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section com logomarca em destaque (NÃO FIXA) */
#hero {
    padding: 80px 0 60px;
    background: #ffffff;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo-hero {
    max-width: 90%;
    height: auto;
    max-height: 250px; /* Logo GRANDE conforme requisito */
}

#hero h1 {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
}

#hero .highlight {
    font-weight: 600;
    color: var(--dark-color);
}

.platforms {
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    text-align: center;
}

.platforms p {
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-image {
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Navegação Simples (não fixa) */
.simple-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.simple-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.simple-nav ul li {
    margin: 0 15px;
}

.simple-nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.simple-nav ul li a:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e67100;
    transform: translateY(-2px);
}

.cta-button.primary {
    background-color: var(--secondary-color);
    font-size: 1.1em;
    padding: 15px 30px;
}

.cta-button.large {
    font-size: 1.2em;
    padding: 18px 36px;
}

/* Conceito Section */
#conceito {
    padding: 80px 0;
    background-color: var(--light-color);
}

#conceito h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

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

.conceito-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
}

.conceito-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Diferenciais Section */
#diferenciais {
    padding: 80px 0;
    background-color: white;
}

#diferenciais h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

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

.diferencial-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.diferencial-card .icon {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.diferencial-card h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Como Funciona Section */
#como-funciona {
    padding: 80px 0;
    background-color: var(--light-color);
}

#como-funciona h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

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

.processo-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.processo-card .numero {
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: 30px;
}

.processo-card h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin: 20px 0 15px;
}

.processo-image {
    position: relative;
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
}

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

/* Marketplaces Section */
#marketplaces {
    padding: 80px 0;
    background-color: white;
}

#marketplaces h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.marketplaces-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color);
}

.marketplaces-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.marketplace-logo {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    transition: transform 0.3s ease;
}

.marketplace-logo:hover {
    transform: translateY(-5px);
}

.marketplace-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* São Paulo Section */
#sao-paulo {
    padding: 80px 0;
    background: linear-gradient(135deg, #e4e8f0 0%, #f5f7fa 100%);
}

#sao-paulo h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.sao-paulo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.sao-paulo-text {
    flex: 1;
    min-width: 300px;
}

.sao-paulo-text .highlight {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.sao-paulo-text p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.sao-paulo-stats {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1em;
    color: var(--dark-color);
}

/* Equipe Section */
#equipe {
    padding: 80px 0;
    background-color: white;
}

#equipe h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.equipe-intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.equipe-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* CTA Final Section */
#cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #003b73 100%);
    color: white;
    text-align: center;
}

#cta-final h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

#cta-final p {
    font-size: 1.2em;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#cta-final .highlight {
    font-weight: 600;
    font-size: 1.3em;
    margin: 30px 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-contact {
    flex: 1;
    min-width: 300px;
}

.footer-contact h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-form button {
    width: 100%;
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.footer-info h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Animações */
.diferencial-card.animate,
.processo-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    #hero .container {
        max-width: 1400px;
    }
    
    .logo-hero {
        max-height: 300px; /* Logo ainda maior em telas grandes */
    }
    
    .hero-content {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .simple-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .simple-nav ul li {
        margin: 8px 0;
    }
    
    #hero {
        padding-top: 60px;
    }
    
    #hero h1 {
        font-size: 2.2em;
    }
    
    .logo-hero {
        max-width: 95%;
        max-height: 180px;
    }
    
    .diferenciais-grid,
    .processo-grid {
        grid-template-columns: 1fr;
    }
    
    .sao-paulo-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* Destaque Marketplaces */
.marketplace-destaque {
    background: linear-gradient(135deg, #0056a6 0%, #003b73 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.marketplace-destaque h3 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.destaque-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.marketplace-logo-destaque {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-center;
}

.marketplace-logo-destaque img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.destaque-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
}

.stat-numero {
    font-size: 3em;
    font-weight: 800;
    color: #ff7d00;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 1.1em;
    font-weight: 600;
}

.outros-marketplaces-title {
    font-size: 1.8em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Ajuste do grid de marketplaces */
.marketplaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.marketplace-logo {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    transition: transform 0.3s ease;
}

.marketplace-logo:hover {
    transform: translateY(-5px);
}

.marketplace-logo img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .marketplace-destaque {
        padding: 30px 20px;
    }
    
    .marketplace-destaque h3 {
        font-size: 1.5em;
    }
    
    .destaque-logos {
        gap: 20px;
    }
    
    .marketplace-logo-destaque {
        width: 180px;
        height: 100px;
    }
    
    .stat-numero {
        font-size: 2.5em;
    }
}
