html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit;margin:0;padding:0}

:root {
  --elm-brand: #1B4332;
  --elm-highlight: #F2B705;
  --elm-deep: #122b20;
  --elm-surface: #f0f7f2;
  --elm-body-text: #333333;
  --elm-muted: #5C5C5C;
  --elm-stroke: #d9d9d9;
  --elm-white: #ffffff;
}

body {
  font-family: 'Public Sans', sans-serif;
  color: var(--elm-body-text);
  line-height: 1.7;
  background: var(--elm-white);
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  line-height: 1.3;
}

a {
  color: var(--elm-brand);
  text-decoration: none;
  transition: color .25s;
}

a:hover { color: var(--elm-highlight); }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.elm-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.elm-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: var(--elm-white);
  z-index: 100;
  transition: box-shadow .3s;
}

.elm-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.elm-header .elm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.elm-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--elm-brand);
}

.elm-logo:hover { color: var(--elm-brand); }

.elm-nav {
  display: flex;
  align-items: center;
}

.elm-nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.elm-nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--elm-body-text);
}

.elm-nav-links a:hover { color: var(--elm-brand); }

.elm-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.elm-burger span {
  width: 24px;
  height: 2px;
  background: var(--elm-body-text);
  transition: transform .3s, opacity .3s;
  display: block;
}

.elm-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.elm-burger.active span:nth-child(2) { opacity: 0; }

.elm-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.elm-disclaimer {
  margin-top: 64px;
  background: var(--elm-surface);
  border-bottom: 1px solid var(--elm-stroke);
  padding: 10px 0;
}

.elm-disclaimer p {
  font-size: .82rem;
  color: var(--elm-muted);
  text-align: center;
  line-height: 1.5;
}

.elm-hero {
  padding: 100px 0 80px;
  text-align: center;
}

.elm-hero h1 {
  font-size: 2.6rem;
  color: var(--elm-brand);
  margin-bottom: 18px;
  font-weight: 700;
}

.elm-hero-sub {
  font-size: 1.15rem;
  color: var(--elm-muted);
  max-width: 620px;
  margin: 0 auto 32px;
}

.elm-btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--elm-brand);
  color: var(--elm-white);
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: background .25s;
}

.elm-btn:hover {
  background: var(--elm-deep);
  color: var(--elm-white);
}

.elm-section { padding: 70px 0; }

.elm-section-alt { background: var(--elm-surface); }

.elm-section-title {
  font-size: 1.85rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--elm-brand);
}

.elm-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.elm-card {
  display: flex;
  align-items: center;
  gap: 40px;
}

.elm-card:nth-child(even) { flex-direction: row-reverse; }

.elm-card-visual {
  flex: 0 0 280px;
  height: 200px;
  background: var(--elm-surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--elm-stroke);
}

.elm-card-visual svg { width: 64px; height: 64px; }

.elm-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--elm-brand);
}

.elm-card-content p {
  color: var(--elm-muted);
  font-size: .95rem;
}

.elm-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.elm-faq-item {
  border-bottom: 1px solid var(--elm-stroke);
}

.elm-faq-toggle { display: none; }

.elm-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--elm-body-text);
  font-family: 'Sora', sans-serif;
  gap: 16px;
}

.elm-faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--elm-muted);
  flex-shrink: 0;
  transition: transform .3s;
  width: 24px;
  text-align: center;
}

.elm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.elm-faq-answer p {
  padding: 0 0 18px;
  color: var(--elm-muted);
  font-size: .93rem;
  line-height: 1.7;
}

.elm-faq-toggle:checked ~ .elm-faq-answer { max-height: 600px; }

.elm-faq-toggle:checked ~ .elm-faq-question .elm-faq-icon {
  transform: rotate(45deg);
}

.elm-sobre-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
}

.elm-sobre-img { border-radius: 10px; }

.elm-sobre-text p {
  margin-bottom: 16px;
  font-size: .95rem;
}

.elm-sobre-text p:last-child { margin-bottom: 0; }

.elm-blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.elm-blog-feature {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--elm-stroke);
  transition: box-shadow .3s;
  background: var(--elm-white);
  color: inherit;
}

.elm-blog-feature:hover,
.elm-blog-small:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  color: inherit;
}

.elm-blog-feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
}

.elm-blog-feature-body { padding: 20px; }

.elm-blog-feature-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--elm-brand);
}

.elm-blog-feature-body p {
  font-size: .88rem;
  color: var(--elm-muted);
  margin-bottom: 14px;
}

.elm-blog-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--elm-highlight);
}

.elm-blog-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.elm-blog-small {
  display: flex;
  gap: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--elm-stroke);
  padding: 16px;
  transition: box-shadow .3s;
  align-items: center;
  background: var(--elm-white);
  color: inherit;
  flex: 1;
}

.elm-blog-small img {
  width: 130px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px;
}

.elm-blog-small-body h3 {
  font-size: .93rem;
  margin-bottom: 6px;
  color: var(--elm-brand);
}

.elm-blog-small-body p {
  font-size: .82rem;
  color: var(--elm-muted);
  margin-bottom: 8px;
}

.elm-contato-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.elm-form label {
  display: block;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--elm-body-text);
}

.elm-form input,
.elm-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--elm-stroke);
  border-radius: 6px;
  font-family: 'Public Sans', sans-serif;
  font-size: .93rem;
  margin-bottom: 16px;
  transition: border-color .25s;
  background: var(--elm-white);
  color: var(--elm-body-text);
}

