
/* ===== RESET BÁSICO ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #f2f4f7;
  color: #2a2a2a;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
nav {
  background-color: #000;
  border-bottom: 1px solid #1a1a1a;
  padding: 15px 20px;
}

nav .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #a27613;
}

/* LOGO */
.brand {
  background-color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid #a27613;
  display: inline-block;
}

.brand img {
  height: 90px;
}

/* ===== HEADER ===== */
header {
  background-color: #fff;
  color: #2a2a2a;
  padding: 60px 20px;
  text-align: center;
}

header h1 {
  color: #a27613;
  margin-bottom: 15px;
  font-size: 2.3em;
  line-height: 1.2;
}

/* ===== SEÇÕES ===== */
section {
  max-width: 1100px;
  margin: auto;
  padding: 90px 20px;
}

.box {
  background: #fff;
  padding: 40px;
  margin-bottom: 35px;
  border-radius: 10px;
}

/* ===== TÍTULOS ===== */
h2 {
  color: #1f2a36;
  margin-bottom: 15px;
}

/* ===============================
   CARDS – GLOBAL (HOME / SERVIÇOS)
================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(25px);
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.card i {
  font-size: 1.6em;
  color: #a27613;
  margin-bottom: 18px;
  display: block;
}

.card h3 {
  color: #a27613;
  margin-bottom: 15px;
  font-size: 1.15em;
}

.card p {
  font-size: 0.95em;
  line-height: 1.7;
  color: #2a2a2a;
}

/* ===== CTA ===== */
.cta, .cta-final {
  text-align: center;
  border-radius: 16px;
  padding: 60px 30px;
  margin: 70px 0;
}

.cta {
  background: linear-gradient(135deg, #000000, #1f2a36);
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.cta h2 {
  color: #a27613;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.cta p {
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.7;
  font-size: 1.05em;
}

.cta a {
  display: inline-block;
  background-color: #a27613;
  color: #000;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta a:hover {
  background-color: #fff;
  color: #000;
  transform: scale(1.05);
}

.cta-final {
  background-color: #fff;
  border: 2px solid #a27613;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cta-final h2 {
  color: #1f2a36;
  font-size: 1.9em;
  margin-bottom: 20px;
}

.cta-final p {
  max-width: 760px;
  margin: 0 auto 35px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #2a2a2a;
}

.cta-final a {
  display: inline-block;
  background-color: #000;
  color: #a27613;
  padding: 18px 38px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #a27613;
  transition: all 0.3s ease;
}

.cta-final a:hover {
  background-color: #a27613;
  color: #000;
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
footer {
  background-color: #1f2a36;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9em;
}

/* ===== BOTÃO WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #000;
  color: #a27613;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #a27613;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float {
  transition: transform 0.25s ease;
}
.whatsapp-float {
  transition: transform 0.2s linear;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  header h1 {
    font-size: 1.9em;
  }

  .cta h2,
  .cta-final h2 {
    font-size: 1.5em;
  }

  .cards, .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav .brand {
    margin-bottom: 8px;
  }

  nav .container > div:last-child {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap; 
    white-space: nowrap; 
    width: 100%;
  }

  nav a {
    margin: 0 8px;
    font-size: 0.85em;
  }

  header h1 {
    font-size: 1.6em;
  }
}
/* ===============================
   INSTAGRAM – FOOTER SOCIAL
================================ */

.footer-social {
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;

  color: #ffffff;
  transition: all 0.3s ease;
}

/* Ícone Instagram – +50% de tamanho */
.footer-social i {
  font-size: 1.8em; /* antes: 1.2em */
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover discreto e corporativo */
.footer-social a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
/* ===============================
   SOBRE.HTML – COMO TRABALHAMOS
   ESCOPADO (SEGURO)
================================ */

body.sobre .cards-grid {
  display: flex;
  gap: 25px;
  width: 100%;
}

/* Cards */
body.sobre .cards-grid .box {
  flex: 1;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(22px);
}

/* Entrada */
body.sobre .cards-grid .box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover – sobe visivelmente */
body.sobre .cards-grid .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

/* Títulos */
body.sobre .cards-grid .box h3 {
  color: #a27613;
  margin-bottom: 12px;
  font-size: 1.15em;
}

/* Texto */
body.sobre .cards-grid .box p {
  font-size: 0.95em;
  line-height: 1.7;
  color: #2a2a2a;
}

/* Responsivo */
@media (max-width: 1024px) {
  body.sobre .cards-grid {
    flex-wrap: wrap;
  }

  body.sobre .cards-grid .box {
    flex: 0 0 calc(50% - 12.5px);
  }
}

@media (max-width: 600px) {
  body.sobre .cards-grid .box {
    flex: 0 0 100%;
  }
}
