:root {
  --green: #b8cf20;
  --green-dark: #526400;
  --orange: #f47b20;
  --red: #f21d18;
  --text: #111;
  --muted: #5d6258;
  --light: #f7f8f1;
  --white: #fff;
  --shadow: 0 20px 60px rgba(30, 45, 10, .12);
}

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

html { scroll-behavior: smooth; }

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

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

.navbar {
  height: 78px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }
.brand img { width: 48px; height: 48px; object-fit: contain; }

nav { display: flex; gap: 30px; font-weight: 650; font-size: .95rem; }
nav a { transition: color .2s, transform .2s; }
nav a:hover { color: var(--green-dark); transform: translateY(-1px); }

.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }

.hero {
  min-height: calc(100vh - 78px);
  padding: 7vw 8vw;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 5vw;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 80% 50%, rgba(184,207,32,.22), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f5f7e9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(184,207,32,.2);
  border-radius: 50%;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
}

.eyebrow {
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .22em;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.055em;
  max-width: 850px;
}

h1 span, h2 span { color: var(--green-dark); }

.hero-text {
  max-width: 650px;
  margin: 28px 0 34px;
  font-size: 1.08rem;
  color: var(--muted);
}

.actions { display: flex; flex-wrap: wrap; gap: 13px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,.12); }
.primary { background: #111; color: #fff; }
.secondary { border: 1px solid #cdd1c3; background: #fff; }

.hero-logo {
  width: min(430px, 75vw);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-logo img {
  width: 84%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,.14));
}

.logo-ring {
  position: absolute;
  inset: 0;
  border: 18px solid rgba(184,207,32,.16);
  border-right-color: rgba(244,123,32,.35);
  border-top-color: rgba(242,29,24,.25);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.section { padding: 110px 8vw; }
.intro { background: #fff; }
.section-heading { max-width: 800px; }
h2 { font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.04em; }
.intro > p { max-width: 780px; color: var(--muted); margin: 25px 0 45px; font-size: 1.08rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 32px; border: 1px solid #e4e7da; border-radius: 22px; background: #fbfcf7; transition: .25s; }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.icon { font-size: 2rem; margin-bottom: 18px; }
.card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.card p { color: var(--muted); }

.method { background: #121510; color: #fff; }
.method-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.method .eyebrow { color: var(--green); }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.steps div { padding: 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; display: flex; flex-direction: column; gap: 10px; }
.steps b { color: var(--green); font-size: .8rem; }
.steps span { font-size: 1.2rem; font-weight: 800; }

.contact { text-align: center; background: var(--green); }
.contact h2 { max-width: 850px; margin: auto; }
.contact p:not(.eyebrow) { max-width: 650px; margin: 20px auto 30px; }
.contact .btn { background: #111; color: #fff; }

footer { padding: 25px 8vw; display: flex; align-items: center; gap: 12px; background: #fff; color: #686b62; font-size: .9rem; }
footer img { width: 42px; height: 42px; object-fit: contain; }

@media (max-width: 850px) {
  .navbar { padding: 0 5vw; }
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px 5vw;
    background: #fff;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
  }
  nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 60px; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .actions { justify-content: center; }
  .hero-logo { width: min(330px, 75vw); order: -1; }
  .cards, .method-box { grid-template-columns: 1fr; }
  .section { padding: 80px 6vw; }
}

@media (max-width: 520px) {
  .brand span { font-size: .85rem; }
  .brand img { width: 42px; height: 42px; }
  .steps { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
}

.btn-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color:white;
    border-radius:50%;
    text-align:center;
    font-size:35px;
    box-shadow:0px 3px 10px rgba(0,0,0,.3);
    z-index:9999;
}


.btn-whatsapp i {
    margin-top:12px;
}


.btn-whatsapp:hover {
    background:#128C7E;
    color:white;

}

.btn-mail {

    position: fixed;

    width: 60px;
    height: 60px;

    bottom: 95px;
    right: 25px;

    background-color: #007bff;

    color:white;

    border-radius:50%;

    text-align:center;

    font-size:30px;

    box-shadow:0px 3px 10px rgba(0,0,0,.3);

    z-index:9999;

}


.btn-mail i {

    margin-top:15px;

}


.btn-mail:hover {

    background:#0056b3;

    color:white;

}