/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 7rem;
  background: #1a1a1a;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,93,38,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212,168,83,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.hero-content {
  padding: 2rem 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  background: linear-gradient(95deg, rgba(200,26,28,0.16) 0%, rgba(31,157,58,0.14) 100%);
  border: 1px solid rgba(31,157,58,0.45);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e6ddd2;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  align-self: flex-start;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s 0.1s var(--ease) both;
}

.hero-title .highlight {
  color: #cf2326;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35),
               0 0 26px rgba(200, 26, 28, 0.28);
}

.hero-title .highlight-green {
  color: #1f9d3a;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35),
               0 0 26px rgba(31, 157, 58, 0.28);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: #b9ada2;
  margin-bottom: 2rem;
  max-width: 440px;
  line-height: 1.6;
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.3s var(--ease) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 30px rgba(232,93,38,0.4);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(232,93,38,0.08);
  transform: scale(1.03);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn-whatsapp:hover {
  background: #2be46f;
  transform: scale(1.03);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s 0.4s var(--ease) both;
}

.hero-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1rem;
}

.hero-review-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-review-text strong {
  color: var(--text-primary);
}

/* Hero image */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
  min-width: 0;
  transform: translateX(12px);
}

.hero-img-wrapper {
  position: relative;
  width: 85%;
  aspect-ratio: 1;
  /* All slides are position:absolute, so the wrapper has no in-flow content
     to derive height from. align-self:center keeps it from stretching, and the
     aspect-ratio gives it height from its width. */
  align-self: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(232,93,38,0.1);
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(232,93,38,0.15);
  pointer-events: none;
  z-index: 3;
}

/* ===== HERO IMAGE SLIDER ===== */
/* Incoming slide starts small (from "behind") and grows into place.
   Outgoing slide slides out to the left and shrinks away. */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.is-leaving {
  opacity: 0;
  transform: translateX(-18%) scale(0.88);
  z-index: 3;
  pointer-events: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dots {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.4);
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: all var(--transition);
}

.hero-dot.is-active {
  background: var(--accent);
  width: 24px;
  border-radius: 50px;
}

/* Editorial gold-rule badges — no fill, no shadow, framed by thin lines */
.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.4rem;
  background: rgba(10, 6, 5, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: none;
  border-top: 1px solid rgba(201, 147, 90, 0.55);
  border-bottom: 1px solid rgba(201, 147, 90, 0.55);
  border-radius: 0;
  box-shadow: none;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.hero-float-badge.top-left {
  top: 6%;
  left: 6%;
}

.hero-float-badge.bottom-right {
  bottom: 6%;
  right: 6%;
  animation-delay: -2s;
}

.hero-float-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201, 147, 90, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c9935a;
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 14px;
  height: 14px;
}

.hero-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #c9935a;
  white-space: nowrap;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 9rem 0 3rem;
  }

  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    order: 1;
    padding: 0 clamp(1rem, 4vw, 1.25rem);
  }

  .hero-badge {
    display: none;
  }

  .hero-title {
    width: 100%;
    margin-top: 0;
  }

  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-mobile-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    width: 100%;
    margin: 0 0 1.35rem;
    padding: 1rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.78);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  }

  .hero-mobile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    min-width: 0;
  }

  .hero-mobile-stat strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 6vw, 1.65rem);
    font-weight: 800;
    line-height: 1;
  }

  .hero-mobile-stat span {
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .hero-cta-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    padding: 0.85rem 1rem;
  }

  .hero-cta-group .btn-primary {
    grid-column: 1 / -1;
    order: 1;
    background: #e85d2a;
    box-shadow: 0 10px 26px rgba(232, 93, 42, 0.28);
  }

  .hero-cta-group .btn-whatsapp {
    order: 2;
  }

  .hero-cta-group .btn-outline {
    order: 3;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .hero-visual {
    order: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    transform: none;
  }

  .hero-img-wrapper {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-img-ring {
    display: none;
  }

  .hero-float-badge { display: none; }
}
