:root {
  --accent: #b0cb1f;
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #6b6b6b;
  --radius: 14px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, Arial, sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

p {
 text-align: center;

}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  font-size: 1.4rem;
}

/* === NAV === */
.main-nav {
  display: flex;
  gap: 1rem;
}
.main-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  transition: 0.3s;
}
.main-nav a:hover {
  background: rgba(176, 203, 31, 0.12);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}
.main-nav.open {
  display: flex !important;
}

/* ================================  
   📱 NAVBAR MOBILE FIX — FINAL  
================================ */

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
}

/* Menu desktop */
.main-nav {
  display: flex;
  gap: 1rem;
}

/* Botão hamburguer só aparece no mobile */
.nav-toggle {
  display: none;
}

/* --- ESTILOS MOBILE --- */
@media (max-width: 900px) {

  /* Botão hamburguer visível */
  .nav-toggle {
    display: block;
    z-index: 100;
    cursor: pointer;
  }

  /* Menu escondido inicialmente */
  .main-nav {
    position: fixed;
    top: 0;
    right: -260px; /* escondido */
    height: 100vh;
    width: 240px;
    background: #fff;
    flex-direction: column;
    padding: 2rem 1.2rem;
    gap: 1.2rem;
    transition: 0.35s ease;
    box-shadow: -2px 0 12px rgba(0,0,0,0.2);
    z-index: 99;
  }

  /* Menu aberto */
  .main-nav.open {
    right: 0;
  }

  /* Overlay visível */
  .nav-overlay.show {
    display: block;
  }

  .main-nav a {
    padding: 0.6rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
  }
}


/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  background: url("../assets/Foto\ Inicial/house-shine-servicos-lavandaria-sistema-avenca.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
   font-family: 'Pacifico', cursive;
}

.hero span {
  font-size: 5.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.hero .accent {
  color: #b0cb1f;
   font-family: 'Pacifico', cursive;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn.primary {
  background-color: #b0cb1f;
  color: #000;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary:hover {
  background-color: #98b21a;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: 0.3s;
}

.btn.secondary:hover {
  background-color: #fff;
  color: #000;
}

/* ===== SOBRE NÓS ===== */
.sobre-nos {
  background-color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a8c400;
  margin-bottom: 10px;
}

.section-description {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  justify-content: center;
  align-items: start;
}

.sobre-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.sobre-item i {
  font-size: 2.5rem;
  color: #a8c400;
  min-width: 50px;
  text-align: center;
}

.sobre-item h3 {
  font-size: 1.3rem;
  color: #a8c400;
  margin-bottom: 5px;
}

.sobre-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

.sobre-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sobre-item {
    text-align: center;
    flex-direction: column;
  }
}

/* ===== SERVIÇOS ===== */
.servicos {
  background-color: #2b2b2b;
  position: relative;
  padding: 100px 0;
  color: #333;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  border-bottom-left-radius: 50% 30%;
  border-bottom-right-radius: 50% 30%;
  transform: translateY(-50%);
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.servico-card {
  background-color: #fff;
  width: 300px;
  text-align: center;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.servico-header {
  background-color: #b0cb1f;
  color: #000;
  padding: 25px 0;
  font-weight: 700;
}

.servico-header i {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.servico-body {
  padding: 30px 20px;
}

.servico-body p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333;
}

.servico-body .taxa {
  color: #b0cb1f;
  font-weight: 600;
}

.servico-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.servico-body ul li {
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0;
  font-size: 0.95rem;
}

.btn-servico {
  display: inline-block;
  background-color: #b0cb1f;
  color: #000;
  padding: 12px 25px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-servico:hover {
  background-color: #98b21a;
  color: #fff;
}

/* Responsivo */
@media (max-width: 950px) {
  .servicos-grid {
    flex-direction: column;
    align-items: center;
  }

  .servico-card {
    width: 90%;
    max-width: 350px;
  }
}

/* ===== Status Empresa ===== */
.stats-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  padding: 100px 0;
  color: white;
  background: url("../assets/Status Empresa/images.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* Camada escura tipo #333 com transparência */
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.8); /* #333 com 80% de opacidade */
  z-index: 0;
}

/* Conteúdo à frente da imagem */
.stat {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat i {
  font-size: 40px;
  color: white;
  display: block;
  margin-bottom: 10px;
}

.number {
  font-size: 40px;
  font-weight: bold;
  color: #b0d235; /* verde igual ao do exemplo */
}

.label {
  color: #ccc;
  font-size: 14px;
  letter-spacing: 1px;
}


/* ===== Contato ===== */

.contact-section {
  background: url('../assets/Contato/ep_naturalwhite.png') center/cover no-repeat;
  position: relative;
  padding: 60px 0;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.85);
}

.preco-chamada {
    color: #b0d235;
    text-align: center;
    font-size: 12px; /* podes ajustar */
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  color: #fff;
}

.contact-info {
  flex: 1;
  max-width: 40%;
}

.contact-info h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info i {
  color: #b0cb1f;
  margin-right: 8px;
}

.contact-info a {
  color: #b0cb1f;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.social a {
  color: #b0cb1f;
  font-size: 1.2rem;
  margin-right: 12px;
}

.social {
    text-align: center;
}

.siga-nos {
    font-weight: bold;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}


.contact-form {
  flex: 1;
  max-width: 50%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-family: inherit;
}

button {
  background: #b0cb1f;
  border: none;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #9cb21b;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy label {
  line-height: 1.4;
}

.privacy a {
  color: #b0cb1f;
  text-decoration: none;
}

.privacy a:hover {
  text-decoration: underline;
}


#formStatus {
  margin-top: 10px;
  font-weight: 500;
}

/* ===== Preçários ===== */

/* ===== Preçário Engomadoria ===== */

.tabela-precos-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; 
  text-align: center;
  margin: 0 auto; 
  padding: 0;
  width: 100%;
  max-width: 600px;
  min-width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tabela-precos-centro img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}

/* ===== Preçário Engomadoria & Lavandaria ===== */

.tabela-precos-lavandaria-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; 
  text-align: center;
  margin: 0 auto; 
  padding: 0;
  width: 100%;
  max-width: 600px;
  min-width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tabela-precos-lavandaria-centro img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}

