/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

.hidden {
    display: none;
}

/* Gradientes baseados na imagem */
.gradient-bg {
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
}

.gradient-purple-red {
    background: linear-gradient(135deg, #7c3aed 0%, #dc2626 100%);
}

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

/* Banner Principal - OCULTO */
#banner-section {
    display: none !important;
}

/* Banner Principal - APENAS IMAGEM, SEM CONTEÚDO */
.banner-section {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    padding: 0;
    min-height: auto;
    display: block;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    width: 100%;
}

/* BANNER RESPONSIVO - IMAGENS ESPECÍFICAS POR DISPOSITIVO */
/* Desktop: usa banner_desktop.png (1920x800) - SE AJUSTA À LARGURA DA TELA */
.banner-section {
    background-image: url('../images/banners/banner_desktop.png');
    aspect-ratio: 1920 / 800;
    height: auto;
}

/* OCULTAR TODO CONTEÚDO DO BANNER - DESKTOP */
.banner-section .banner-content {
    display: none;
}

/* Mobile: APENAS IMAGEM DO BANNER - SEM TEXTO, SEM BOTÕES (750x500) - SE AJUSTA À LARGURA */
@media (max-width: 768px) {
    .banner-section {
        background-image: url('../images/banners/banner_mobile.png') !important;
        background-size: cover !important;
        background-position: center center !important;
        aspect-ratio: 750 / 500 !important;
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
    }
    
    /* OCULTAR TODO O CONTEÚDO - APENAS IMAGEM */
    .banner-content {
        display: none !important;
    }
}

/* CSS CONFLITANTE REMOVIDO - USANDO APENAS A REGRA ACIMA */

.banner-section.has-image {
    background-image: var(--banner-bg-image);
}

/* Removido - usando apenas a regra simples acima */

.banner-section.overlay-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-section.overlay-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.banner-section.overlay-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(124, 58, 237, 0.8) 100%);
    z-index: 1;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

/* DESABILITADO - Banner só mostra imagem, sem conteúdo */
/* .banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.banner-text {
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
}

.banner-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: clamp(1.1, 1.2, 1.3);
    margin-bottom: clamp(18px, 3vw, 24px);
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    width: fit-content;
    transform-origin: left center;
}

.banner-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e7ff;
    font-weight: 400;
}

.banner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 15;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-button.primary {
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
    color: white;
}

.banner-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.banner-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.banner-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.banner-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.banner-img:hover {
    transform: scale(1.02);
}
*/ /* FIM DO COMENTÁRIO - Todo CSS do banner desabilitado */

/* DESABILITADO - Banner só mostra imagem */
/* Responsivo Banner - CORRIGIDO PARA MOBILE */
/* @media (max-width: 1200px) {
    .banner-content {
        max-width: 1000px;
        gap: 40px;
    }
} */


/* DESABILITADO - Banner só mostra imagem */
/* @media (max-width: 968px) {
    .banner-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 55vh;
        padding: 35px 0;
    }
    
    .banner-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .banner-buttons {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .banner-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .banner-image {
        order: -1;
        max-width: 250px;
        margin: 0 auto;
    }
} */

/* DESABILITADO - Banner só mostra imagem */
/* @media (max-width: 640px) {
    .banner-section {
        min-height: 45vh;
        padding: 25px 0;
    }
    
    .banner-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .banner-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .banner-button {
        width: 100%;
        max-width: 260px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
} */

/* DESABILITADO - Banner só mostra imagem */
/* @media (max-width: 480px) {
    .banner-section {
        min-height: 40vh;
        padding: 20px 0;
    }
    
    .banner-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        line-height: 1.3;
        margin-bottom: 12px;
        word-break: break-word;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .banner-button {
        max-width: 240px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }
} */

/* DESABILITADO - Banner só mostra imagem */
/* @media (max-width: 360px) {
    .banner-section {
        min-height: 45vh;
        padding: 10px 0;
    }
    
    .banner-title {
        font-size: clamp(1.1rem, 7vw, 1.6rem);
        line-height: 1.2;
    }
    
    .banner-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .banner-button {
        max-width: 220px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
} */

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #dc2626;
    margin: 0;
}

.header-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-left: auto;
}

/* Hero Section - Exatamente como na imagem */
.hero-section {
    padding: 80px 0;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    display: inline-block;
    background: white;
    color: #dc2626;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Statistics Section - Como na imagem */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.stat-icon-img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.stat-icon-emoji {
    font-size: 3rem;
}

.stat-icon-img:not(.hidden) + .stat-icon-emoji {
    display: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 10px;
}

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

/* Business Solutions Section - Seção vermelha */
.business-section {
    padding: 60px 0;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
}

.business-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.business-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Pillars Section - 3 pilares como na imagem */
.pillars-section {
    padding: 80px 0;
    color: white;
    background: linear-gradient(135deg, #7c3aed 0%, #dc2626 100%);
}

.pillars-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    background: white;
    color: #333;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #dc2626;
}

.pillar-description {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section - 4 passos */
.how-section {
    padding: 80px 0;
    background: white;
}

.how-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #333;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.step-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Technology Section */
.tech-section {
    padding: 60px 0;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #7c3aed 0%, #dc2626 100%);
}

.tech-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tech-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Final CTA Section */
.final-section {
    padding: 80px 0;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #dc2626 0%, #7c3aed 100%);
    border-radius: 50px 50px 0 0;
    margin-top: 40px;
}

.final-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-button {
    display: inline-block;
    background: white;
    color: #dc2626;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.final-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

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

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

.footer-company {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #dc2626;
}

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #374151;
    opacity: 0.6;
}

/* Responsividade */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        line-height: 1.3;
        margin-bottom: 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-section {
        padding: 50px 0;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        line-height: 1.35;
        margin-bottom: 22px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.55;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .business-title,
    .pillars-title,
    .how-title,
    .tech-title,
    .final-title {
        font-size: clamp(1.8rem, 4vw, 2rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        line-height: 1.4;
        margin-bottom: 18px;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-section,
    .pillars-section,
    .how-section,
    .final-section {
        padding: 40px 0;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: clamp(1.2rem, 7vw, 1.6rem);
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .container {
        padding: 0 10px;
    }
}
