:root{
  --verde:#0b7a4d;
  --vermelho:#b71c1c;
  --bg:#f7f7f8;
  --text:#222;
  --card:#fff;
}
*{box-sizing:border-box}
body{
    font-family:Inter,system-ui,Arial,sans-serif;
    margin:0;
    color:var(--text);
    background:var(--bg)
}
.container{
    max-width:1100px;
    margin:0 auto;
    padding:20px
}
.site-header{
    background:linear-gradient(90deg,var(--verde),#0d8c52);
    color:#fff;
    padding:14px 0
}
.brand{
    display:flex;
    align-items:center;
    gap:12px
}
.logo{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:8px;
    background:#fff;
    padding:6px
}
.site-header a{color:#fff;margin-left:12px;text-decoration:none;font-weight:600}
.hero{background:linear-gradient(180deg,rgba(11,122,77,0.08),transparent);padding:36px 0;margin-bottom:18px}
.hero h2{font-size:28px;margin:0 0 8px}
.btn{display:inline-block;background:var(--vermelho);color:#fff;padding:10px 16px;border-radius:8px;text-decoration:none;margin-top:8px}
.featured{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-bottom:28px}
.card{background:var(--card);border-radius:10px;padding:12px;box-shadow:0 6px 18px rgba(0,0,0,0.06)}
.card img{width:100%;height:160px;object-fit:cover;border-radius:8px}
.card h4{margin:8px 0 4px}
.card p{margin:0 0 8px;font-size:14px}
.card .meta{display:flex;justify-content:space-between;font-size:13px;color:#555}
.why, .testimonials{
  margin:28px 0;
}
.testimonials .cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.testi{background:#fff;padding:12px;border-radius:8px;box-shadow:0 4px 12px rgba(0,0,0,0.04)}
.site-footer{background:#0b7a4d;color:#fff;padding:14px;margin-top:30px;text-align:center;font-size:14px}
@media(max-width:700px){.site-header .contact{display:block;margin-top:10px}}


/* 🔝 Navbar fixa e responsiva */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0b7a4d;
  color: #fff;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #ffce00;
}

/* Botão hamburger */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #0b7a4d;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 15px;
  }
}

/* 🔻 FOOTER GLOBAL */
.site-footer {
  background: #0b7a4d;
  color: #fff;
  padding-top: 30px;
  margin-top: 40px;
  font-family: Inter, Arial, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.footer-brand h3 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.5;
  color: #e6e6e6;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  border-bottom: 2px solid #1b9c6b;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ffce00;
}

.footer-contact p {
  font-size: 14px;
  margin: 4px 0;
}

.footer-contact .social {
  margin-top: 10px;
}

.footer-contact .social a {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  transition: color 0.2s;
}

.footer-contact .social a:hover {
  color: #ffce00;
}

.footer-bottom {
  background: #09633f;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: #ddd;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsivo */
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand h3 {
    justify-content: center;
  }
  .footer-contact .social {
    justify-content: center;
  }
}

/* Responsivo */
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand h3 {
    justify-content: center;
  }
  .footer-contact .social {
    justify-content: center;
  }
}

.site-header .contact
{float:right}

.testimonials { 
  max-width:1000px; 
  margin:40px auto; 
  padding:0 20px; 
  text-align:center; 
}
.testimonials h2 { color:#0b7a4d; margin-bottom:24px; }
.testi-list { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; }
.testi-card { 
  background:#fff; 
  padding:20px; 
  border-radius:12px; 
  box-shadow:0 6px 18px rgba(0,0,0,0.06); 
  max-width:280px; 
  text-align:center; 
}
.testi-card img { 
  width:80px; 
  height:80px; 
  object-fit:cover; 
  border-radius:50%; 
  margin-bottom:12px; 
}
.testi-card strong { display:block; margin-bottom:8px; color:#0b7a4d; }
.testi-card p { font-size:0.95rem; color:#555; }

.featured {
  background: #fff;
  padding: 40px 0;
}

.featured h2 {
  text-align: center;
  color: #0b7a4d;
  margin-bottom: 25px;
}

/* =======================
   SLIDER DESTAQUE FULLSCREEN
======================= */
.featured-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.featured-slider .slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.featured-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
  transition: opacity 1s ease-in-out;
}

.featured-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-slider .slide.active {
  display: block;
  opacity: 1;
}

.featured-slider .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
}

.featured-slider .caption h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}

.featured-slider .caption p {
  font-size: 1.2rem;
  margin-top: 8px;
  color: #d8ffd8;
}

/* Botões de navegação */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.7);
}

#prevBtn { left: 20px; }
#nextBtn { right: 20px; }

@media (max-width: 768px) {
  .featured-slider .caption {
    padding: 20px;
  }

  .featured-slider .caption h3 {
    font-size: 1.4rem;
  }

  .featured-slider .caption p {
    font-size: 1rem;
  }
}


.featured-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.slider-track {
  display: flex;
  transition: transform .5s ease;
}

.slide-item {
  min-width: 100%;
  position: relative;
}

.slide-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.slide-info {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #00000090;
  padding: 15px 20px;
  border-radius: 12px;
  color: #fff;
}

.slide-info h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}

.slide-info p {
  margin: 5px 0;
}

.slide-info .price {
  font-size: 20px;
  font-weight: bold;
  color: #67ff8a;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffffcc;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.slide-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
}

.indicator {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.indicator.active {
  background: #0b7a4d;
}
