/* ===== INICIO BANNER ===== */
.banner {
    position: relative;

    min-height: 80vh; 
    padding: 120px 20px 60px;

    background: linear-gradient(rgba(0, 0, 0, 0.20), rgba(0, 0, 0, 0.20)),
    url('img/varejo.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/* CONTEÚDO */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeUp 1s ease-out;
}

/* TEXTOS */
.banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.banner h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* BOTÃO */
.btn-primary2 {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.btnbanner {
    text-align: left;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {

    .banner {
        padding: 140px 20px 80px; /* mais espaço topo (header) */
        text-align: center;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .banner h3 {
        font-size: 1.2rem;
    }

    .btnbanner {
        text-align: center; /* botão centralizado no mobile */
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/* ===== FIM BANNER ===== */



/* ===== INICIO SECTION ERP ===== */
.feature-card ul {
  text-align: start;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card ul li {
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

/* BULLET CUSTOM */
.feature-card ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #2563eb;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

.feature-card p {
    text-align: left;
    padding-left: 2%;
}

/* COLORS */
.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.purple {
  background: linear-gradient(135deg, #a855f7, #7e22ce);
}
/* ===== FIM SECTION ERP ===== */