:root {
  --green: #76b43f;
  --green-dark: #4a7b29;
  --dark: #222629;
  --dark-soft: #2e3337;
  --light: #f5f7fa;
  --white: #ffffff;
  --accent: #9bdc65;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.18);
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #121416;
  color: var(--light);
  line-height: 1.6;
}

/* CONTAINER */

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to right, #181b1e, #202528);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--accent));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  width: 100%;
}

/* NAV TOGGLE (MOBILE) */

.nav-toggle {
  display: none;
  width: 40px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO */

.hero {
  padding: 4.5rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(118, 180, 63, 0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(44, 62, 80, 0.75), #121416);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(118, 180, 63, 0.12);
  color: var(--accent);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-description {
  font-size: 0.98rem;
  color: rgba(235, 239, 244, 0.9);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--accent));
  color: #0c120f;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
}

.btn-full {
  width: 100%;
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(224, 229, 236, 0.8);
}

.hero-highlight span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* HERO CARD */

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-card-inner {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(145deg, #23282c, #1a1e21);
  border-radius: 24px;
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-card-inner h2 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.hero-card-inner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: rgba(235, 239, 244, 0.9);
}

.hero-card-inner ul {
  list-style: none;
  margin-bottom: 1.2rem;
}

.hero-card-inner li {
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
  position: relative;
  padding-left: 1.1rem;
}

.hero-card-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-selo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(235, 239, 244, 0.9);
}

.hero-selo::before {
  content: "★";
  color: var(--accent);
}

/* SECTIONS */

.section {
  padding: 4rem 0;
  background: #121416;
}

.section-alt {
  background: #171a1e;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 0.96rem;
  color: rgba(223, 229, 235, 0.85);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* SOBRE */

.section-text p {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: rgba(223, 229, 235, 0.9);
}

.sobre-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.sobre-points h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--accent);
}

.sobre-points p {
  font-size: 0.85rem;
}

/* SIDE BOX */

.section-side-box {
  background: linear-gradient(145deg, #23282d, #1b1f23);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.section-side-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.check-list {
  list-style: none;
  font-size: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* CARDS SERVIÇOS */

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

.card {
  background: #1b1f23;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.card p {
  font-size: 0.88rem;
  color: rgba(219, 225, 233, 0.9);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(155, 220, 101, 0.65);
}

/* GALERIA */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  background: #1b1f23;
}

.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CONTATO */

.contato-grid {
  align-items: stretch;
}

.contact-list {
  list-style: none;
  font-size: 0.9rem;
  margin: 1rem 0 1.3rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contato-box {
  background: #1b1f23;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

label {
  font-size: 0.82rem;
  color: rgba(240, 244, 249, 0.9);
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #14181b;
  padding: 0.6rem 0.7rem;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(155, 220, 101, 0.4);
  background: #15191d;
}

.form-note {
  font-size: 0.7rem;
  color: rgba(215, 222, 231, 0.75);
  margin-top: 0.4rem;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #101214;
  padding: 1rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.8rem;
  color: rgba(200, 207, 216, 0.9);
  text-align: center;
}

/* ANIMAÇÃO SCROLL (REVEAL) */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVIDADE */

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card-inner {
    max-width: 100%;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    position: absolute;
    inset-inline: 0;
    top: 56px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1.5rem 1.2rem;
    background: #181c1f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav a {
    padding: 0.25rem 0;
  }

  .nav-open .nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-highlight span {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }
} 

.footer-social a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 500;
}

.footer-social a:hover {
  text-decoration: underline;
  
}
