/* ===================================================
   HOME
   =================================================== */

.hero {
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,180,84,0.28), transparent 40%),
    radial-gradient(circle at 88% 8%, rgba(181,73,30,0.45), transparent 45%),
    radial-gradient(circle at 70% 90%, rgba(222,122,48,0.3), transparent 40%),
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, var(--orange-deep) 130%);
  background-size: auto, auto, auto, 26px 26px, auto;
  color: var(--white);
  padding-top: clamp(7.5rem, 14vw, 10rem);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero__inner { padding-bottom: clamp(3rem, 6vw, 4.5rem); position: relative; z-index: 1; }

.hero__text { max-width: 700px; }
.hero .eyebrow { color: var(--glow); }
.hero .eyebrow::before { background: var(--glow); box-shadow: 0 0 8px rgba(255,180,84,0.8); }
.hero h1 {
  margin: 1.1rem 0 1.4rem;
  background: linear-gradient(95deg, #ffffff 15%, var(--glow) 55%, #ffffff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 540px;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__actions .btn:not(.btn--primary) {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.hero__actions .btn:not(.btn--primary):hover {
  background: var(--white);
  color: var(--orange-deep);
  border-color: var(--white);
}

.hero__road {
  position: relative;
  height: clamp(140px, 22vw, 220px);
  color: rgba(255,180,84,0.7);
  z-index: 1;
}
.hero__road-svg { width: 100%; height: 100%; display: block; }
.hero__road-svg .road-path {
  filter: drop-shadow(0 0 6px rgba(255,180,84,0.85)) drop-shadow(0 0 14px rgba(255,180,84,0.4));
}

.hero__marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
}
.hero__marker--start { left: 0; bottom: 8%; }
.hero__marker--end { right: 2%; top: 6%; }

.hero__marker-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 12px 3px rgba(255,180,84,0.85);
}
.hero__marker-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__car {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(255,180,84,0.6)) drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

@media (max-width: 720px) {
  .hero__road { height: 130px; }
  .hero__marker-label { font-size: 0.68rem; }
}

/* PILARES */
.pillars { padding-bottom: 0; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
}
.pillar {
  padding: 2rem 1.8rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(43,28,18,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(222,122,48,0.25);
  border-color: rgba(222,122,48,0.45);
}
.pillar__index {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.pillar h3 { margin-bottom: 0.6rem; }
.pillar p { font-size: 0.95rem; }

.pillars__link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}

@media (max-width: 880px) {
  .pillars__grid { grid-template-columns: 1fr; }
}

/* QUEM SOMOS preview */
.about-preview__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-preview__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 20px 50px rgba(43,28,18,0.18);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.about-preview__photo:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 26px 60px rgba(222,122,48,0.3);
}

.about-preview__placeholder {
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, var(--line) 0, var(--line) 1px, transparent 1px, transparent 14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
  padding: 1.5rem;
}
.about-preview__text h2 { margin: 1rem 0 1.2rem; }
.about-preview__text p { margin-bottom: 1.6rem; max-width: 480px; }

@media (max-width: 980px) {
  .about-preview__grid { grid-template-columns: 1fr; }
  .about-preview__text { order: 1; text-align: center; }
  .about-preview__media:nth-of-type(1) { order: 2; }
  .about-preview__media:nth-of-type(3) { order: 3; }
  .about-preview__text .btn { margin: 0 auto; }
}
