:root {
  --orange: #ff8a00;
  --orange-2: #ffb347;
  --black: #0b0b0d;
  --dark: #151515;
  --gray: #f3f4f6;
  --text: #222;
  --muted: #686b73;
  --white: #fff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --radius: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: #fff;
  color: var(--text);
}

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

img {
  max-width: 100%;
  display: block;
}

.top-strip {
  height: 42px;
  background: linear-gradient(90deg, #191919, #2a2a2a 45%, #ff8a00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 0.92rem;
}

.top-strip a {
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

/* HEADER */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 5vw, 72px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.brand img {
  width: 230px;
  max-height: 96px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
}

.nav-menu a {
  color: #222;
}

.nav-menu a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--black);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 1.2rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(420px, 48%) minmax(0, 52%);
  grid-template-areas: "image content";
  align-items: center;
  gap: 40px;
  padding: 70px clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 138, 0, 0.18), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f8f8f8 50%, #fff0df 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 540px;
  height: 540px;
  background: linear-gradient(135deg, var(--orange), transparent);
  border-radius: 50%;
  opacity: 0.18;
}

.hero-bg {
  display: none;
}

.hero-content {
  grid-area: content;
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-card {
  grid-area: image;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  justify-self: center;
  border-radius: 36px;
  overflow: hidden;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.hero-card div {
  padding: 24px;
  background: linear-gradient(135deg, #fff1dc, #ffb347);
  color: #000;
}

.hero-card strong {
  display: block;
  font-size: 1.25rem;
}

.hero-card span {
  color: #000;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
}

h1,
h2,
h3 {
  margin: 0;
  color: #111;
}

h1 {
  font-size: clamp(2.6rem, 5.3vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.25rem;
}

.hero p,
.section-heading p,
.intro-text p,
.experience p,
.contact p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 32px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff5e00);
  color: #111;
  box-shadow: 0 12px 30px rgba(255, 138, 0, 0.36);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 700px;
}

.hero-stats article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 138, 0, 0.22);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  color: #111;
}

.hero-stats span {
  color: var(--muted);
  font-weight: 700;
}

/* SECCIONES */
.section {
  padding: 95px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.intro .section-heading {
  max-width: var(--max);
  margin: 0 auto 42px;
  text-align: left;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.intro-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.intro-text {
  background: #111;
  color: #fff;
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow);
  background-image: linear-gradient(135deg, #111, #252525);
}

.intro-text p {
  color: #e8e8e8;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list div {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.feature-list span,
.service-card span {
  color: var(--orange);
  font-weight: 900;
}

.feature-list p {
  color: var(--muted);
  line-height: 1.6;
}

/* SERVICIOS */
.services {
  background: #f7f7f8;
}

.services-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.13);
}

.service-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* MARCAS */
.brands {
  background: linear-gradient(135deg, #121212, #252525);
  color: #fff;
}

.brands h2,
.brands p {
  color: #fff;
}

.brand-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.brand-grid img {
  background: #fff;
  border-radius: 20px;
  height: 112px;
  width: 100%;
  object-fit: contain;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

/* CLIENTES */
.clients-section {
  background: linear-gradient(135deg, #f4f5f7 0%, #fff4e8 100%);
}

.clients-section .container {
  max-width: var(--max);
  margin: 0 auto;
}

.clients-section .section-heading {
  max-width: 980px;
  margin: 0 auto 45px;
  text-align: center;
}

.clients-section .section-heading h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #0b0b0d;
}

.clients-pills {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.clients-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.09);
  border: 1px solid rgba(255, 138, 0, 0.22);
  transition: 0.25s ease;
}

.clients-pills span:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

/* EXPERIENCIA */
.experience-card {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  background: linear-gradient(135deg, #fff, #fff4e8);
  border: 1px solid #ffe0b7;
  border-radius: 34px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.experience li {
  margin: 12px 0;
  color: #333;
}

.clients-box {
  background: #111;
  color: #fff;
  border-radius: 26px;
  padding: 32px;
}

.clients-box h3 {
  color: #fff;
}

.clients-box p {
  color: #ddd;
}

/* GALERÍA */
.gallery {
  background: #fff;
}

.gallery-grid {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
  transition: 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.025);
}

/* CONTACTO */
.contact {
  background:
    radial-gradient(circle at 85% 0, rgba(255, 138, 0, 0.22), transparent 36%),
    #111;
  color: #fff;
}

.contact-panel {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.contact h2 {
  color: #fff;
}

.contact p {
  color: #ddd;
}

.contact-actions {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
}

.contact-item strong {
  display: block;
  color: var(--orange);
  margin-bottom: 6px;
}

/* FOOTER */
.footer {
  background: #050505;
  color: #ccc;
  text-align: center;
  padding: 36px 18px;
}

.footer img {
  width: 210px;
  margin: 0 auto 12px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* ANIMACIONES */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE TABLET */
@media (max-width: 980px) {
  .hero,
  .intro-grid,
  .experience-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "content"
      "image";
    min-height: auto;
    gap: 36px;
  }

  .hero-card {
    transform: none;
  }

  .hero-card img {
    height: 420px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE CELULAR */
@media (max-width: 720px) {
  .top-strip {
    height: auto;
    padding: 10px 14px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .navbar {
    padding: 10px 18px;
  }

  .brand img {
    width: 180px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 22px 35px rgba(0, 0, 0, 0.12);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    padding: 56px 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-grid,
  .brand-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 260px;
  }

  .section {
    padding: 70px 18px;
  }

  .experience-card {
    padding: 28px;
  }

  .hero-card img {
    height: 360px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .clients-section .section-heading h2 {
    font-size: 2.3rem;
  }

  .clients-pills {
    gap: 12px;
  }

  .clients-pills span {
    width: 100%;
    padding: 15px 20px;
  }
}