.pronto-logo {
  max-height: 40px;
}

.pronto-logo-small {
  max-height: 30px;
}

.pronto-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.pronto-tagline {
  font-size: 14px;
  color: #ff0000;
  font-weight: 400;
  padding-left: 8px;
}

/* Tablets and mobile screens */
@media (max-width: 768px) {
  .pronto-logo {
    max-height: 20px;
  }

  .pronto-tagline {
    font-size: 8px;
    padding-left: 20px;
  }
}

.nav-alt-link.active {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff !important;
  background: #e11d07 !important;
  border-color: #e11d07 !important;
}

.nav-alt-link {
  font-size: 16px;
  font-weight: 500;
  color: #000000 !important;
  background: #eaeaea !important;
  border-color: #eaeaea !important;
}

.btn-pronto {
  color: #ffffff !important;
  background: #e11d07 !important;
}

.tel-pronto {
  color: #ec1f28 !important;
  font-size: 21px;
  font-weight: 500;
}

/* Button: center content and remove baseline shift from inline svgs */
.menu-toggle {
  display: inline-flex; /* center children */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 6px; /* adjust to taste or keep Tabler padding */
  box-sizing: border-box;
  position: relative;
}

/* wrapper keeps overlap area fixed */
.menu-toggle .icon-wrap {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  line-height: 0; /* remove any baseline / extra whitespace */
}

/* svg basics: remove baseline gap and let it fully scale to container */
.menu-toggle svg {
  display: block; /* removes baseline gap */
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

/* absolutely position icons so they exactly overlap and center */
.menu-toggle .icon {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  margin: auto;
  width: 24px;
  height: 24px;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.22s ease;
  transform-origin: 50% 50%;
}

/* initial/active states (same as earlier) */
.menu-toggle .icon-open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.menu-toggle .icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}
.menu-toggle.open .icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}
.menu-toggle.open .icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* optional: keep stroke consistent when scaling */
.menu-toggle svg path,
.menu-toggle svg line {
  vector-effect: non-scaling-stroke;
}

/* Hide on desktop (>=992px) */
@media (min-width: 767px) {
  .menu-toggle {
    display: none !important;
  }
}

.position-relative {
  display: inline-block;
}

.overlay-box {
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  background: #e00000;
  color: #fff;
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.overlay-title {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 20px;
}

.overlay-list {
  list-style: circle;
  padding-left: 0;
}

.overlay-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
}

.overlay-list i {
  margin-right: 10px;
  font-size: 18px;
}

@media (max-width: 500px) {
  .custom-mobile-spacing {
    margin-top: 53px;
    padding-top: 45px;
    padding-bottom: 80px;
  }
}

.footer-des {
  text-align: justify;
  padding-right: 25px;
}

.text-content {
  max-height: 60px; /* adjust as needed */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.text-content.expanded {
  max-height: 1000px; /* large enough to show full text */
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  color: #dc3545; /* Bootstrap danger color */
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}
.pronto-icon-text {
  font-size: 20px;
}

@media (max-width: 768px) {
  .pronto-icon-text {
    font-size: 16px !important;
  }
}
