:root {
  --primary: #0078c1;
  --primary-dark: #005f9a;
  --primary-soft: #e8f6ff;
  --accent: #a2d800;
  --accent-soft: #efffc7;
  --canvas: #ffffff;
  --surface: #f7fbff;
  --ink: #102435;
  --muted: #5f7280;
  --line: rgba(0, 120, 193, 0.16);
  --shadow: 0 24px 70px rgba(0, 78, 126, 0.16);
  --shadow-soft: 0 16px 42px rgba(16, 36, 53, 0.08);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --max-width: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(162, 216, 0, 0.18), transparent 26rem),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 42%, #f4fbff 100%);
  color: var(--ink);
}



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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--canvas);
  padding: 0.75rem 1rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.6rem) clamp(1rem, 5vw, 4rem)
    clamp(4rem, 8vw, 7rem);
}

.site-header::before,
.site-header::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 999px;
  filter: blur(4px);
}

.site-header::before {
  width: min(42vw, 32rem);
  height: min(42vw, 32rem);
  top: 7rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(0, 120, 193, 0.18), transparent 68%);
}

.site-header::after {
  width: 18rem;
  height: 18rem;
  bottom: 1rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(162, 216, 0, 0.24), transparent 70%);
}

.topbar,
.hero-shell,
.section-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  padding: 0.55rem 0.7rem;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: clamp(3.25rem, 8vw, 4.75rem);
  height: clamp(3.25rem, 8vw, 4.75rem);
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 120, 193, 0.18);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.02;
}