.elm-form input:focus,
.elm-form textarea:focus {
  outline: none;
  border-color: var(--elm-brand);
}

.elm-form textarea {
  min-height: 120px;
  resize: vertical;
}

.elm-form button {
  padding: 13px 32px;
  background: var(--elm-brand);
  color: var(--elm-white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  transition: background .25s;
}

.elm-form button:hover { background: var(--elm-deep); }

.elm-contato-info h3 {
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: var(--elm-brand);
}

.elm-contato-item {
  margin-bottom: 18px;
  font-size: .93rem;
}

.elm-contato-item strong {
  display: block;
  font-size: .82rem;
  color: var(--elm-muted);
  margin-bottom: 3px;
  font-weight: 500;
}

.elm-footer {
  background: var(--elm-deep);
  color: var(--elm-white);
  padding-top: 48px;
}

.elm-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.elm-footer h4 {
  font-size: .95rem;
  margin-bottom: 16px;
  color: var(--elm-highlight);
}

.elm-footer ul { list-style: none; }

.elm-footer li {
  margin-bottom: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}

.elm-footer a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
}

.elm-footer a:hover { color: var(--elm-highlight); }

.elm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

.elm-cookie-toggle { display: none; }

.elm-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--elm-deep);
  color: var(--elm-white);
  padding: 16px 0;
  z-index: 200;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}

.elm-cookie-toggle:checked ~ .elm-cookie-bar { display: none; }

.elm-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.elm-cookie-text {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
}

.elm-cookie-text a {
  color: var(--elm-highlight);
  text-decoration: underline;
}

.elm-cookie-btn {
  padding: 9px 24px;
  background: var(--elm-highlight);
  color: var(--elm-deep);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  font-family: 'Public Sans', sans-serif;
  display: inline-block;
}

.elm-cookie-btn:hover {
  background: #d9a204;
  color: var(--elm-deep);
}

.elm-legal-content { padding: 100px 0 60px; }
.elm-legal-content h1 { font-size: 1.85rem; margin-bottom: 12px; color: var(--elm-brand); }
.elm-legal-content h2 { font-size: 1.3rem; margin: 28px 0 10px; color: var(--elm-deep); }
.elm-legal-content p { margin-bottom: 14px; }
.elm-legal-content ul { margin: 10px 0 14px 20px; }
.elm-legal-content li { margin-bottom: 6px; }
.elm-legal-date { font-size: .85rem; color: var(--elm-muted); margin-bottom: 28px; }
.elm-breadcrumb { font-size: .85rem; color: var(--elm-muted); margin-bottom: 18px; }
.elm-breadcrumb a { color: var(--elm-brand); text-decoration: none; }
.elm-breadcrumb a:hover { text-decoration: underline; }

.elm-blog-page { padding: 100px 0 60px; }
.elm-blog-page h1 { font-size: 1.85rem; margin-bottom: 30px; color: var(--elm-brand); }
.elm-blog-list { display: grid; grid-template-columns: 1fr; gap: 28px; }
.elm-blog-card { background: var(--elm-white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: transform .2s; }
.elm-blog-card:hover { transform: translateY(-3px); }
.elm-blog-card img { width: 100%; height: 200px; object-fit: cover; }
.elm-blog-card-body { padding: 20px; }
.elm-blog-card-body h2 { font-size: 1.15rem; margin-bottom: 8px; color: var(--elm-deep); }
.elm-blog-card-body p { font-size: .9rem; color: var(--elm-muted); margin-bottom: 12px; }
.elm-blog-card-body a { color: var(--elm-brand); font-weight: 500; text-decoration: none; font-size: .9rem; }

.elm-article { padding: 100px 0 60px; }
.elm-article h1 { font-size: 1.85rem; margin-bottom: 6px; color: var(--elm-brand); }
.elm-article h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--elm-deep); }
.elm-article p { margin-bottom: 14px; }
.elm-article ul, .elm-article ol { margin: 10px 0 14px 20px; }
.elm-article li { margin-bottom: 6px; }
.elm-article-img { width: 100%; height: 340px; object-fit: cover; border-radius: 10px; margin-bottom: 24px; }

@media(max-width:768px) {
  .elm-burger { display: flex; }

  .elm-nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--elm-white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transform: translateY(-120%);
    transition: transform .3s;
    z-index: 99;
  }

  .elm-nav-links.active { transform: translateY(0); }

  .elm-hero { padding: 70px 0 50px; }

  .elm-hero h1 { font-size: 1.8rem; }

  .elm-hero-sub { font-size: 1rem; }

  .elm-card {
    flex-direction: column !important;
  }

  .elm-card-visual {
    flex: none;
    width: 100%;
    height: 150px;
  }

  .elm-sobre-grid { grid-template-columns: 1fr; }

  .elm-blog-grid { grid-template-columns: 1fr; }

  .elm-blog-feature img { height: 200px; }

  .elm-blog-small {
    flex-direction: column;
    text-align: center;
  }

  .elm-blog-small img {
    width: 100%;
    height: 140px;
  }

  .elm-contato-grid { grid-template-columns: 1fr; }

  .elm-article-img { height: 220px; }

  .elm-footer-grid { grid-template-columns: 1fr; }

  .elm-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .elm-cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .elm-section-title { font-size: 1.5rem; }
}
