/* ============================================================
   BÎRKA STUDIO — Landing
   ============================================================ */

:root {
  --green:        #2c5138;
  --green-dark:   #244029;
  --green-deep:   #1f3724;
  --cream:        #f0cfb8;
  --peach:        #f0cfb8;
  --peach-light:  #f8e2d3;
  --orange:       #eb9156;
  --orange-soft:  #f2a771;
  --sage:         #a9b18d;
  --ink:          #191818;
  --white:        #ffffff;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans:  "Poppins", system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--green);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

section { position: relative; scroll-margin-top: 84px; }

.hl { color: var(--orange); }

/* ---------- Logo (wordmark) ---------- */
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo__word {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.5px;
}
.logo__dot { color: var(--cream); }
.logo__sub {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 2px;
  align-self: flex-end;
  margin-top: 2px;
}

/* ---------- Logo (imagen real) ---------- */
.brand { display: inline-block; line-height: 0; }
.brand img { height: auto; }

.brand--nav img      { height: 46px; width: auto; transition: height 0.35s var(--ease); }
.nav--scrolled .brand--nav img { height: 36px; }
.brand--hero img     { width: clamp(240px, 46vw, 480px); margin: 0 auto; }
.brand--services img { width: clamp(190px, 40vw, 360px); filter: brightness(0); } /* logo oscuro sobre durazno */
.brand--contact img  { width: 180px; }
.brand--footer img   { height: 50px; width: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 2em;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  cursor: pointer;
  border: none;
}
.btn--cream  { background: var(--cream); color: var(--green); }
.btn--orange { background: var(--orange); color: var(--white); }
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.btn--orange:hover { background: var(--orange-soft); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 1.1rem 0;
}
.nav--scrolled {
  background: rgba(36, 64, 41, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__menu { display: flex; align-items: center; gap: 2rem; }
.nav__menu a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--cream);
  position: relative;
  transition: opacity 0.2s;
}
.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5em 1.3em;
  border-radius: 100px;
}
.nav__cta:hover { background: var(--orange-soft); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav__toggle span {
  width: 26px; height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}
.waves { position: absolute; height: auto; pointer-events: none; z-index: 1; user-select: none; }
.waves--tl { top: 0; left: -6%; width: clamp(220px, 38vw, 500px); }
.waves--br { bottom: 12%; right: -6%; width: clamp(200px, 34vw, 440px); transform: rotate(270deg); }

.hero__content { position: relative; z-index: 2; max-width: 820px; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 1.4rem;
}
.brand--hero { display: block; }

.hero__tagline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 3rem);
  color: var(--cream);
  margin: 2rem 0 1rem;
  line-height: 1.1;
}
.hero__lead {
  color: var(--cream);
  opacity: 0.85;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 540px;
  margin: 0 auto 2.4rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 1.4rem;
  opacity: 0.7;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 10px); }
}

/* ============================================================
   NOSOTRAS / ABOUT
   ============================================================ */
.about {
  position: relative;
  overflow: hidden;
  background: var(--green);
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem);
}
.about__waves {
  position: absolute;
  top: clamp(1rem, 3vw, 2.5rem);
  right: -4%;
  width: clamp(260px, 38vw, 560px);
  height: auto;
  pointer-events: none;
  user-select: none;
}
.about__inner { position: relative; }
.about__inner { max-width: var(--maxw); margin: 0 auto; }
.about__title {
  display: flex;
  align-items: baseline;
  gap: 0.32em;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1;
}
.about__brand { color: var(--cream); }
.about__brandimg { height: 1.02em; width: auto; }
.about__lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: var(--white);
  max-width: 760px;
  margin-top: 1rem;
  line-height: 1.3;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
  background: var(--green-deep);
  padding: clamp(1rem, 2.5vw, 1.8rem);
  border-radius: 28px;
}
.about__card {
  background: var(--peach);
  color: var(--ink);
  border-radius: 22px;
  padding: clamp(1.1rem, 2.2vw, 1.4rem) clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.about__card strong { font-weight: 600; }
.about__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1001 / 529;
  align-self: center;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  filter: url("#duotone-verde");
}

