/* ==========================================================================
   TRAMEI - BANNER EXPORTAÇÃO (CTA)
   ========================================================================== */

.banner-exportacao {
    padding: 100px 0;
    background: #6A3A9B;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner-exportacao::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://tramei.com.br/img/world-map-dots.png'); /* Pattern example */
    background-size: cover;
    opacity: 0.05;
}

.export-stamp {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 280px;
    height: 280px;
    border: 3px solid rgba(244, 162, 97, 0.15);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(244, 162, 97, 0.2);
    z-index: 1;
    pointer-events: none;
    padding: 30px;
}

.export-stamp span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
}

.export-stamp strong {
    font-size: 32px;
    display: block;
    line-height: 1.1;
    margin: 10px 0;
    font-weight: 800;
    text-transform: uppercase;
}

.export-stamp i, .export-stamp img {
    width: 140px;
    height: auto;
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.3;
    filter: brightness(0) invert(1);
}

.export-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.export-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(244, 162, 97, 0.2);
    color: #834fc0;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.banner-exportacao h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.banner-exportacao p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.export-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
}

.stat-item h4 {
    font-size: 32px;
    color: #834fc0;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .banner-exportacao h2 { font-size: 32px; }
    .export-stats { flex-direction: column; gap: 30px; }
}
