/*
Theme Name:  SkyProjects
Theme URI:   https://staging.magnusgroup.mx
Author:      Magnus Group MX
Author URI:  https://magnusgroup.mx
Description: Tema personalizado para SkyProjects - Drones y Sistemas Aereos Especializados. Compatible con WooCommerce. Sin page builders.
Version:     1.0.2
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License:     Proprietary
Text Domain: skyprojects
*/

/* ═══════════════════════════════════════════════════════════
   SKYPROJECTS — REDESIGN v2
   Inter only. Mobile-first. Minimalist tech aesthetic.
   Inspired by: DJI, Linear, Vercel, Apple
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --f:          'Inter', system-ui, -apple-system, sans-serif;
  --black:      #0A0A0A;
  --white:      #FFFFFF;
  --gray-1:     #F4F4F4;
  --gray-2:     #E8E8E8;
  --gray-3:     #C8C8C8;
  --gray-4:     #888888;
  --gray-6:     #444444;
  --gray-8:     #1A1A1A;
  --gray-9:     #111111;
  --orange:     #E8601A;
  --orange-h:   #F07030;
  --nav-h:      84px;
  --r-sm:       6px;
  --r-md:       12px;
  --r-lg:       20px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; text-size-adjust: 100%; }
body {
  font-family: var(--f);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── LAYOUT ── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.section--dark { background: var(--gray-9); color: var(--white); }
.section--light { background: var(--gray-1); }

/* ── TYPOGRAPHY SYSTEM ── */
/* Only Inter. Weight does the heavy lifting. */
h1,h2,h3,h4 {
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-4);
  margin-bottom: 1.25rem;
}
.label--light { color: rgba(255,255,255,0.4); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--black);
}
.section--dark .section-head h2 { color: var(--white); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--orange);
  color: var(--white);
  border: 1.5px solid var(--orange);
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background 200ms, transform 200ms var(--ease), box-shadow 200ms;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-h);
  border-color: var(--orange-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232,96,26,.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: .7rem 1.4rem;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-sm);
  font-size: .8rem;
  font-weight: 600;
  color: var(--black);
  transition: border-color 180ms, background 180ms, transform 180ms var(--ease);
}
.btn-outline:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: color 180ms;
}
.btn-text:hover { color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background 300ms;
}
.nav.scrolled { background: rgba(10,10,10,.98); }
.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  gap: 2rem;
}
.nav__logo img, .nav__logo .custom-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
.nav__links {
  display: none;
  gap: 2.25rem;
  align-items: center;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.6);
  transition: color 150ms;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 200ms var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--white); }
.nav__cta {
  display: none;
  padding: .65rem 1.35rem;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r-sm);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: border-color 180ms, background 180ms, color 180ms;
  white-space: nowrap;
}
.nav__cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.nav__burger {
  display: flex;
  align-items: center;
  padding: .25rem;
  color: var(--white);
}
.nav__burger svg { width: 26px; height: 26px; }
@media (min-width: 860px) {
  .nav__links { display: flex; }
  .nav__cta   { display: inline-flex; }
  .nav__burger { display: none; }
}

/* Mobile menu */
.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: var(--gray-9);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  border-top: 1px solid rgba(255,255,255,.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease);
}
.nav__mobile.open { max-height: 360px; }
.nm-link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color 150ms;
}
.nm-link:hover { color: var(--white); }
.nm-cta {
  display: block;
  text-align: center;
  margin-block: 1rem .5rem;
}
@media (min-width: 860px) { .nav__mobile { display: none; } }

/* ═══════════════════════════════════════
   HERO — SPLIT LAYOUT
═══════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100dvh;
}
@media (min-width: 860px) {
  .hero { grid-template-columns: 1fr 1fr; }
}
.hero__text {
  background: var(--gray-9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem));
  min-height: 60dvh;
}
@media (min-width: 860px) {
  .hero__text {
    min-height: 100dvh;
    padding-top: calc(var(--nav-h) + 3rem);
  }
}
.hero__h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  font-weight: 400;
  color: rgba(255,255,255,.5);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 40dvh;
}
@media (min-width: 860px) {
  .hero__visual { min-height: 100dvh; }
}
.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker {
  background: var(--gray-8);
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.06);
  padding-block: .8rem;
}
.ticker__track {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker__track span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.ticker__track .dot { color: var(--orange); opacity: .6; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SERVICIOS — BENTO GRID
═══════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 320px;
  gap: 10px;
}
@media (min-width: 640px) {
  .bento { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 400px);
    grid-auto-rows: unset;
  }
}

.bento__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.bento__card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.bento__card:hover img { transform: scale(1.04); }
.bento__over {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.4)  45%,
    rgba(0,0,0,.0)  100%
  );
}
.bento__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
}
.bento__over h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: .5rem;
}
.bento__over p {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 340px;
  /* Hidden by default, revealed on hover */
  display: none;
}
@media (hover: hover) {
  .bento__over p {
    display: block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 250ms, transform 250ms var(--ease);
  }
  .bento__card:hover .bento__over p {
    opacity: 1;
    transform: translateY(0);
  }
}
.bento__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  padding: .5rem 1rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  width: fit-content;
  transition: background 180ms, border-color 180ms;
  backdrop-filter: blur(8px);
}
.bento__link:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
}
.bento__link span { transition: transform 180ms var(--ease); }
.bento__link:hover span { transform: translateX(3px); }