/* ============================================================
   PROCESO
   ============================================================ */
.process {
  background: var(--green);
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem) clamp(5rem, 10vw, 9rem);
  position: relative;
}
/* banda decorativa sage + naranja inferior (como la slide) */
.process::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: var(--sage);
  clip-path: polygon(0 38%, 18% 30%, 42% 46%, 70% 28%, 100% 42%, 100% 100%, 0 100%);
  z-index: 0;
}
.process::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 100px;
  height: 26px;
  background: var(--orange);
  clip-path: polygon(0 60%, 22% 20%, 48% 70%, 74% 24%, 100% 64%, 100% 100%, 0 100%);
  z-index: 0;
  opacity: 0.9;
}
.process__inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
.process__title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 0.98;
}
.process__sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--cream);
  margin-top: 1rem;
}
.process__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.step {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease);
}
.step:hover { transform: translateY(-8px); }
.step__num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ink);
}
.step__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.05;
  color: var(--ink);
}
.step p { font-size: 0.96rem; color: #333; }
.step strong { font-weight: 600; }

/* controles del carrusel (solo mobile) */
.process__controls { display: none; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.services {
  background: var(--peach);
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 5vw, 3rem);
}
.services__inner { max-width: 1000px; margin: 0 auto; }
.services__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--ink);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.services__radial {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "s1 s2   s3"
    "s9 logo s4"
    "s8 logo ."
    "s7 s6   s5";
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  justify-items: center;
}
.services__logo { grid-area: logo; justify-self: center; }

.svc {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  width: fit-content;
  max-width: 100%;
  line-height: 1.15;
  transition: color 0.2s, transform 0.2s var(--ease);
  cursor: default;
}
.svc__arrow {
  width: clamp(2.6rem, 5.5vw, 4rem);
  height: auto;
  flex-shrink: 0;
  transition: transform 0.6s var(--ease);
}
/* hover desktop: mini zoom al texto + giro completo de la flecha */
@media (hover: hover) {
  .svc:hover { color: var(--orange); transform: scale(1.08); }
  .svc--s1:hover .svc__arrow { transform: rotate(360deg); }
  .svc--s2:hover .svc__arrow { transform: rotate(405deg); }
  .svc--s3:hover .svc__arrow { transform: rotate(450deg); }
  .svc--s8:hover .svc__arrow { transform: rotate(315deg); }
  .svc--s4:hover .svc__arrow { transform: rotate(495deg); }
  .svc--s7:hover .svc__arrow { transform: rotate(270deg); }
  .svc--s6:hover .svc__arrow { transform: rotate(225deg); }
  .svc--s5:hover .svc__arrow { transform: rotate(540deg); }
  .svc--s9:hover .svc__arrow { transform: rotate(315deg); }
}

.svc--s1 { grid-area: s1; }
.svc--s2 { grid-area: s2; }
.svc--s3 { grid-area: s3; text-align: left; }
.svc--s4 { grid-area: s4; text-align: left; }
.svc--s5 { grid-area: s5; text-align: left; }
.svc--s6 { grid-area: s6; }
.svc--s7 { grid-area: s7; }
.svc--s8 { grid-area: s8; }
.svc--s9 { grid-area: s9; }

