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

:root {
  --pink: #ec3b83;
  --cyan: #08a9c2;
  --black: #151515;
  --dark: #252525;
  --text: #242424;
  --muted: #6f6f6f;
  --line: #e9e9e9;
  --white: #ffffff;
  --font: 'Poppins', Arial, sans-serif;
  --container: 930px;
}

html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 52px 0; }

.top-strip {
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.top-strip__inner {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  min-height: 44px;
  padding: 8px 20px;
}

.top-strip a {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 6px;
}

.top-strip__whatsapp {
  background: #20c65a;
  border-radius: 999px;
  font-size: 14px;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.site-header {
  background: rgba(21, 21, 21, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  position: sticky;
  top: 0;
  transition: background .35s ease, box-shadow .35s ease;
  z-index: 50;
}

.site-header.scrolled {
  background: rgba(21, 21, 21, .78);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 54px;
  min-height: 118px;
}

.logo {
  align-items: center;
  display: flex;
  flex: 0 0 160px;
  justify-content: center;
}

.logo img {
  height: 98px;
  object-fit: contain;
  width: auto;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-menu a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  opacity: .95;
  position: relative;
  transition: color .25s ease, opacity .25s ease;
}

.nav-menu a::after {
  background: var(--pink);
  bottom: -6px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transition: width .3s ease;
  width: 0;
}

.nav-menu a:hover { color: var(--pink); opacity: 1; }
.nav-menu a:hover::after { width: 100%; }
.nav-toggle { display: none; }

.hero {
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, .18), transparent 42%),
    radial-gradient(circle at 10% 80%, rgba(236, 59, 131, .18), transparent 40%),
    linear-gradient(135deg, #07b0cb 0%, var(--cyan) 48%, #0796ad 100%);
  background-size: 100% 100%, 100% 100%, 180% 180%;
  animation: heroShift 10s ease infinite;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero-glow {
  background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 70%);
  filter: blur(40px);
  height: 220px;
  pointer-events: none;
  position: absolute;
  right: 12%;
  top: 18%;
  width: 220px;
  z-index: 1;
}

.hero-grid {
  align-items: center;
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 720px;
  padding: 40px 0 0;
}

.hero-copy {
  padding: 64px 0 80px;
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .hero-actions {
  animation: fadeUp .8s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-copy p { animation-delay: .12s; }
.hero-copy .hero-actions { animation-delay: .24s; }

.hero h1 {
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -.8px;
  line-height: .98;
  margin-bottom: 28px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .18);
  text-transform: uppercase;
}

.hero p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 430px;
  opacity: .92;
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.btn {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  min-width: 150px;
  overflow: hidden;
  padding: 13px 24px;
  position: relative;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.btn::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  content: '';
  height: 100%;
  left: -120%;
  position: absolute;
  top: 0;
  transform: skewX(-18deg);
  transition: left .55s ease;
  width: 55%;
}

.btn:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
  transform: translateY(-3px);
}

.btn:hover::after { left: 140%; }
.btn-light { background: rgba(255, 255, 255, .96); color: var(--pink); }
.btn-outline {
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .75);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, .92); color: var(--pink); }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: #d62f72; }

.hero-art {
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  margin-right: -58px;
  position: relative;
  z-index: 2;
}

.hero-art img {
  align-self: flex-end;
  animation: floatY 4.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .22));
  height: 620px;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  width: 760px;
}

.feature-cards {
  background: #fff;
  padding: 44px 0 36px;
}

.cards-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 233, 233, .9);
  border-radius: 4px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .04);
  min-height: 132px;
  padding: 22px 20px 18px 58px;
  position: relative;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, border-color .35s ease;
}

.feature-card:hover {
  border-color: rgba(236, 59, 131, .35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .1);
  transform: translateY(-8px);
}

.feature-icon {
  align-items: center;
  background: #111;
  border-radius: 999px;
  color: #fff;
  display: flex;
  height: 28px;
  justify-content: center;
  left: 20px;
  position: absolute;
  top: 22px;
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background .3s ease;
  width: 28px;
}

.feature-card:hover .feature-icon {
  background: var(--pink);
  transform: translateY(-3px) scale(1.08);
}

.feature-card h3 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.feature-card a {
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  transition: letter-spacing .25s ease, opacity .25s ease;
}

.feature-card a:hover {
  letter-spacing: .3px;
  opacity: .85;
}