.brand strong {
  color: var(--primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-actions a,
.button,
.contact-card-item {
  text-decoration: none;
}

.nav-actions a {
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 850;
  padding: 0.82rem 1rem;
}

.nav-actions .nav-cta {
  background: var(--primary);
  color: var(--canvas);
  box-shadow: 0 12px 26px rgba(0, 120, 193, 0.2);
}

.nav-actions a:focus-visible,
.nav-actions a:hover,
.button:focus-visible,
.button:hover {
  transform: translateY(-1px);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-top: clamp(3rem, 8vw, 6rem);
}

.hero-copy {
  position: relative;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: clamp(3.25rem, 8vw, 6.85rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}


.hero-text,
.section-heading p,
.benefit-card p,
.portfolio-card p,
.process-list span,
.contact-copy p,
.shine-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 43rem;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 999px;
  font-weight: 900;
  padding: 0.95rem 1.25rem;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--canvas);
  box-shadow: 0 16px 34px rgba(0, 120, 193, 0.26);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--primary-dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-row li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.65rem 0.85rem;
}

.hero-card {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.hero-card::before {
  position: absolute;
  inset: 9% 3% auto auto;
  width: 84%;
  height: 70%;
  z-index: -1;
  border-radius: 42% 58% 48% 52%;
  background:
    linear-gradient(135deg, rgba(0, 120, 193, 0.16), rgba(162, 216, 0, 0.22)),
    var(--surface);
  content: "";
}

.logo-orb {
  width: min(90vw, 29rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, #ffffff 0 22%, transparent 23%),
    linear-gradient(145deg, #ffffff, #eaf8ff 58%, var(--accent-soft));
  box-shadow: var(--shadow);
}

.logo-orb img {
  width: 95%;
  height: 95%;
  object-fit: contain;
}

.shine-card {
  width: min(100%, 24rem);
  margin-top: -2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3vw, 1.6rem);
  backdrop-filter: blur(18px);
}

.service-pill {
  display: inline-flex;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #456000;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.7rem;
  text-transform: uppercase;
}

.shine-card h2,
.benefit-card h3,
.service-card h3,
.portfolio-card h3 {
  color: var(--ink);
}

.shine-card h2 {
  margin: 1rem 0 0.7rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.02;
}

.shine-card p {
  margin-bottom: 0;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.65fr);
  gap: 1.5rem 3rem;
  align-items: end;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro-section {
  position: relative;
  background: var(--canvas);
}

/* Banner decorativo entre secciones */
.banner-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.banner-separator img {
  width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: cover;
  display: block;
}

@media (max-width: 680px) {
  .banner-separator img {
    max-height: 30vh;
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.benefit-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.service-card,
.portfolio-card,
.process-card,
.contact-card {
  border: 1px solid rgba(0, 120, 193, 0.12);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ffffff, #f5fbff);
  padding: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 78, 126, 0.1);
}

.benefit-card span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  background: var(--primary);
  color: var(--canvas);
  font-weight: 950;
}

.benefit-card h3,
.benefit-card p {
  margin-bottom: 0;
}

.services-section {
  background:
    radial-gradient(circle at top right, rgba(162, 216, 0, 0.18), transparent 25rem),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.services-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.95));
  padding: clamp(1.25rem, 3vw, 1.6rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 78, 126, 0.14);
}

.featured-service {
  background:
    radial-gradient(circle at 20% 0%, rgba(162, 216, 0, 0.48), transparent 16rem),
    linear-gradient(135deg, #ffffff 0%, #eef9ff 48%, #dff4ff 100%);
  border: 1px solid rgba(0, 120, 193, 0.14);
  box-shadow: 0 24px 70px rgba(0, 120, 193, 0.16);
  color: var(--ink);
}

.featured-service h3,
.featured-service li,
.featured-service .card-icon {
  color: var(--ink);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  color: var(--primary-dark);
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-service .card-icon {
  background: linear-gradient(135deg, var(--primary), #005f9a);
  color: var(--canvas);
  box-shadow: 0 14px 34px rgba(0, 120, 193, 0.28);
}

.featured-service h3 {
  color: var(--primary-dark);
}

.featured-service li::before {
  background: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 120, 193, 0.12);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.08;
}

.service-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 780;
  line-height: 1.35;
}

.service-card li::before {
  flex: 0 0 auto;
  width: 0.6rem;
  height: 0.6rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(162, 216, 0, 0.14);
  content: "";
}

.video-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(162, 216, 0, 0.07), transparent 20rem),
    linear-gradient(180deg, #f8fcff, #ffffff);
}

.video-container {
  max-width: min(100%, 820px);
  margin-inline: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-container video {
  display: block;
  width: 100%;
  height: auto;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(0, 120, 193, 0.13), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f6fbff 72%, #ffffff);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 78, 126, 0.12);
}

.featured-portfolio {
  background:
    linear-gradient(180deg, rgba(232, 246, 255, 0.8), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.portfolio-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: clamp(12rem, 22vw, 16rem);
}

.portfolio-media img,
img.portfolio-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.portfolio-media {
  border-bottom: 1px solid var(--line);
}

.portfolio-placeholder {
  display: grid;
  place-items: center;
  border: 2px dashed rgba(0, 120, 193, 0.35);
  background:
    linear-gradient(135deg, rgba(0, 120, 193, 0.08), rgba(162, 216, 0, 0.08)),
    var(--primary-soft);
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder::before,
.portfolio-placeholder::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.portfolio-placeholder::before {
  width: 6rem;
  height: 6rem;
  top: -2rem;
  right: -1.5rem;
  background: var(--primary);
}

.portfolio-placeholder::after {
  width: 4rem;
  height: 4rem;
  bottom: -1rem;
  left: -1rem;
  background: var(--accent);
}

.portfolio-placeholder.soon {
  flex-direction: column;
  gap: 0.75rem;
  background:
    linear-gradient(135deg, rgba(0, 120, 193, 0.12), rgba(162, 216, 0, 0.12)),
    linear-gradient(180deg, #e8f6ff, #ffffff);
}

.portfolio-placeholder span {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 0.65rem 0.85rem;
  z-index: 1;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.portfolio-placeholder.soon {
  flex-direction: column;
  gap: 0.75rem;
}

/* Portfolio placeholder banner - Próximamente */
.portfolio-placeholder-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  border: 2px dashed rgba(0, 120, 193, 0.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 30%, rgba(162, 216, 0, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(0, 120, 193, 0.05), rgba(162, 216, 0, 0.08));
}

.portfolio-placeholder-text {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.portfolio-placeholder-soon {
  display: inline-flex;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.2rem;
  text-transform: uppercase;
}

.portfolio-placeholder span {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 0.65rem 0.85rem;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.portfolio-content {
  padding: clamp(1.2rem, 3vw, 1.5rem);
}

.portfolio-type {
  margin-bottom: 0.7rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.08;
}

.portfolio-card p:not(.portfolio-type) {
  margin-bottom: 1.1rem;
}

.portfolio-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.portfolio-meta div {
  border-radius: 1rem;
  background: var(--primary-soft);
  padding: 0.75rem;
}

.portfolio-meta dt {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-meta dd {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 900;
}

.process-section {
  padding-top: 0;
}

.process-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 120, 193, 0.08), rgba(162, 216, 0, 0.16)),
    #ffffff;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.process-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 78, 126, 0.08);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-radius: calc(var(--radius-lg) + 0.5rem);
  background:
    radial-gradient(circle at 88% 20%, rgba(162, 216, 0, 0.22), transparent 16rem),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--canvas);
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .contact-card {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
}

.contact-graphic {
  display: grid;
  place-items: center;
  align-self: center;
}

.contact-graphic svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}

@media (max-width: 767px) {
  .contact-graphic {
    display: none;
  }
}

.contact-card .contact-left {
  display: grid;
  gap: 1.5rem;
}

.contact-card .section-kicker,
.contact-card h2,
.contact-copy p {
  color: var(--canvas);
}

.contact-copy p {
  max-width: 42rem;
  margin-bottom: 0;
  opacity: 0.86;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  font-style: normal;
}

.contact-card-item {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
  padding: 1rem;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.contact-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.2);
}

.contact-card-item--location {
  cursor: default;
}

/* Brand accents */
.contact-card-item--wa {
  border-left-color: #25D366;
}
.contact-card-item--ig {
  border-left-color: #dd2a7b;
}
.contact-card-item--phone {
  border-left-color: #0ea5e9;
}
.contact-card-item--email {
  border-left-color: #f59e0b;
}
.contact-card-item--location {
  border-left-color: #ef4444;
}

/* Icon orbs */
.contact-card-orb {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #fff;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.contact-card-item:hover .contact-card-orb {
  transform: scale(1.08);
}

.contact-card-orb svg {
  width: 1.45rem;
  height: 1.45rem;
}

.contact-card-orb--wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-card-orb--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
}

.contact-card-orb--phone {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.contact-card-orb--email {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.contact-card-orb--location {
  background: linear-gradient(135deg, #f87171, #ef4444);
}

.contact-card-body {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.contact-card-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card-value {
  color: var(--canvas);
  font-size: 1.05rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .hero-shell,
  .intro-grid,
  .section-heading,
  .process-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 30rem;
    justify-self: center;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 0.85rem;
  }

  .topbar {
    align-items: stretch;
    border-radius: 1.5rem;
  }

  .brand span {
    display: none;
  }

  .nav-actions {
    flex: 1;
    justify-content: flex-end;
  }

  .nav-actions > a:not(.nav-cta) {
    display: none;
  }

  .nav-actions .nav-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    padding-inline: 0.85rem;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .logo-orb {
    width: min(70vw, 18rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-row li {
    width: 100%;
  }

  .section {
    padding-inline: 0.85rem;
  }

  .benefit-card {
    grid-template-columns: 1fr;
  }

  .portfolio-meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================ */
/* JS Enhanced */
/* ============================================ */

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--primary-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav panel */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 680px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* Header scrolled state */
.site-header.scrolled {
  padding-block: clamp(0.5rem, 1.5vw, 0.8rem);
  box-shadow: 0 4px 20px rgba(0, 78, 126, 0.12);
  transition: padding-block 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled .brand img {
  width: clamp(2.5rem, 5vw, 3.2rem);
  height: clamp(2.5rem, 5vw, 3.2rem);
  transition: width 0.3s ease, height 0.3s ease;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered reveal delays for grid children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.benefit-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.benefit-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.benefit-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.portfolio-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.portfolio-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease, width 0.3s ease, border-radius 0.3s ease, gap 0.3s ease;
  color: white;
  text-decoration: none;
}

.wa-float.wa-loaded {
  opacity: 1;
  transform: scale(1);
}

.wa-float:hover,
.wa-float:focus-visible {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  transform: scale(1.08);
}

.wa-float:not(.wa-float--expanded):hover,
.wa-float:not(.wa-float--expanded):focus-visible {
  width: auto;
  border-radius: 999px;
  padding-right: 1.2rem;
  gap: 0.5rem;
}

.wa-float svg {
  flex-shrink: 0;
  fill: white;
}

.wa-label {
  font-size: 0.85rem;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.3s ease, opacity 0.3s ease;
}

.wa-float:not(.wa-float--expanded):hover .wa-label,
.wa-float:not(.wa-float--expanded):focus-visible .wa-label {
  max-width: 200px;
  opacity: 1;
}

@media (max-width: 680px) {
  .wa-float {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
  }

  .wa-float:not(.wa-float--expanded):hover,
  .wa-float:not(.wa-float--expanded):focus-visible {
    width: auto;
    padding-right: 1rem;
  }
}

/* Active nav link */
.nav-actions a.active {
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 950;
}

/* WhatsApp Form */
.wa-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.wa-form-group {
  display: grid;
  gap: 0.5rem;
}

.wa-form-group label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(162, 216, 0, 0.25);
}

.wa-form-group select {
  cursor: pointer;
}

.wa-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.wa-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366 !important;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35) !important;
}

.wa-form-submit svg {
  fill: white;
}

.wa-form-submit:hover,
.wa-form-submit:focus-visible {
  background: #20bd5a !important;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5) !important;
}

/* Utility classes for nosotros.html inline styles removal */
.text-center {
  text-align: center;
}

.margin-inline-auto {
  margin-inline: auto;
}

.text-muted-nb {
  color: var(--muted);
  margin-bottom: 0;
}

.grid-single {
  grid-template-columns: 1fr;
}

.mx-auto-narrow {
  max-width: 36rem;
  margin-inline: auto;
}

.mx-auto-narrow-sm {
  max-width: 30rem;
  margin-inline: auto;
}

.mt-1 {
  margin-top: 1rem;
}

.justify-center {
  justify-content: center;
}

.btn-secondary-light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary-light:hover,
.btn-secondary-light:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================ */
/* Site Footer */
/* ============================================ */

.site-footer {
  background: #0a1f2f;
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 5vw, 4rem) 0;
}

.footer-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 2rem 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 24rem;
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: scale(1.12);
}

.footer-social a[aria-label="WhatsApp"]:hover,
.footer-social a[aria-label="WhatsApp"]:focus-visible {
  background: #25D366;
  color: #fff;
}

.footer-social a[aria-label="Instagram"]:hover,
.footer-social a[aria-label="Instagram"]:focus-visible {
  background: linear-gradient(135deg, #f58529, #dd2a7b);
  color: #fff;
}

.footer-social svg {
  width: 1.2rem;
  height: 1.2rem;
}

.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}