/* la flecha de marca apunta siempre hacia el logo central */
.svc--s1 .svc__arrow { transform: rotate(0deg); }     /* sup-izq  -> SE */
.svc--s2 .svc__arrow { transform: rotate(45deg); }    /* sup-cen  -> S  */
.svc--s3 .svc__arrow { transform: rotate(90deg); }    /* sup-der  -> SO */
.svc--s8 .svc__arrow { transform: rotate(-45deg); }   /* izq      -> E  */
.svc--s4 .svc__arrow { transform: rotate(135deg); }   /* der      -> O  */
.svc--s7 .svc__arrow { transform: rotate(-90deg); }   /* inf-izq  -> NE */
.svc--s6 .svc__arrow { transform: rotate(-135deg); }  /* inf-cen  -> N  */
.svc--s5 .svc__arrow { transform: rotate(180deg); }   /* inf-der  -> NO */
.svc--s9 .svc__arrow { transform: rotate(-45deg); }   /* izq-sup  -> E  */
/* alineación radial: columna izquierda apunta a la derecha, derecha a la izquierda */
.svc--s1, .svc--s8, .svc--s7, .svc--s9 { justify-self: start; }
.svc--s3, .svc--s4, .svc--s5 { justify-self: end; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 80vh;
  background: var(--green);
  overflow: hidden;
}
.contact__panel {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}
.contact__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.12;
}
.contact__copy {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: var(--cream);
  line-height: 1.4;
  max-width: 480px;
}
/* Formulario de contacto */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.4rem;
  max-width: 460px;
}
.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--cream);
}
.contact__form input,
.contact__form textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(240, 225, 198, 0.08);
  border: 1px solid rgba(240, 225, 198, 0.25);
  border-radius: 12px;
  padding: 0.7em 0.9em;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: rgba(240, 225, 198, 0.45); }
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(240, 225, 198, 0.13);
}
.contact__form textarea { resize: vertical; min-height: 100px; }
.contact__form .btn { margin-top: 0.2rem; align-self: flex-start; cursor: pointer; }
.contact__form .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.contact__status { font-size: 0.88rem; min-height: 1.2em; margin: 0; }
.contact__status.ok  { color: var(--cream); }
.contact__status.err { color: #ff9b7a; }
/* honeypot oculto */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.contact__detail { display: flex; flex-direction: column; gap: 0.3rem; margin-top: 1.2rem; }
.contact__detail a {
  color: var(--cream);
  font-size: 1.05rem;
  width: fit-content;
  transition: color 0.2s;
}
.contact__detail a:hover { color: var(--orange); }
.brand--contact { margin-top: 1.5rem; }

/* Foto de cierre (la chica con el diario Coming Soon) — fundida al verde */
.contact__news {
  background-color: var(--green);
  background-image:
    linear-gradient(to right, var(--green) 0%, rgba(44, 81, 56, 0.85) 14%, rgba(44, 81, 56, 0) 46%),
    linear-gradient(rgba(36, 64, 41, 0.30), rgba(36, 64, 41, 0.30)),
    url("assets/imagen-final.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   TRABAJÁ CON NOSOTRAS
   ============================================================ */
.join {
  background: var(--peach-light);      /* #f8e2d3 — rompe el verde */
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 5vw, 3rem);
  text-align: center;
}
.join__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.join__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: var(--green);
  line-height: 1.1;
}
.join__copy {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--green-dark);
  line-height: 1.45;
  max-width: 560px;
}
.btn--green { background: var(--green); color: var(--cream); }
.btn--green:hover { background: var(--green-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-deep);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.2rem, 5vw, 3rem) clamp(1rem, 2vw, 1.4rem);
  border-top: 1px solid rgba(240, 225, 198, 0.1);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem; }
