:root {
  --teal: #06b8b8;
  --teal-dark: #057d84;
  --navy: #073b5c;
  --orange: #ff7a22;
  --green: #197b47;
  --ink: #111827;
  --muted: #667085;
  --bg: #f7faf9;
  --white: #fff;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(7, 59, 92, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 59, 92, 0.08);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.brand strong {
  font-size: 23px;
  letter-spacing: -1px;
}
.brand strong span,
.section-heading em,
.social-copy em {
  color: var(--teal-dark);
  font-style: normal;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #4b5563;
}
.nav-links {
  display: flex;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--teal-dark);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-dark), var(--green));
  color: #fff;
  box-shadow: 0 10px 30px rgba(6, 184, 184, 0.25);
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 25px;
}
.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f1720;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1552053831-71594a27632d?auto=format&fit=crop&w=1900&q=88")
    center/cover no-repeat;
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 17, 25, 0.94) 0%,
    rgba(7, 17, 25, 0.86) 38%,
    rgba(7, 17, 25, 0.34) 66%,
    rgba(7, 17, 25, 0.12) 100%
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 30px;
  padding: 70px 0;
}
.hero-copy {
  color: #fff;
  max-width: 640px;
}
.eyebrow,
.section-heading > span,
.social-copy > span {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(6, 184, 184, 0.14);
  color: #9ef2ef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
}
.hero h1 {
  font-size: 76px;
  line-height: 0.98;
  margin: 24px 0 20px;
  letter-spacing: -4px;
}
.hero h1 span {
  color: #4bd1c9;
}
.hero-copy > p {
  font-size: 20px;
  line-height: 1.65;
  color: #e5edf2;
  max-width: 600px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}
.trust-row span {
  color: #ffc729;
  letter-spacing: 3px;
  font-size: 22px;
}
.trust-row b {
  font-size: 14px;
}
.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.store {
  min-width: 174px;
  padding: 11px 20px 10px 52px;
  border-radius: 12px;
  background: #050505;
  color: #fff;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.store:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  line-height: 1;
}
.store.app-store:before { content: "🍎"; }
.store.play-store:before { content: "🤖"; }
.store small,
.store strong {
  display: block;
}
.store small {
  font-size: 9px;
}
.store strong {
  font-size: 20px;
}
.social-mini {
  display: flex;
  gap: 20px;
  margin-top: 26px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
}
.social-mini a {
  color: #fff;
}
.hero-device {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  border: 7px solid #111;
  border-radius: 39px;
  background: #111;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone-main {
  width: 315px;
  height: 635px;
  transform: rotate(5deg);
}
.phone-notch {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 25px;
  background: #111;
  border-radius: 0 0 17px 17px;
}
.phone-screen {
  height: 100%;
  background: #fff;
  padding: 34px 17px 18px;
  color: #1f2937;
}
.app-top {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}
.app-top img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.app-top span {
  margin-left: auto;
}
.app-home h3 {
  margin: 18px 0 0;
}
.app-home > p {
  margin: 3px 0 12px;
  font-size: 11px;
}
.search {
  background: #f2f4f7;
  border-radius: 10px;
  padding: 10px;
  font-size: 10px;
  color: #667085;
}
.near {
  margin: 14px 0;
  font-size: 11px;
}
.near small {
  display: block;
  margin-left: 19px;
  color: #667085;
}
.app-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 8px;
}
.app-icons span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 21px;
}
.app-icons small {
  font-size: 7px;
  font-weight: 700;
}
.promo {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #168650, #5bb36c);
  color: #fff;
  border-radius: 16px;
  padding: 14px;
  margin-top: 20px;
}
.promo small {
  font-size: 8px;
}
.promo b {
  font-size: 15px;
}
.promo span {
  font-size: 9px;
  margin-top: 5px;
}
.bottom-nav {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.bottom-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
.bottom-nav small {
  font-size: 7px;
}
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  font-size: 12px;
}
.floating-card span {
  font-size: 10px;
  color: #667085;
}
.float-one {
  left: 0;
  top: 160px;
}
.float-two {
  right: -10px;
  bottom: 90px;
}
.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  font-size: 12px;
  opacity: 0.8;
}
.section {
  padding: 105px 0;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}
