<style>
/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Cores personalizadas (substitui laranja/amarelo por verde) */
.text-green-400 { color: #86efac; }
.text-green-500 { color: #22c55e; }
.border-green-500 { border-color: #22c55e; }
.bg-green-500 { background-color: #22c55e; }

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==================== CARROSSEL ==================== */
.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #000000 100%);
    padding-bottom: 15px;
}

.carousel-track {
    display: flex;
    animation: scroll-infinite 40s linear infinite;
    width: fit-content;
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    margin: 0 2rem;
    padding: 1.5rem 2rem;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-item:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    background: rgba(17, 24, 39, 0.95);
}

.logo-item img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.1);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.logo-item:hover img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.1);
}

@keyframes scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.tech-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.logo-item:hover .tech-indicator {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ==================== VANTAGENS ==================== */
.advantages-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #000000 0%, #0f172a 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.section-badge span {
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 2px;
}

.title-highlight {
    background: linear-gradient(135deg, #22c55e, #86efac);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    will-change: transform;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(34,197,94,0.05) 0%, rgba(134,239,172,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.advantage-card:hover::before { opacity: 1; }

.icon-container {
    width: 4rem;
    height: 4rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.advantage-card:hover .icon-container {
    background: rgba(34, 197, 94, 0.3);
    transform: scale(1.1);
}

.icon-svg {
    width: 2rem;
    height: 2rem;
    fill: #22c55e;
    transition: all 0.4s ease;
}

.advantage-card:hover .icon-svg {
    fill: #16a34a;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.3));
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: color 0.4s ease;
}

.advantage-card:hover .card-title { color: #22c55e; }

.card-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 1px;
    width: 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .progress-bar { width: 100%; }

/* ==================== CONTADORES E CTA ==================== */
.partners-count,
.sistemas-counter {
    display: inline-flex;
    align-items: center;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #22c55e;
    margin-bottom: 1rem;
}
.partners-count::before { content: '⚡'; margin-right: 0.5rem; }
.sistemas-counter::before { content: '🚀'; margin-right: 0.5rem; }

.cta-sistemas {
    background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(134,239,172,0.1));
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    transition: all 0.4s ease;
}
.cta-sistemas:hover {
    border-color: rgba(34,197,94,0.4);
    transform: translateY(-4px);
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #000;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.25);
}

/* ==================== BOTÃO WHATSAPP ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: pulse-whatsapp 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon { width: 32px; height: 32px; fill: white; transition: all 0.3s ease; }

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 768px) {
    .logo-item { margin: 0 1rem; padding: 1rem 1.5rem; min-width: 160px; }
    .logo-item img { max-width: 100px; max-height: 40px; }
    .carousel-track { animation-duration: 30s; }
    .advantages-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .advantage-card { padding: 1.5rem; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
</style>