.quality-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(236, 59, 131, .18), transparent 40%),
    var(--dark);
  color: #fff;
  overflow: visible;
  position: relative;
}

.quality-grid {
  align-items: center;
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 310px;
  position: relative;
}

.quality-copy { padding: 34px 0 40px; }

.quality-copy h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -.7px;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.quality-copy p {
  color: rgba(255,255,255,.88);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 480px;
}

.quality-copy ul {
  display: grid;
  gap: 8px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.quality-copy li {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  gap: 7px;
  transition: transform .25s ease, opacity .25s ease;
}

.quality-copy li:hover {
  opacity: .9;
  transform: translateX(4px);
}

.quality-copy i { color: var(--pink); }

.quality-image {
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  margin-top: -26px;
  overflow: hidden;
}

.quality-image img {
  align-self: flex-end;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .35));
  height: 360px;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  transition: transform .5s ease;
  width: 480px;
}

.quality-image:hover img { transform: translateY(-6px) scale(1.02); }

.section-title {
  margin-bottom: 28px;
  text-align: center;
}

.section-title span {
  color: var(--pink);
  display: block;
  font-size: 10px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 2px;
}

.section-title h2 {
  color: #272727;
  display: inline-block;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.15;
  position: relative;
}

.section-title h2::after {
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  border-radius: 99px;
  bottom: -8px;
  content: '';
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: width .35s ease;
  width: 58px;
}

.section-title:hover h2::after { width: 78px; }

.section-title--pink h2 {
  color: var(--pink);
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
}

.section-title--pink p {
  color: #333;
  font-size: 13px;
  line-height: 1.55;
  margin: 18px auto 0;
  max-width: 800px;
}

.about {
  background: #fff;
  box-shadow: 0 -8px 22px rgba(0,0,0,.04);
}

.about-lead {
  color: #2f2f2f;
  font-size: 13px;
  line-height: 1.65;
  margin: 0 auto 34px;
  max-width: 900px;
  text-align: center;
}

.mission-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: 1.15fr .85fr;
}

.mission-item + .mission-item { margin-top: 24px; }

.mission-item {
  border-left: 3px solid transparent;
  padding-left: 12px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}

.mission-item:hover {
  background: rgba(236, 59, 131, .04);
  border-color: var(--pink);
  transform: translateX(4px);
}

.mission-item h3 {
  align-items: center;
  color: var(--pink);
  display: flex;
  font-size: 25px;
  font-weight: 900;
  gap: 8px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.mission-item h3 i {
  color: #111;
  font-size: 20px;
  transition: transform .35s ease, color .3s ease;
}

.mission-item:hover h3 i {
  color: var(--pink);
  transform: scale(1.12) rotate(-6deg);
}

.mission-item p {
  color: #555;
  font-size: 12px;
  line-height: 1.65;
}

.mission-image {
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transition: transform .45s ease, box-shadow .45s ease;
  width: 100%;
}

.mission-image:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
  transform: scale(1.02);
}

.services {
  background: #fbfbfb;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.service-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 720px;
}

.service-card {
  text-align: center;
  transition: transform .35s ease;
}

.service-card:hover { transform: translateY(-6px); }

.service-card img {
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
  height: 122px;
  margin: 0 auto 16px;
  object-fit: cover;
  transition: transform .4s ease, box-shadow .4s ease, filter .4s ease;
  width: 122px;
}

.service-card:hover img {
  box-shadow: 0 16px 32px rgba(236, 59, 131, .28);
  filter: brightness(1.05);
  transform: scale(1.06);
}

.service-card h3 {
  color: #252525;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card p {
  color: #777;
  font-size: 10px;
  line-height: 1.5;
}

.portfolio { background: #fff; }

.portfolio-mosaic {
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
  margin: 0 auto;
  max-width: 760px;
  transition: transform .45s ease, box-shadow .45s ease, filter .45s ease;
  width: 100%;
}

.portfolio-mosaic:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
  filter: saturate(1.08);
  transform: scale(1.015);
}

.contact {
  background: #fff;
  border-top: 1px solid #eee;
}

.contact-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: .9fr 1.1fr;
}