.section-heading > span {
  color: var(--teal-dark);
  background: #e8fbfa;
}
.section-heading h2 {
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 18px 0 12px;
}
.section-heading p {
  color: var(--muted);
  font-size: 17px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e8eeee;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 45px rgba(7, 59, 92, 0.08);
  transition: 0.25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(7, 59, 92, 0.13);
}
.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 23px;
}
.mint {
  background: #dff8e9;
}
.yellow {
  background: #fff3c7;
}
.coral {
  background: #ffe0d5;
}
.blue {
  background: #dcedff;
}
.purple {
  background: #eee1ff;
}
.pink {
  background: #ffe0e5;
}
.feature-card h3 {
  margin: 18px 0 8px;
}
.feature-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  min-height: 65px;
}
.mini-preview {
  height: 150px;
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background: #f2f6f6;
}
.mini-preview b {
  font-size: 14px;
}
.mini-preview small {
  font-size: 11px;
  color: #52606d;
}
.map-preview {
  background: linear-gradient(135deg, #e6f4ee, #fff);
}
.map-preview i {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
}
.map-preview i:nth-child(1) {
  left: 25%;
  top: 25%;
}
.map-preview i:nth-child(2) {
  left: 62%;
  top: 38%;
}
.map-preview i:nth-child(3) {
  left: 45%;
  top: 60%;
}
.shop-preview {
  background:
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1601758228041-f3b2795255f1?auto=format&fit=crop&w=800&q=80")
      center/cover;
  color: #fff;
}
.shop-preview small,
.pet-photo small {
  color: #fff;
}
.pet-photo {
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.65)),
    url("https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?auto=format&fit=crop&w=800&q=80")
      center/cover;
  color: #fff;
}
.agenda {
  justify-content: center;
  gap: 7px;
}
.agenda small {
  background: #fff3bd;
  padding: 5px 7px;
  border-radius: 7px;
  width: max-content;
}
.lost {
  background:
    linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.85)),
    url("https://images.unsplash.com/photo-1558788353-f76d92427f16?auto=format&fit=crop&w=800&q=80")
      center/cover;
}
.shelter {
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.58)),
    url("https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&w=800&q=80")
      center/cover;
  color: #fff;
}
.shelter small {
  color: #fff;
}
.screenshots-section {
  background: linear-gradient(180deg, #f6faf9, #fff);
}
.screens-carousel {
  position: relative;
}
.screens-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 20px 52px 35px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.screens-track::-webkit-scrollbar {
  display: none;
}
.screen-item {
  min-width: 285px;
  scroll-snap-align: center;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.18));
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.screen-item:hover img {
  transform: translateY(-8px);
  filter: drop-shadow(0 30px 35px rgba(15, 23, 42, 0.25));
}

