
body {
    font-family: 'Poppins', sans-serif;
    background-color: #d5d5d5;
}

a{
    text-decoration: none;
}

/* Header Gradient */
.header-area {
    background: linear-gradient(135deg, #80be02, #affc18);
    color: #1c1c1c;
    padding: 25px 20px 35px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.icon-top i {
    font-size: 18px;
    margin-right: 10px;
}

/* Ícone topo */

.icon-top {
  font-size: 22px;
  cursor: pointer;
}

/* Overlay escuro */

.overlay {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(0,0,0,0.4);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 998;
}

/* Menu lateral */

.sidebar {
  position: fixed;

  top: 0;
  left: -260px; /* escondido */

  width: 260px;
  height: 100%;

  background-color: #111;

  padding: 20px;

  transition: 0.3s ease;

  z-index: 999;

  color: white;
}

/* Quando abre */

.sidebar.active {
  left: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Menu */

.menu-header {
  margin-bottom: 20px;
  color: #affc18;
}

.menu-list {
  list-style: none;
  padding: 0;
}

.menu-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);

  cursor: pointer;
}

.menu-list li:hover {
  color: #affc18; /* seu verde */
}

.search-box {
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 10px 15px;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #1c1c1c;
    width: 100%;
}

.search-box input::placeholder {
    color: #1c1c1c;
}

/* Cards */
.section-title {
    font-weight: 600;
    font-size: 16px;
}

.card-service {
    border-radius: 18px;
    border: none;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    background-color: #1c1c1c;
    overflow: hidden;
    color: #d5d5d5;
}

.card-service img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: top center;
}

.service-title {
    font-size: 1rem;
    font-weight: 600;
}

.service-price {
    color: #affc18;
    font-weight: 600;
}


.text-all{
    color: #1c1c1c;
}

.txt-info{
    color: #affc18;
    margin-left: 2rem;
}

.near-card {
    border-radius: 15px;
    padding: 12px;
    background: #1c1c1c;
    color: #d5d5d5;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

.near-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #affc18;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1c1c1c;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #d5d5d5;
    padding: 10px 0;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.05);
}

.bottom-nav i {
    font-size: 18px;
    color: #999;
}

.bottom-nav .active {
    color: #1c1c1c;
}

.container-service{
  width: 90%;
  margin: auto;
}