/* ===== Preçário Outros Serviços ===== */

.tabela-precos-otherservices-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; 
  text-align: center;
  margin: 0 auto; 
  padding: 0;
  width: 100%;
  max-width: 600px;
  min-width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tabela-precos-otherservices-centro img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
}


/* Ajuste automático para telemóvel */
@media (max-width: 600px) {
  .tabela-precos-imagem {
    width: 80%;             /* um pouco maior em ecrãs pequenos */
  }
}







/* === FEATURES === */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}
.feature {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1.25rem;
  border-radius: 12px;
  transition: 0.3s;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* === GALLERY === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}
.gallery img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* === TESTEMUNHOS === */
.testemunhos {
  background: #fafafa;
  padding: 3rem 0;
  text-align: center;
}
.testemunhos h2 {
  margin-bottom: 2rem;
}
.testemunho {
  max-width: 700px;
  margin: 0 auto 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.testemunho p {
  font-style: italic;
  color: var(--muted);
}
.testemunho strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--accent);
}

/* === CONTACTO === */
.contact-section {
  padding: 3rem 0;
}
.contact-section form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
input, textarea {
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  width: 100%;
}
button {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  opacity: 0.85;
}

/* === MAP === */
.map {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* === FOOTER === */
.site-footer {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.footer-bottom {
  padding-top: 1rem;
  text-align: center;
  color: var(--muted);
}

/* === ANIMAÇÕES === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === RESPONSIVO === */
@media(max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    flex-direction: column;
  }
  .nav-toggle {
    display: block;
  }
}

/* ===== TOPO DE CONTACTOS ===== */
.topbar {
  background-color: #b0cb1f;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.4rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
}
.topbar-item i {
  margin-right: 6px;
}

/* ===== CABEÇALHO ===== */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}
.logo img {
  height: 60px;
}
.main-nav {
  display: flex;
  gap: 1rem;
}
.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #b0cb1f;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000;
}
.topbar-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.topbar-item a:hover {
  opacity: 0.8;
  text-decoration: underline;
}


/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: 75px;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  }
  .main-nav a {
    padding: 0.5rem 0;
  }
  .nav-toggle {
    display: block;
  }
}

/* ================================
   📱 Smartphones (até 480px)
================================ */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 2rem;
  }

  .hero span {
    font-size: 3.2rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info, 
  .contact-form {
    max-width: 100%;
  }

  .stats-section {
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
  }
}

/* ================================
   📱 Tablets (481px – 900px)
================================ */
@media (min-width: 481px) and (max-width: 900px) {

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero span {
    font-size: 4.5rem;
  }

  .stats-section {
    gap: 60px;
    flex-wrap: wrap;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info, 
  .contact-form {
    max-width: 90%;
    margin: auto;
  }
}

/* ================================
   🖥️ PCs grandes (+1400px)
================================ */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }

  .hero-content {
    max-width: 900px;
  }
}

