body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f3f3;
}

/* ===== MENU ===== */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f8f8f8;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.menu-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px;

  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */

.menu-logo {
  margin-right: 40px;
}

.menu-logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* Links */

.menu-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Separadores */

.menu-links a + a {
  border-left: 1px solid #ccc;
  padding-left: 28px;
}

/* Links padrão */

.menu-links a {
  font-size: 18px;
  color: #111;
  text-decoration: none;
  padding: 10px 16px;
  transition: all 0.2s ease;
}

/* Link ativo */

.menu-links a.active {
  background: #e50914;
  color: white;
  border-radius: 4px;
}

/* Hover */

.menu-links a:hover {
  color: #e50914;
}

/* Evita o menu cobrir o conteúdo */

body {
  padding-top: 100px;
}

/* ===== FIM MENU ===== */












body {
  padding-top: 70px;
}


/* ===== HERO DESKTOP ===== */

.hero {
  max-width: 1400px;
  margin: 40px auto;
  background: white;
  border-radius: 20px;
  padding: 60px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  box-sizing: border-box;
}



/* ✅ ALTERAÇÃO 1: adicionar min-width: 0 */
.hero-text {
  width: 50%;
  min-width: 0;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 20px 0;
}

.hero-text h2 {
  margin-top: 0;
}

/* ✅ ALTERAÇÃO 2: remover nowrap */
.linha1 {
  display: block;
  font-size: clamp(26px, 3.2vw, 56px);
}

.cidade {
  font-weight: 800;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.hero-image {
  width: 50%;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* ===== RESPONSIVO (CELULAR) ===== */

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    padding: 30px 20px;
  }

  .hero-text,
  .hero-image {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .linha1 {
    white-space: normal;
  }

}

/* ===== LISTA ÁREA DE ATENDIMENTO ===== */

.hero-text ul {
  margin: 20px 0;
  padding-left: 22px;
  line-height: 1.6;
}

.hero-text li {
  margin-bottom: 10px;
  font-size: 18px;
  color: #555;
}

.hero-text li {
  margin-bottom: 10px;
  font-size: 18px;
  color: #555;
}

/* ===== SERVIÇOS ===== */

.servicos {
  max-width: 1400px;
  margin: 40px auto;
  padding: 60px;
  box-sizing: border-box;
}

.servicos h2 {
  margin-bottom: 40px;
  font-size: 34px;
  text-align: center;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.servico {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.servico:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.servico img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.servico p {
  margin-top: 14px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

/* ===== HERO SEM IMAGEM (COLUNA ÚNICA) ===== */

.hero-full .hero-text {
  width: 100%;
}

/* ===== CONTATO ===== */

.contato-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contato-card {
  background: white;
  width: 100%;
  max-width: 900px;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contato-card h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contato-bloco h2 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #444;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  padding: 16px;
  border-radius: 12px;
  background: #f7f7f7;
  transition: 0.2s ease;
}

.contato-item:hover {
  background: #ececec;
}

.contato-item img {
  width: 40px;
}

.contato-item a {
  font-size: 18px;
  text-decoration: none;
  color: #111;
}

.contato-item a:hover {
  color: #e50914;
}

@media (max-width: 768px) {

  .contato-card {
    padding: 40px 24px;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

/* ===== FIM CONTATO ===== */


/* ===============================
   HOME - AJUSTE (SEM QUEBRAR CIDADES)
================================ */

.home-hero {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  background: none;
}

.home-hero .banner {
  border-radius: 6px;
  overflow: hidden;
}

.home-hero .banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}


/* INTRO CENTRAL */
.intro {
  max-width: 760px;
  margin: 50px auto 0;
  text-align: center;
  padding: 0 20px;
}

.intro h1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 25px;
}

.intro p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* NOSSOS SERVIÇOS */
.services {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.services .title {
  font-size: 64px;
  font-weight: 300;
  color: #d0d0d0;
  margin-bottom: 40px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  padding: 35px;
}

.card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  color: #666;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .services .title {
    font-size: 42px;
  }
}