.footer__links a { color: var(--cream); font-size: 0.92rem; opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.footer__links a:hover { opacity: 1; color: var(--orange); }
.footer__copy { color: var(--sage); font-size: 0.82rem; width: 100%; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .process__cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  /* el blur del nav scrolleado crea un containing-block que rompe el menú fijo:
     en mobile usamos fondo sólido sin backdrop-filter */
  .nav--scrolled { background: var(--green-dark); backdrop-filter: none; }

  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    background: var(--green-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 2rem 2.4rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
  }
  .nav--open .nav__menu { transform: translateX(0); }
  .nav__menu a { font-size: 1.2rem; }

  /* logo centrado + hamburguesa a la derecha */
  .nav__inner { justify-content: center; position: relative; }
  .nav__toggle {
    display: flex;
    position: absolute;
    right: clamp(1.2rem, 4vw, 2.5rem);
    top: 50%;
    transform: translateY(-50%);
  }

  /* olas más chicas: que no tapen el logo ni recarguen el hero */
  .waves--tl { width: clamp(130px, 32vw, 280px); }
  .waves--br { width: clamp(140px, 30vw, 260px); right: -9%; }

  .about__grid { grid-template-columns: 1fr; }
  .about__photo { order: -1; }
  .about__waves { width: clamp(150px, 34vw, 240px); top: 0.6rem; right: -8%; }

  .contact { grid-template-columns: 1fr; }
  .contact__news {
    min-height: 380px;
    background-image:
      linear-gradient(to bottom, var(--green) 0%, rgba(44, 81, 56, 0) 32%),
      linear-gradient(rgba(36, 64, 41, 0.30), rgba(36, 64, 41, 0.30)),
      url("assets/imagen-final.webp");
    background-position: center top;
  }
}

@keyframes svc-arrow-in {
  from { opacity: 0; transform: translateX(-10px) rotate(-45deg); }
  to   { opacity: 1; transform: translateX(0) rotate(-45deg); }
}

@media (max-width: 600px) {
  /* más espacio abajo para que los controles no pisen la banda decorativa */
  .process { padding-bottom: 11rem; }

  /* proceso: título en una sola línea */
  .process__title {
    font-size: clamp(1.3rem, 6vw, 2rem);
    line-height: 1.1;
    white-space: nowrap;
  }
  .process__title br { display: none; }

  /* proceso: tarjetas como carrusel swipeable con snap */
  .process__cards {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 6%;
    padding-bottom: 0.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .process__cards::-webkit-scrollbar { display: none; }
  .process__cards .step {
    flex: 0 0 84%;
    scroll-snap-align: center;
    opacity: 1;          /* visible: el reveal no aplica dentro del carrusel */
    transform: none;
  }

  /* controles: flechas + puntitos */
  .process__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.6rem;
    position: relative;
    z-index: 2;
  }
  .carousel-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
  }
  .carousel-arrow:hover { background: var(--orange-soft); }
  .carousel-arrow:active { transform: scale(0.9); }
  .carousel-dots { display: flex; align-items: center; gap: 0.5rem; }
  .carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(240, 225, 198, 0.35);
    cursor: pointer;
    transition: background 0.25s var(--ease), width 0.25s var(--ease);
  }
  .carousel-dot.is-active {
    background: var(--orange);
    width: 24px;
    border-radius: 5px;
  }

  /* título centrado y subrayado en naranja */
  .services__title {
    text-align: center;
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
  }

  /* servicios: lista centrada, sin logo, flecha a la izquierda apuntando a cada item */
  .services__radial {
    grid-template-columns: 1fr;
    grid-template-areas:
      "s2" "s1" "s9" "s8" "s3" "s4" "s5" "s6" "s7";
    gap: 1.3rem;
    text-align: center;
  }
  .services__logo { display: none; }

  .services__radial .svc {
    justify-self: center;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5em;
    font-size: 1.2rem;
  }
  .services__radial .svc__arrow {
    display: inline-block;
    order: -1;                  /* siempre a la izquierda del texto */
    width: 2rem;
    transform: rotate(-45deg);  /* apunta a la derecha, hacia el item */
    opacity: 0;
  }
  .services__radial.is-visible .svc__arrow {
    animation: svc-arrow-in 0.45s var(--ease) forwards;
  }
  /* escalonado en el orden visual de la lista */
  .services__radial.is-visible .svc--s2 .svc__arrow { animation-delay: 0.05s; }
  .services__radial.is-visible .svc--s1 .svc__arrow { animation-delay: 0.10s; }
  .services__radial.is-visible .svc--s9 .svc__arrow { animation-delay: 0.15s; }
  .services__radial.is-visible .svc--s8 .svc__arrow { animation-delay: 0.20s; }
  .services__radial.is-visible .svc--s3 .svc__arrow { animation-delay: 0.25s; }
  .services__radial.is-visible .svc--s4 .svc__arrow { animation-delay: 0.30s; }
  .services__radial.is-visible .svc--s5 .svc__arrow { animation-delay: 0.35s; }
  .services__radial.is-visible .svc--s6 .svc__arrow { animation-delay: 0.40s; }
  .services__radial.is-visible .svc--s7 .svc__arrow { animation-delay: 0.45s; }
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
  .services__radial .svc__arrow { opacity: 1; transform: rotate(-45deg); animation: none; }
}
