* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

body {
  background: #f4f4f4;
  color: #222;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: #000;
  padding: 18px 0;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
}

.navbar a:hover {
  opacity: 0.7;
}

.logo img {
  height: 50px;
}
/* HERO */
.hero {
  position: relative;
  background: url("https://images.unsplash.com/photo-1581092334494-1d5f3d6c5b8b") center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
/* BOTÃO */
.btn {
  background: #000;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn:hover {
  background: #222;
}


/* SECTIONS */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* INFO BOX */
.info-box {
  background: #000;
  color: #fff;
  padding: 30px;
  border-radius: 6px;
}

.info-box i {
  margin-right: 10px;
}

/* BG */
.bg {
  background: #f5f5f5;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-left: 4px solid #000;
  font-weight: 600;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* FAQ */ 
.faq {  
  margin-bottom: 20px;  
} 

.faq h4 { 
  margin-bottom: 5px; 
} 
/* FOOTER */  
.footer { 
  background: #000; 
  color: #aaa;  
  text-align: center; 
  padding: 20px;  
} 

/* BOTÃO WHATSAPP FIXO */
.whatsapp-fixo {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-fixo:hover {
  transform: scale(1.1);
}
.quem-somos {
  background: #f7f7f7;
}

.quem-texto h2 {
  margin-bottom: 15px;
}

.quem-texto p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.quem-destaque {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}

.quem-destaque h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.quem-destaque ul {
  list-style: none;
  padding: 0;
}

.quem-destaque li {
  margin-bottom: 8px;
}

.assinatura {
  margin-top: 20px;
  font-style: italic;
}
/* QUEM SOMOS */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#quem-somos {
  padding: 80px 0;
  background: #f7f7f7;
}

#quem-somos h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #111;
}

#quem-somos p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}
/* ===== CONTATO CENTRALIZADO E DESTACADO ===== */
#contato {
  min-height: 80vh;              /* ocupa boa parte da tela */
  display: flex;
  align-items: center;           /* centraliza na vertical */
  justify-content: center;       /* centraliza na horizontal */
  background: #111;              /* fundo preto elegante */
  padding: 40px 20px;
}

.contato-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contato-card {
  background: #000;
  color: #fff;
  padding: 50px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border: 1px solid #222;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* TÍTULO */
.contato-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* TEXTO */
.contato-card p {
  font-size: 17px;
  margin-bottom: 12px;
  color: #ddd;
}

/* BOTÃO */
.contato-card .btn {
  margin-top: 25px;
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.contato-card .btn:hover {
  background: #e5e5e5;
}
/* ===== FIX PARA NÃO QUEBRAR O TOPO ===== */
#contato {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  padding: 40px 20px;
}
/* ===== NAVBAR ALINHADA À ESQUERDA ===== */
.navbar {
  background: #000;
  padding: 20px 0;
}

.navbar .nav {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* TUDO PRA ESQUERDA */
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
}

/* MENU */
.navbar nav {
  display: flex;
  gap: 25px;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

.navbar nav a:hover {
  opacity: 0.7;
}
/* ===== NAVBAR ESTILO CLÁSSICO (CENTRAL / LIMPO) ===== */
.navbar {
  background: #000;
  padding: 18px 0;
}

.navbar .nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo à esquerda, menu à direita */
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
}

/* MENU */
.navbar nav {
  display: flex;
  gap: 28px;
}

.navbar nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

/* detalhe fino no hover (estilo escritório) */
.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.navbar nav a:hover::after {
  width: 100%;
}
/* ===== UPGRADE ESTÉTICO PREMIUM (SEM MEXER NO HTML) ===== */
:root{
  --bg: #f3f3f3;
  --card: #ffffff;
  --text: #151515;
  --muted: #5a5a5a;
  --black: #000000;
  --shadow: 0 18px 55px rgba(0,0,0,.10);
  --shadow2: 0 10px 25px rgba(0,0,0,.12);
  --radius: 14px;
}

/* Tipografia */
body{
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h1, h2, h3{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: .2px;
}

/* Container mais premium */
.container{
  max-width: 1180px;
  padding: 0 26px;
}

/* Navbar mais “cara” */
.navbar{
  background: var(--black);
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
}

.navbar nav a{
  text-transform: uppercase;
  letter-spacing: .9px;
  font-size: 12.5px;
  opacity: .92;
}

.navbar nav a:hover{
  opacity: 1;
}

/* Hero com mais presença (sem mexer na estrutura) */
.hero{
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.hero h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.hero p{
  color: rgba(255,255,255,.88);
  max-width: 720px;
}

/* Botão com acabamento premium */
.btn{
  border: 1px solid rgba(255,255,255,.15);
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.btn:hover{
  transform: translateY(-2px);
  opacity: .95;
}

/* QUEM SOMOS */
#quem-somos{
  background: var(--card);
}

.about-text h2{
  position: relative;
  padding-bottom: 12px;
}

.about-text h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:64px;
  height:3px;
  background: var(--black);
}

.about-text p{
  color: var(--muted);
  font-size: 16.2px;
}

/* Foto com assinatura elegante */
.about-image img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: filter .35s ease, transform .35s ease;
}

.about-image img:hover{
  filter: grayscale(0%);
  transform: translateY(-3px);
}

/* Cards das áreas mais sofisticados */
.card{
  background: var(--card);
  color: var(--text);
  border-left: 5px solid var(--black);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,.14);
}

