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

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

    background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)),
    url('img/construcao.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(255, 107, 0, 0.3);
    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 SEGMENTS ===== */
.segments {
  padding: 80px 20px;
  background: #e2e8f0;
}

.segments .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.segments-header {
  text-align: center;
  margin-bottom: 50px;
}

.segments-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
}

.segments-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 650px;
  margin: 10px auto 0;
}

/* GRID */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.segment-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.segment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

/* ICON */
.icon.light {
  width: 55px;
  height: 55px;
  border-radius: 50%;

  background: #e2e8f0;
  color: #2563eb;

  display: grid;
  place-items: center;

  font-size: 20px;
  margin-bottom: 12px;
}

.icon.light i {
  line-height: 1;
}

/* TITLE */
.segment-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

/* LIST */
.segment-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

/* RESPONSIVO */
@media (max-width: 1024px) {
  .segments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.segments-card {
    text-align: center;
  }

@media (max-width: 640px) {
  .segments-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }

  .segments-grid ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
  }

  .segments-header h2 {
    font-size: 1.6rem;
  }

  .segments-header p {
    font-size: 1rem;
  }
}
/* ===== FIM SECTION SEGMENTS ===== */