.contact-info {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-info article {
  transition: transform .3s ease;
}

.contact-info article:hover { transform: translateY(-4px); }

.contact-info article > i {
  color: #111;
  font-size: 32px;
  margin-bottom: 12px;
  transition: color .3s ease, transform .3s ease;
}

.contact-info article:hover > i {
  color: var(--pink);
  transform: scale(1.1);
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 7px;
}

.contact-info p {
  color: #666;
  font-size: 11px;
  line-height: 1.55;
  margin-bottom: 9px;
}

.contact-info a {
  color: #111;
  font-size: 12px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  color: #555;
  display: grid;
  font-size: 11px;
  gap: 5px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, .92);
  border: 1px solid #dcdcdc;
  border-radius: 0;
  font-family: var(--font);
  font-size: 13px;
  padding: 9px 10px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(236, 59, 131, .12);
  outline: none;
}

.contact-form textarea { resize: vertical; }
.contact-form .btn { justify-self: center; margin-top: 4px; min-width: 92px; padding: 9px 18px; }

.footer {
  background: #333;
  color: rgba(255,255,255,.72);
  font-size: 11px;
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  padding-bottom: 34px;
  padding-top: 34px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 12px;
  object-fit: contain;
  width: auto;
}

.footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 13px;
}

.footer a,
.footer p {
  display: block;
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer a {
  transition: color .25s ease, opacity .25s ease;
}

.footer a:hover { color: #fff; opacity: 1; }

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.social-links a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  height: 24px;
  justify-content: center;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, color .3s ease;
  width: 24px;
}

.social-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  transform: translateY(-3px) rotate(-8deg);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--container);
  padding: 16px 20px;
}

.footer-bottom a { color: #10b8d2; }

@media (max-width: 900px) {
  .header-inner { gap: 24px; min-height: 92px; }
  .logo { flex-basis: 120px; }
  .logo img { height: 76px; }
  .nav-menu { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 36px; }
  .hero-copy { padding: 20px 0 28px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { justify-content: center; margin: -18px 0 0; }
  .hero-art img { height: auto; width: min(720px, 118vw); }
  .quality-grid,
  .mission-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .quality-copy { text-align: center; }
  .quality-copy p { margin-left: auto; margin-right: auto; }
  .quality-image { justify-content: center; margin-top: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .top-strip__inner { flex-wrap: wrap; gap: 6px 10px; padding: 6px 20px; text-align: center; }
  .header-inner { min-height: 76px; }
  .logo img { height: 62px; }
  .nav-toggle {
    background: transparent;
    border: 0;
    color: #fff;
    display: block;
    font-size: 24px;
    margin-left: auto;
  }
  .nav-menu {
    background: #111;
    border-top: 1px solid rgba(255,255,255,.12);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 20px 18px;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 10px 0; text-align: center; width: 100%; }
  .cards-grid,
  .service-grid,
  .contact-info { grid-template-columns: 1fr; }
  .cards-grid { gap: 14px; }
  .quality-copy ul { grid-template-columns: 1fr; text-align: left; }
  .quality-image img { height: auto; width: min(430px, 100%); }
  .service-grid { gap: 28px; max-width: 330px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 13px; }
  .container { padding: 0 16px; }
  .section-pad { padding: 40px 0; }
  .hero h1 { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .feature-card { padding-left: 54px; }
}

/* ── Efectos globales ── */
#scroll-progress {
  background: linear-gradient(90deg, #E5173B 0%, var(--pink) 45%, var(--cyan) 100%);
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform-origin: left;
  transition: width .08s linear;
  width: 0%;
  z-index: 100;
}

#back-top {
  align-items: center;
  background: rgba(236, 59, 131, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 8px 24px rgba(236, 59, 131, .35);
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transition: opacity .3s ease, transform .3s ease;
  width: 42px;
  z-index: 90;
}

#back-top.show {
  opacity: 1;
  pointer-events: auto;
}

#back-top:hover { transform: translateY(-4px); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

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

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.top-strip a,
.top-strip__whatsapp {
  transition: transform .25s ease, opacity .25s ease;
}

.top-strip a:hover { opacity: .88; }
.top-strip__whatsapp:hover {
  transform: scale(1.12);
}

.logo img {
  transition: transform .35s ease, filter .35s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 12px rgba(236, 59, 131, .45));
  transform: scale(1.04);
}

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

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

@keyframes heroShift {
  0%, 100% { background-position: 0% 50%, 0% 50%, 0% 50%; }
  50% { background-position: 0% 50%, 0% 50%, 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-art img { animation: none; }
}