/* Contato com profundidade */
.contato-card{
  background: linear-gradient(145deg, #000, #141414);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

/* ===== ANIMAÇÃO SUAVE AO CARREGAR (SEM JS) ===== */
.section, .hero, .navbar{
  animation: fadeUp .55s ease both;
}

@keyframes fadeUp{
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE (SEM QUEBRAR) ===== */
@media (max-width: 900px){
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-image img{
    max-width: 420px;
    margin: 0 auto;
  }
  .navbar nav{
    gap: 16px;
  }
  /* ===== LOGO PREMIUM ===== */
.logo img {
  height: 52px;
  width: auto;
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

}
/* ===== ACABAMENTO PREMIUM (SEM MEXER NO HTML) ===== */

/* Tipografia/cores base */
body{
  background:#f3f3f3;
  color:#111;
}

/* Navbar */
.navbar{
  background:#000;
  padding:18px 0;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.navbar .nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo img{
  height:52px;
  width:auto;
  display:block;
}

.navbar nav a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
  letter-spacing:.8px;
  text-transform:uppercase;
  opacity:.9;
  position:relative;
}

.navbar nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#fff;
  transition:.25s;
}
.navbar nav a:hover{ opacity:1; }
.navbar nav a:hover::after{ width:100%; }

/* Hero */
.hero{
  padding:110px 0;
}
.hero h1{
  font-size:clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:.2px;
}
.hero p{
  margin-top:12px;
  max-width:720px;
  opacity:.9;
}
.btn{
  display:inline-block;
  margin-top:22px;
  padding:14px 28px;
  border-radius:8px;
  background:#000;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover{
  transform:translateY(-2px);
  opacity:.95;
  background:#111;
}

/* Quem somos */
#quem-somos{
  background:#fff;
}
.about-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:48px;
  align-items:center;
}
.about-text h2{
  position:relative;
  padding-bottom:12px;
}
.about-text h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:64px;
  height:3px;
  background:#000;
}
.about-text p{
  color:#444;
  font-size:16.2px;
  line-height:1.75;
  margin-bottom:14px;
}
.about-image img{
  width:100%;
  max-width:420px;
  border-radius:14px;
  box-shadow:0 18px 55px rgba(0,0,0,.12);
  display:block;
  margin-left:auto;
}

/* Áreas (cards) */
#areas{
  background:#f6f6f6;
}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:18px;
  margin-top:28px;
}
.card{
  background:#fff;
  border-left:5px solid #000;
  border-radius:14px;
  padding:22px 18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 55px rgba(0,0,0,.14);
}

/* FAQ */
.faq{
  background:#fff;
  border-radius:14px;
  padding:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  margin-top:14px;
}

