:root {
  --olive: rgb(88, 95, 65);
  --petrol: rgb(31, 58, 74);
  --mist: rgb(202, 217, 183);
  --copper-light: rgb(249, 205, 128);
  --beige: rgb(233, 225, 210);
  --copper-dark: rgb(129, 83, 45);

  --text: #132016;
  --text-muted: #3e4a40;
  --bg: #ffffff;

  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);

  --font-title: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Layout */
.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}
.section--alt {
  background: linear-gradient(0deg, rgba(202,217,183,0.25), rgba(202,217,183,0.25));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(31,58,74,0.08);
}
.header-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--petrol);
}
.brand__logo {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--olive); color: #fff;
  display: grid; place-items: center; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.brand__text { font-weight: 600; font-family: var(--font-title); }

.nav__toggle {
  display: none;
  border: 1px solid var(--petrol);
  background: transparent; color: var(--petrol);
  border-radius: 10px; padding: 8px 12px;
}
.nav__list {
  display: flex; gap: 20px; align-items: center; list-style: none; margin: 0; padding: 0;
}
.nav__list a {
  text-decoration: none; color: var(--petrol); font-weight: 500;
}
.nav__list a:hover { color: var(--olive); }

/* Hero */
.hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(600px 240px at 15% 10%, rgba(202,217,183,0.5), transparent 60%),
    radial-gradient(600px 240px at 90% 30%, rgba(249,205,128,0.4), transparent 70%),
    linear-gradient(180deg, rgba(233,225,210,0.6), rgba(255,255,255,1));
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px; align-items: center;
}
.hero__content h1 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--petrol);
  margin: 0 0 12px;
}
.hero__content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 16px 0; }
.badge {
  display: inline-block; background: var(--mist); color: var(--petrol);
  border-radius: 999px; padding: 6px 12px; margin-right: 8px; margin-top: 8px;
  font-size: 0.9rem; box-shadow: var(--shadow-sm);
}
.hero__visual { display: grid; place-items: center; }
.hero__shape {
 
 box-shadow: none;          /* remove a sombra */
 border-radius: 0;          /* remove o arredondamento que cria o fundo */
 background: transparent;
 width: 100%;
 background: transparent;
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;

}
.hero__img {
  width: 70%; height: auto;
  object-fit: contain; border-radius: var(--radius);
  display: block;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.card {
  background: #fff; border: 1px solid rgba(31,58,74,0.08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.card h3 {
  font-family: var(--font-title);
  margin: 0 0 8px; color: var(--petrol);
}
.card p { margin: 0 0 14px; color: var(--text-muted); }
.card__actions { display: flex; gap: 10px; }

.cards--blog .card--blog {
  border-left: 6px solid var(--olive);
}

/* About */
.about {
  display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 28px; align-items: start;
}
.about__tags { margin-top: 16px; }
.tag {
  display: inline-block; background: var(--beige); color: var(--copper-dark);
  border-radius: 999px; padding: 6px 10px; margin: 6px 6px 0 0;
}

/* Contact */
.contact {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.contact__form label {
  display: grid; gap: 6px; margin-bottom: 12px; font-weight: 500;
}
input, textarea {
  padding: 12px; border-radius: 10px; border: 1px solid rgba(31,58,74,0.18);
  font-family: var(--font-body);
}
.form__actions { display: flex; gap: 10px; align-items: center; margin-top: 8px; }
.form__note { font-size: 0.9rem; color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 12px;
  text-decoration: none; border: none; cursor: pointer;
  font-weight: 600;
}
.btn--sm { padding: 8px 12px; border-radius: 10px; font-size: 0.95rem; }
.btn--primary {
  background: var(--petrol); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--olive); }
.btn--secondary {
  background: var(--beige); color: var(--copper-dark);
  border: 1px solid rgba(129,83,45,0.3);
}
.btn--secondary:hover { background: var(--copper-light); color: #2b1a0f; }
.btn--outline {
  background: transparent; color: var(--petrol);
  border: 1px solid var(--petrol);
}
.btn--outline:hover { color: var(--olive); border-color: var(--olive); }
.btn--link {
  background: transparent; color: var(--petrol);
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.btn--link:hover { border-color: var(--olive); }

/* Footer */
.site-footer {
  padding: 28px 0; border-top: 1px solid rgba(31,58,74,0.08);
  background: #fff;
}
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; align-items: center; }
.footer__small { color: var(--text-muted); }

/* Modal */
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.35);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal[aria-hidden="false"] { display: flex; }
.modal__dialog {
  width: min(760px, 96%); background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 22px;
  border: 1px solid rgba(31,58,74,0.1);
}
.modal__close {
  float: right; font-size: 28px; line-height: 1; border: none; background: transparent; cursor: pointer;
}
.modal__desc { color: var(--text-muted); }
.modal__list {
  margin: 12px 0 16px 18px;
}
.modal__list li { margin-bottom: 8px; }

/* Responsive */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .nav__toggle { display: inline-block; }
  .nav__list { display: none; flex-direction: column; gap: 10px; background: #fff; padding: 12px; border-radius: 12px; box-shadow: var(--shadow-sm); position: absolute; right: 4%; top: 68px; }
  .nav__list[aria-expanded="true"] { display: flex; }
}