/* ═══════════════════════════════════════
   NOSOTROS
═══════════════════════════════════════ */
.about__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 860px) {
  .about__wrap { grid-template-columns: 1fr 1fr; }
}
.about__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.about__lead {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.8);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about__body {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about__text .label { margin-bottom: 1rem; }

/* ═══════════════════════════════════════
   DIFERENCIADORES — LIST EDITORIAL
═══════════════════════════════════════ */
.why__list {
  border-top: 1px solid var(--gray-2);
  margin-bottom: 3.5rem;
}
.why__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-2);
  transition: background 200ms;
}
.why__item:hover { background: var(--gray-1); margin-inline: -1.5rem; padding-inline: 1.5rem; border-radius: var(--r-sm); }
.why__num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gray-3);
  padding-top: .35rem;
  min-width: 24px;
}
.why__body h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: .5rem;
}
.why__body p {
  font-size: .875rem;
  color: var(--gray-4);
  line-height: 1.7;
  max-width: 560px;
}
.why__banner {
  background: var(--black);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .why__banner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.why__banner p {
  font-family: var(--f);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
}

/* ═══════════════════════════════════════
   DRONES — PRODUCT GRID
═══════════════════════════════════════ */
.drones__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .drones__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .drones__grid { grid-template-columns: repeat(4, 1fr); }
}
.drone {
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms var(--ease);
}
.drone:hover {
  border-color: var(--gray-3);
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.drone__img {
  background: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
  aspect-ratio: 1;
}
.drone__img img {
  max-height: 160px;
  object-fit: contain;
  transition: transform 500ms var(--ease);
}
.drone:hover .drone__img img { transform: scale(1.06) translateY(-4px); }
.drone__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-4);
  background: var(--gray-2);
  padding: .25rem .6rem;
  border-radius: var(--r-sm);
}
.drone__info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.drone__brand {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.drone__name {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: .15rem;
}
.drone__desc {
  font-size: .8rem;
  color: var(--gray-4);
  line-height: 1.6;
  flex: 1;
  margin-bottom: .75rem;
}
.drone__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1rem;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-2);
  margin-bottom: 1rem;
}
.drone__specs div dt {
  font-size: .6rem;
  font-weight: 600;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.drone__specs div dd {
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.drones__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .drones__footer { flex-direction: row; justify-content: center; }
}
.drones__footer p {
  font-size: .9rem;
  color: var(--gray-4);
}

/* ═══════════════════════════════════════
   INDUSTRIAS — CAROUSEL
═══════════════════════════════════════ */
.industries {
  padding-bottom: 2.5rem;
}
.industries .wrap {
  padding-bottom: 2rem;
}
.carousel-outer {
  overflow: hidden;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  max-width: 1200px;
  margin-inline: auto;
  cursor: grab;
}
.carousel-outer:active { cursor: grabbing; }
.carousel-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
  user-select: none;
}
.ind {
  flex: 0 0 clamp(260px, 30vw, 360px);
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.ind img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
  pointer-events: none;
}
.ind:hover img { transform: scale(1.04); }
.ind figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3.5rem 1.25rem 1.25rem;
  text-align: center;
}
/* Progress dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.75rem;
  padding-bottom: .5rem;
}
.cdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 250ms, transform 250ms;
}
.cdot.active {
  background: var(--orange);
  transform: scale(1.4);
}
@media (max-width: 639px) {
  .ind { flex: 0 0 min(280px, 78vw); }
}


/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
}
.review {
  background: var(--gray-9);
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review__stars {
  color: var(--orange);
  font-size: .9rem;
  letter-spacing: 2px;
}
.review__quote {
  font-size: clamp(.88rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review footer {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-8);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review__name {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  font-style: normal;
}
.review__sector {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════
   CONTACTO
═══════════════════════════════════════ */
.contact {
  background: var(--gray-1);
}
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 860px) {
  .contact__wrap { grid-template-columns: 1fr 1.4fr; align-items: center; }
}
.contact__h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--black);
  margin-bottom: 1rem;
}
.contact__sub {
  font-size: .9rem;
  color: var(--gray-4);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.contact__data {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__data li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.contact__data svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact__data div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact__data a {
  font-size: .85rem;
  color: var(--gray-6);
  transition: color 150ms;
}
.contact__data a:hover { color: var(--orange); }

/* Contact Form */
.contact__form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.fg { display: flex; flex-direction: column; gap: .45rem; }
.fg label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .025em;
  color: var(--gray-6);
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .7rem .85rem;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--r-sm);
  font-size: .875rem;
  color: var(--black);
  background: var(--gray-1);
  outline: none;
  transition: border-color 150ms, background 150ms, box-shadow 150ms;
}
.fg input::placeholder,
.fg textarea::placeholder { color: var(--gray-3); }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,96,26,.1);
}
.fg select { cursor: pointer; }
.fg textarea { resize: vertical; min-height: 90px; }
.form-note {
  font-size: .72rem;
  color: var(--gray-3);
  text-align: center;
  margin-top: -.25rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: 2.5rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 860px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 2rem;
  }
}
.footer__brand { display: flex; flex-direction: column; gap: .5rem; align-items: center; }
@media (min-width: 860px) { .footer__brand { align-items: flex-start; } }
.footer__logo { height: 46px; width: auto; opacity: .9; }
.footer__brand p {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  justify-content: center;
}
footer nav a {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  transition: color 150ms;
}
footer nav a:hover { color: var(--white); }
.footer__right {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
}
@media (min-width: 860px) { .footer__right { align-items: flex-end; } }
.footer__right a {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  transition: color 150ms;
}
.footer__right a:hover { color: var(--white); }
.footer__right span {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
}

/* ═══════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 90;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform 200ms var(--ease), box-shadow 200ms;
}
.wa-fab svg { width: 24px; height: 24px; }
.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.sr.in {
  opacity: 1;
  transform: translateY(0);
}
.sr-d1 { transition-delay: 80ms; }
.sr-d2 { transition-delay: 160ms; }
.sr-d3 { transition-delay: 240ms; }
.sr-d4 { transition-delay: 320ms; }

/* ── Focus visible ── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