.placeholder-screen {
  height: 100%;
  padding: 50px 18px;
  background: linear-gradient(165deg, #fff, #e9fafa);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.placeholder-screen strong {
  font-size: 22px;
}
.placeholder-screen span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin: 12px;
}
.placeholder-screen p {
  font-size: 12px;
  color: #667085;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--teal-dark);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.problem-grid article {
  padding: 30px;
  border: 1px solid #e5eceb;
  border-radius: 22px;
  background: #fff;
  text-align: center;
}
.problem-grid b {
  font-size: 33px;
}
.problem-grid h3 {
  font-size: 17px;
  margin: 15px 0 7px;
}
.problem-grid p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.social-section {
  padding: 90px 0;
  background: #07120e;
  color: #fff;
}
.social-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.75fr;
  gap: 45px;
  align-items: center;
}
.social-copy > span {
  background: rgba(75, 209, 201, 0.13);
}
.social-copy h2 {
  font-size: 50px;
  line-height: 1.03;
  margin: 20px 0;
}
.social-copy p {
  color: #c7d2cc;
}
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.social-links a {
  padding: 10px 14px;
  border: 1px solid #315246;
  border-radius: 999px;
  font-size: 12px;
}
.reel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.reel {
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.reel span {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 18, 14, .88);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.reel:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(0, 0, 0, .34); }
.reel-1 {
  background-image: url("assets/social/para-que-sirve-petmatch.png");
}
.reel-2 {
  background-image: url("assets/social/visitamos-naricitas.png");
}
.reel-3 {
  background-image: url("assets/social/suma-tu-local.png");
}
.reel-4 {
  background-image: url("assets/social/detras-de-la-app.png");
}
.download-section {
  background: #07120e;
  padding: 20px 0 70px;
}
.download-card {
  background: linear-gradient(100deg, #0c897f, #277a42);
  color: #fff;
  border-radius: 34px;
  padding: 28px 35px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.download-card > img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
}
.download-card h2 {
  margin: 0;
  font-size: 30px;
}
.download-card p {
  margin: 5px 0 0;
  color: #ddf5ea;
}
.download-card .store-buttons {
  margin-left: auto;
}
footer {
  background: #050b08;
  color: #dbe7e1;
  padding: 55px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}
.footer-brand strong {
  color: #fff;
  font-size: 27px;
}
.footer-brand small {
  color: #9eb2a8;
  font-size: 9px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}
.footer-grid b {
  color: #fff;
  margin-bottom: 7px;
}
.footer-grid a {
  color: #aebdb6;
}
.copyright {
  border-top: 1px solid #213029;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: #829087;
  text-align: center;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 80px 0 100px;
  }
  .hero-copy {
    text-align: center;
    margin: auto;
  }
  .hero h1 {
    font-size: 62px;
  }
  .store-buttons,
  .social-mini,
  .trust-row {
    justify-content: center;
  }
  .hero-device {
    margin-top: 30px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: 1fr;
  }
  .social-copy {
    text-align: center;
  }
  .reel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-card {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .download-card .store-buttons {
    margin: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .nav-wrap {
    height: 68px;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }
  .brand strong {
    font-size: 20px;
  }
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2.5px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-photo {
    background-position: 64% center;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(7, 17, 25, 0.88),
      rgba(7, 17, 25, 0.82)
    );
  }
  .phone-main {
    width: 270px;
    height: 545px;
  }
  .float-one {
    left: -5px;
    top: 110px;
  }
  .float-two {
    right: -5px;
    bottom: 55px;
  }
  .section {
    padding: 78px 0;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .feature-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .feature-card > p {
    min-height: auto;
  }
  .screens-track {
    padding-inline: 34px;
  }
  .carousel-btn {
    width: 38px;
    height: 38px;
  }
  .screen-item {
    min-width: 190px;
    height: 400px;
  }
  .social-copy h2 {
    font-size: 39px;
  }
  .reel-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reel {
    height: auto;
    aspect-ratio: 3 / 4;
    padding: 13px;
  }
  .reel h3 {
    font-size: 16px;
  }
  .download-card {
    padding: 28px 18px;
  }
  .download-card h2 {
    font-size: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
    text-align: left;
  }
  .footer-brand {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    text-align: center;
  }
  .footer-grid > div:last-child b {
    flex-basis: 100%;
    margin-bottom: 0;
  }
  .store {
    min-width: 155px;
  }
  .store strong {
    font-size: 17px;
  }
}
/* =========================================
   CAPTURAS RESPONSIVE
========================================= */

.screenshots-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f6faf9 0%, #ffffff 100%);
}

.screens-carousel {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
}

.screens-track {
  display: flex;
  align-items: center;
  gap: 24px;

  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;

  padding: 35px 64px 55px;

  scroll-snap-type: x mandatory;
  scroll-padding-inline: 64px;
  scrollbar-width: none;

  -webkit-overflow-scrolling: touch;
}

.screens-track::-webkit-scrollbar {
  display: none;
}

.screen-item {
  flex: 0 0 clamp(220px, 25vw, 290px);
  min-width: 0;
  height: auto;

  display: flex;
  justify-content: center;
  align-items: center;

  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.screen-item img {
  display: block;

  width: 100%;
  max-width: 290px;
  height: auto;
  max-height: 680px;

  object-fit: contain;

  filter: drop-shadow(0 22px 28px rgba(15, 23, 42, 0.18));

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.screen-item:hover img {
  transform: translateY(-7px);
  filter: drop-shadow(0 28px 34px rgba(15, 23, 42, 0.24));
}

/* Flechas */

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 10;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;

  background: var(--teal-dark);
  color: white;

  font-size: 30px;
  line-height: 1;

  cursor: pointer;

  transform: translateY(-50%);

  box-shadow: 0 10px 28px rgba(5, 125, 132, 0.28);
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

/* Tablet */

@media (max-width: 980px) {
  .screens-track {
    gap: 18px;
    padding: 30px 52px 45px;
    scroll-padding-inline: 52px;
  }

  .screen-item {
    flex-basis: clamp(220px, 34vw, 270px);
  }

  .screen-item img {
    max-width: 270px;
    max-height: 630px;
  }
}

/* Celular */

@media (max-width: 620px) {
  .screenshots-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .screenshots-section .section-heading {
    margin-bottom: 18px;
    padding-inline: 8px;
  }

  .screenshots-section .section-heading h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .screenshots-section .section-heading p {
    font-size: 15px;
    line-height: 1.5;
  }

  .screens-carousel {
    width: 100%;
    overflow: hidden;
  }

  .screens-track {
    gap: 12px;

    padding: 20px 46px 38px;

    scroll-padding-inline: 46px;
  }

  .screen-item {
    flex: 0 0 min(72vw, 275px);
  }

  .screen-item img {
    width: 100%;
    max-width: 275px;
    max-height: none;

    filter: drop-shadow(0 16px 22px rgba(15, 23, 42, 0.16));
  }

  .screen-item:hover img {
    transform: none;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;

    font-size: 25px;
  }

  .carousel-btn.prev {
    left: 4px;
  }

  .carousel-btn.next {
    right: 4px;
  }
}

/* Celulares chicos */

@media (max-width: 390px) {
  .screens-track {
    padding-inline: 38px;
    scroll-padding-inline: 38px;
  }

  .screen-item {
    flex-basis: min(74vw, 255px);
  }

  .screen-item img {
    max-width: 255px;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 23px;
  }
}

.vet-preview{
  position:relative;
  overflow:hidden;
}

.vet-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 20%;
}

.vet-preview span{
  position:absolute;
  left:14px;
  bottom:12px;
  color:white;
  font-weight:700;
  text-shadow:0 2px 8px rgba(0,0,0,.7);
}

/* Carrusel de futuros banners publicitarios */
.ads-section {
  background: #f4fbfb;
  overflow: hidden;
}
.ads-carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.ads-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 30px;
}
.ads-track::-webkit-scrollbar { display: none; }
.ad-slide {
  flex: 0 0 100%;
  min-height: 330px;
  padding: 58px 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: white;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}
.ad-slide::after {
  content: "🐾";
  position: absolute;
  right: 10%;
  top: 16%;
  font-size: 150px;
  opacity: .09;
  transform: rotate(-15deg);
}
.ad-slide-one { background: linear-gradient(120deg, #057d84, #08babc); }
.ad-slide-two { background: linear-gradient(120deg, #073b5c, #0a7891); }
.ad-slide-three { background: linear-gradient(120deg, #e85f16, #ff9a38); }
.ad-slide > div { max-width: 650px; position: relative; z-index: 1; }
.ad-slide span {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  opacity: .82;
}
.ad-slide h3 { margin: 12px 0 10px; font-size: 38px; line-height: 1.08; }
.ad-slide p { margin: 0; max-width: 560px; line-height: 1.65; color: rgba(255,255,255,.84); }
.ad-slide a {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  background: white;
  color: var(--teal-dark);
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.ad-slide-three a { color: #c64d0d; }
.ads-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.ads-btn.prev { left: 16px; }
.ads-btn.next { right: 16px; }
.ads-dots { display: flex; justify-content: center; gap: 7px; margin-top: 18px; }
.ads-dots span { width: 8px; height: 8px; border-radius: 99px; background: #bfd7d8; transition: .2s; cursor: pointer; }
.ads-dots span.active { width: 24px; background: var(--teal-dark); }

/* Locales gratis y planes Premium */
.business-section { background: #fff; }
.business-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 32px 38px;
  margin-bottom: 30px;
  border: 1px solid #cceceb;
  border-radius: 26px;
  background: linear-gradient(110deg, #effcfa, #fff);
}
.business-kicker { color: var(--teal-dark); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; }
.business-intro h3 { margin: 7px 0 6px; font-size: 25px; }
.business-intro p { margin: 0; color: var(--muted); line-height: 1.6; max-width: 720px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid #dce8e5;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(7,59,92,.07);
}
.plan-card.premium { border-color: #b8e3df; }
.plan-card.featured { border: 2px solid var(--orange); background: #fffaf6; }
.recommended {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.plan-badge { color: var(--teal-dark); font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
.featured .plan-badge { color: #d35d18; }
.plan-top h3 { margin: 9px 0 7px; font-size: 24px; }
.plan-top > p:not(.plan-price) { margin: 0; min-height: 45px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.plan-price { margin: 8px 0 0; font-size: 29px; font-weight: 800; color: var(--navy); }
.plan-price small { font-size: 12px; color: var(--muted); }
.plan-card ul { padding: 20px 0 18px; margin: 12px 0 18px; list-style: none; border-top: 1px solid #e5eeeb; }
.plan-card li { position: relative; padding: 7px 0 7px 25px; color: #4f6470; font-size: 13px; line-height: 1.45; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-dark); font-weight: 900; }
.plan-button { margin-top: auto; border: 1px solid var(--teal-dark); color: var(--teal-dark); background: white; }
.plan-button.primary { color: white; background: var(--teal-dark); }
.business-note { text-align: center; margin: 25px 0 0; color: var(--muted); font-size: 13px; }

/* Cómo funciona */
.how-section { background: linear-gradient(180deg, #effbfa 0%, #fff 100%); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar-card { position: relative; padding: 32px; border: 1px solid #d8ece9; border-radius: 26px; background: #fff; box-shadow: 0 16px 45px rgba(7,59,92,.07); }
.pillar-card > span { position: absolute; right: 25px; top: 22px; color: #c6e8e5; font-size: 28px; font-weight: 800; }
.pillar-icon { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 17px; background: #e5f8f5; font-size: 27px; }
.pillar-card h3 { margin: 20px 0 8px; font-size: 20px; }
.pillar-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.product-pillars { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 26px; border-radius: 22px; overflow: hidden; background: var(--navy); color: #fff; }
.product-pillars div { padding: 22px 26px; text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.product-pillars div:last-child { border-right: 0; }
.product-pillars b, .product-pillars small { display: block; }
.product-pillars b { font-size: 16px; }
.product-pillars small { margin-top: 4px; color: #bcd6df; font-size: 12px; }

/* Confianza y comunidad */
.trust-section { padding: 62px 0; background: #073b5c; color: #fff; }
.trust-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); align-items: center; gap: 34px; }
.trust-copy span { color: #69ddd8; font-size: 11px; font-weight: 800; letter-spacing: 1.6px; }
.trust-copy h2 { margin: 10px 0; font-size: 30px; line-height: 1.15; }
.trust-copy p { margin: 0; color: #bed1dc; font-size: 14px; line-height: 1.6; }
.trust-stat { padding-left: 25px; border-left: 1px solid rgba(255,255,255,.18); }
.trust-stat strong, .trust-stat span { display: block; }
.trust-stat strong { color: #fff; font-size: 25px; line-height: 1.1; }
.trust-stat span { margin-top: 7px; color: #bed1dc; font-size: 12px; line-height: 1.4; }

/* Preguntas frecuentes */
.faq-section { background: #f7faf9; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-layout .section-heading { text-align: left; margin: 0; }
.faq-layout .section-heading .btn { margin-top: 20px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid #dce9e5; border-radius: 18px; background: #fff; padding: 0 22px; }
.faq-list summary { position: relative; padding: 20px 35px 20px 0; cursor: pointer; list-style: none; color: var(--navy); font-size: 15px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 16px; color: var(--teal-dark); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: 0; padding: 0 35px 20px 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

@media (max-width: 900px) {
  .ad-slide { min-height: 360px; padding: 50px 65px; }
  .ad-slide h3 { font-size: 32px; }
  .plans-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-copy { grid-column: 1 / -1; }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 620px) {
  .ad-slide { min-height: 390px; padding: 48px 52px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 25px; }
  .ad-slide h3 { font-size: 28px; }
  .ads-btn { width: 36px; height: 36px; font-size: 24px; }
  .ads-btn.prev { left: 8px; }
  .ads-btn.next { right: 8px; }
  .business-intro { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
  .business-intro .btn { width: 100%; }
  .plan-card { padding: 27px 23px; }
  .product-pillars { grid-template-columns: 1fr; }
  .product-pillars div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .product-pillars div:last-child { border-bottom: 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 25px; }
  .trust-copy { grid-column: auto; }
  .trust-stat { padding: 18px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  footer { padding-top: 35px; }
  .footer-brand img { width: 88px; height: 88px; }
  .footer-brand { flex-direction: row; gap: 10px; }
  .footer-brand strong { font-size: 23px; }
  .copyright { margin-top: 28px; }
}

/* Mejor aprovechamiento de pantallas grandes */
@media (min-width: 1500px) {
  .site-header .container,
  .hero .container {
    width: min(1420px, calc(100% - 80px));
  }
  .nav-wrap { height: 84px; }
  .hero { min-height: 720px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 70px; }
  .hero h1 { font-size: 86px; }
  .hero-copy > p { font-size: 21px; }
  .phone-main { width: 340px; height: 680px; }
  .float-one { left: 20px; }
  .float-two { right: 15px; }
  .hero-photo { background-position: 58% center; }
}
