.orange {
    color: #f07224;
}

.sitename {
    font-weight: bold !important;
}

.navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
        color: #f07224;
    }


.btn-agendar {
    background-color: #f07224;
    border-color: #f07224;
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-agendar:hover {
    background-color: #e65500;
    border-color: #e65500;
    color: var(--contrast-color);
}

.accent-text {
    color: #f07224 !important;
}

.bg-azul {
    background-color: #072641 !important;
}

.btn-cta {
  background-color: #ff7f50; /* laranja da marca */
  color: #fff;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #e96b3f; /* tom mais escuro no hover */
  color: #fff;
}

.scroll-top {
    background-color: #f07224 !important;
}

/* Reset básico para o botão */
.btn-reset { background: none; border: none; padding: 0; cursor: pointer; }

/* Estilo do botão hamburguer */
.mobile-nav-toggle {
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  transition: background-color .15s ease, transform .15s ease;
  z-index: 2001; /* acima do menu */
}
.mobile-nav-toggle:focus { outline: 2px solid rgba(0,0,0,0.12); outline-offset: 2px; }
.mobile-nav-toggle:hover { background-color: rgba(0,0,0,0.04); transform: scale(1.02); }

/* NAV padrão (desktop) */
.navmenu { position: static; background: transparent; border: none; }

/* Estilos do UL para mobile (ajuste visual conforme necessário) */
.navmenu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.5rem; align-items: center; }
.navmenu ul li a { text-decoration: none; }

/* Mobile: overlay full-screen (p/ telefones) */
@media (max-width: 767.98px) {
  .navmenu {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    width: 100%;
    height: 100%;
    background: rgba(15,23,42,0.98); /* cor do overlay */
    padding: 4.5rem 1.5rem 2rem 1.5rem;
    transform: translateY(-10%); /* pequeno offset inicial */
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 2000;
    display: block;
  }

  .navmenu ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
  }

  .navmenu ul li a {
    color: #000000;
    font-size: 1.125rem;
    font-weight: 600;
    padding: .5rem .25rem;
  }

  /* quando aberto */
  .navmenu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Tablet: slide-in lateral (ex.: >=768px e <=1199.98px) */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .navmenu {
    position: fixed;
    top: 0;
    right: -320px; /* fora da tela por padrão */
    width: 320px;
    height: 100vh;
    background: #fff;
    padding: 4.5rem 1.25rem;
    box-shadow: -6px 0 30px rgba(0,0,0,0.12);
    transition: right .28s cubic-bezier(.2,.8,.2,1);
    z-index: 2000;
  }

  .navmenu ul {
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }

  .navmenu ul li a {
    color: #111827;
    font-weight: 600;
    padding: .5rem .25rem;
  }

  .navmenu.open {
    right: 0;
  }
}

/* Garantir comportamento desktop normal (>=1200px) */
@media (min-width: 1200px) {
  .mobile-nav-toggle { display: none !important; }
  .navmenu { position: static !important; display: block !important; background: transparent !important; height: auto !important; padding: 0 !important; box-shadow: none !important; }
  .navmenu ul { display: flex; flex-direction: row; gap: 1.5rem; }
  .navmenu ul li a { color: inherit; }
}


/* MOBILE – 100% overlay */
@media (max-width: 767.98px) {
  #navmenu {
    padding: 4.5rem 2rem 2rem 2rem !important; /* aumenta espaço lateral */
  }

  #navmenu ul {
    gap: 1.5rem !important; /* mais espaçamento entre links */
  }

  #navmenu ul li a {
    display: block;
    width: 100%;
    padding: 0.75rem 0.5rem; /* aumenta hit-area */
    border-radius: 6px;
  }
}

/* TABLET – menu lateral */
@media (min-width: 768px) and (max-width: 1199.98px) {
  #navmenu {
    padding: 50rem 2rem 2rem 2rem !important; /* mais espaçamento lateral */
    width: 320px; /* ajustar se quiser */
  }

  #navmenu ul {
    gap: 1.25rem !important;
  }

  #navmenu ul li a {
    padding: 0.6rem 0.4rem;
    border-radius: 6px;
  }
}


.text-orange {
    color: #ff7f50 !important;
}

.btn-orange {
    background-color: #ff7f50;
    border-color: #ff7f50;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-blue {
    background-color: #007bff;
    border-color: #007bff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #ffffff;
}


.btn-orange:hover {
    background-color: #b4502c;
    border-color: #e96b3f;
    color: #ffffff;
}

    /* Altura exata do seu header */
    .with-navbar {
        padding-top: 90px; /* ajuste fina: 80–110 dependendo da altura real */
    }

    @media (max-width: 768px) {
        .with-navbar {
            padding-top: 70px;
        }
    }


 .status-badge {
        display: inline-block;
        padding: 8px 14px;
        background: #f0f0f0;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1.1rem;
    }


section:first-of-type {
    margin-top: 0px; /* altura do header */
}


.bg-orange {
    background-color: #ff7f50 !important;
    color: #ffffff !important;
}

.btn-outline-orange {
    color: #ff7f50;
    border-color: #ff7f50;
}

.border-orange {
    border-color: #ff7f50 !important;
}