@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --bg: #f7f6f2;
  --white: #ffffff;
  --text: #191919;
  --muted: #6f6f6b;
  --line: #deddd7;
  --accent: #222222;
  --max: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
}

.container {
  width: min(90%, var(--max));
  margin: 0 auto;
}

/* Cabeçalho */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  display: flex;
  gap: 34px;
  color: white;
}

.menu a {
  font-size: 13px;
  font-weight: 500;
  transition: opacity .2s;
}

.menu a:hover {
  transition: .2s;
  color: yellow;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

/* Banner */
.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(12, 86, 196, 0.98) 0%, rgba(78, 160, 226, 0.9) 48%, rgba(94, 152, 238, 0.45) 100%),
    url("images/banner.jpg")
    center/cover no-repeat;
}

.hero-content {
  padding-top: 70px;
  max-width: 720px;
}

#inicio .eyebrow {
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: white;
}

#inicio h1 {
  color: white;
  margin-bottom: 28px;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

h1, h2 {
  font-family: "Inter", serif;
  font-weight: 800;
  line-height: 1.12;
}

h1 {
  max-width: 650px;
  font-size: clamp(48px, 7vw, 82px);
}

.hero-text {
  max-width: 540px;
  margin: 28px 0 34px;
  color: white;
  font-size: 17px;
}

.button {
  display: inline-block;
  padding: 14px 25px;
  background: white;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s, opacity .2s;
}

.button:hover {
  transform: translateY(-2px);
  opacity: .9;
  background: #00349A;
  transition: transform .2s, opacity .2s, background .2s;
  color: white;
}

.btn-orcamento {
    display: inline-block;
    padding: 10px 78px;
    background: #00349A;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.btn-orcamento:hover {
    background: yellow;
    color: #00349A;
    transition: .2s;
    cursor: pointer;
}

/* Seções */
.section {
  padding: 120px 0;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.text-content {
  color: var(--muted);
  max-width: 560px;
}

.text-content p + p {
  margin-top: 20px;
}

.services {
  background: var(--white);
}

.section-heading {
  margin-bottom: 55px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  min-height: 260px;
  padding: 36px;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
}

.card span {
  display: block;
  width: auto;
  margin-bottom: 55px;
  font-size: 12px;
  color: var(--muted);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.also-heading + .cards .card {
  min-height: 160px;
  padding: 25px;
}

.also-heading + .cards .card span {
  margin-bottom: 30px;
}

/* Contato */
.contact {
  padding: 100px 0;
  background: #1c1c1a;
  color: white;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact p:not(.eyebrow) {
  margin-top: 18px;
  color: #bdbdb8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}

.contact-info a {
  transition: opacity .2s;
}

.contact-info a:hover {
  transition: .2s;
  color:yellow;
}



/* Rodapé */
.footer {
  padding: 25px 0;
  background: #151514;
  color: #888884;
  font-size: 11px;
  text-align: center;
}

.footer .link:hover {
  transition: .2s;
  color:yellow;

}

/* Imagens dos cards de produtos */
.also-sell .card span {
    width: 100%;
    height: 180px;
    margin-bottom: 30px;
    overflow: hidden;
}

.also-sell .card span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsivo */
@media (max-width: 760px) {
  .header {
    background: rgba(247,246,242,.94);
  }

  .nav {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 5%;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .two-columns,
  .cards {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section {
    padding: 80px 0;
  }

  .card {
    min-height: auto;
  }

  .card span {
    margin-bottom: 35px;
  }

  .contact-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-info {
    text-align: left;
  }
}