/* Contato destacado e central */
#contato{
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111;
  padding:40px 20px;
}
.contato-wrapper{
  width:100%;
  display:flex;
  justify-content:center;
}
.contato-card{
  background:linear-gradient(145deg, #000, #141414);
  color:#fff;
  padding:52px 40px;
  max-width:640px;
  width:100%;
  text-align:center;
  border:1px solid #222;
  border-radius:14px;
  box-shadow:0 24px 70px rgba(0,0,0,.35);
}
.contato-card p{ color:#ddd; }

/* Mobile */
@media (max-width:900px){
  .about-grid{ grid-template-columns:1fr; }
  .about-image img{ margin:0 auto; max-width:460px; }
  .navbar nav{ gap:14px; flex-wrap:wrap; justify-content:flex-end; }
}
/* ===== LOGO (AJUSTE PROFISSIONAL) ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* controla tamanho SEM distorcer */
.logo img {
  height: 56px;        /* ideal: 50 a 60px */
  width: auto;         /* mantém proporção */
  max-width: 260px;    /* evita estourar no menu */
  display: block;
  object-fit: contain; /* garante que não corta */
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35)); /* acabamento */
  transition: transform .25s ease, opacity .25s ease;
}

/* efeito leve (premium) */
.logo img:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

/* ===== RESPONSIVO (CELULAR) ===== */
@media (max-width: 600px) {
  .logo img {
    height: 44px;
    max-width: 180px;
  }
}
/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whats-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  transition: transform .2s ease, opacity .2s ease;
}

.whats-float:hover{
  transform: translateY(-3px);
  opacity: .95;
}

/* no mobile fica um pouco menor */
@media (max-width: 600px){
  .whats-float{
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    font-size: 14px;
  }
}
/* ===== MODAL ÁREAS ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}

.modal-content {
  position: relative;
  background: #fff;
  color: #111;
  width: min(720px, 92vw);
  margin: 10vh auto;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  border-left: 6px solid #000;
}

.modal-content h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.modal-content p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #333;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
}

.modal-close:hover {
  opacity: .9;
}

.modal-lock {
  overflow: hidden;
}
/* ===== REFINO VISUAL DAS ÁREAS ===== */

#areas h2{
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
  letter-spacing: .5px;
}

.cards{
  max-width: 900px;
  margin: 0 auto;
}

.card{
  background: #f5f5f5;
  border-radius: 14px;
  padding: 18px 16px;
  border-left: 5px solid #000;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: all .25s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,.14);
  background: #fff;
}

/* ícone + texto mais alinhado */
.card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
/* ===== ÍCONES DAS ÁREAS ===== */

.card i{
  font-size: 22px;
  margin-bottom: 6px;
  color: #000;
}

.card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}
/* ===== RESPONSIVO (CELULAR / TABLET / PC) ===== */

/* 1) Garantia geral: imagens e conteúdos não estouram */
img {
  max-width: 100%;
  height: auto;
}

/* 2) Navbar: quebra bonito no mobile (não some) */
.navbar .nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap; /* permite quebrar linha */
}

.navbar nav{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* 3) HERO: texto e espaçamento adaptáveis */
.hero{
  padding: 110px 0;
}
.hero h1{
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
}
.hero p{
  font-size: clamp(15px, 2.2vw, 18px);
  max-width: 720px;
}

/* 4) Quem Somos: grid vira coluna no tablet/celular */
.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 42px;
  align-items: center;
}

/* 5) Áreas: cards se reorganizam automaticamente */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* 6) Modal: melhor em telas pequenas */
.modal-content{
  margin: 12vh auto;
  width: min(720px, 92vw);
}

/* ===== TABLET (até 900px) ===== */
@media (max-width: 900px){
  .about-grid{
    grid-template-columns: 1fr;
  }
  .about-image img{
    margin: 0 auto;
    max-width: 420px;
  }
  .hero{
    padding: 90px 0;
  }
}

/* ===== CELULAR (até 600px) ===== */
@media (max-width: 600px){
  .container{
    padding: 0 16px;
  }

  .logo img{
    height: 44px;
    max-width: 180px;
  }

  .navbar nav{
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .hero{
    padding: 78px 0;
  }

  .btn{
    width: 100%;
    text-align: center;
  }

  .card{
    padding: 18px 16px;
  }

  /* contato não fica “apertado” */
  .contato-card{
    padding: 34px 22px;
  }

  /* modal mais confortável no celular */
  .modal-content{
    margin: 10vh auto;
    padding: 22px 18px;
  }

  .modal-close{
    top: 10px;
    right: 10px;
  }
}
/* Botão do Whats dentro do modal */
.modal-whats{
  margin-top: 18px;
  display: inline-block;
  background: #25D366;
  color: #fff;
  border: none;
}

.modal-whats:hover{
  background: #1fb65a;
}
