:root {
  --color-primary: #7c3aed;
  --color-primary-dark: #4c1d95;
  --color-secondary: #2563eb;
  --color-accent: #e0e7ff;
  --color-text: #e5e7eb;
  --color-text-light: #a5b4fc;
  --color-bg: #050816;
  --color-bg-soft: #0b1026;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container-width: 1200px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(5, 8, 22, 0.50), rgba(5, 8, 22, 0.50)),
    url("../img/fondo-100.jpg") no-repeat center center / cover;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container,
.header,
main,
footer,
.section,
.hero,
.services,
.portfolio,
.about,
.process,
.cta-band,
.contact,
.trust {
  position: relative;
  z-index: 1;
}

.container {
  width: min(92%, var(--container-width));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.14);
  color: #c4b5fd;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid rgba(124, 58, 237, 0.22);
}

.section-heading h2,
.about-text h2,
.contact-info h2,
.cta-band-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--color-accent);
  margin-bottom: 18px;
}

.section-heading p,
.about-text p,
.contact-info p,
.portfolio-info p,
.service-card p,
.benefit-card p,
.process-step p,
.footer p,
.footer li,
.contact-list li,
.trust-card p,
.brands-block-header p {
  color: var(--color-text-light);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: var(--color-white);
  box-shadow:
    0 0 18px rgba(124, 58, 237, 0.35),
    0 0 34px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-accent);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: rgba(124, 58, 237, 0.55);
  color: #c4b5fd;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.16);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 8, 22, 0.30);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  display: block;
  height: 100px;
  width: auto;
  padding: 8px;
}

.logo-img1 {
  display: block;
  height: 25px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #dbeafe;
  font-weight: 600;
  transition: var(--transition);
}

.nav a:hover {
  color: #c4b5fd;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: #ffb553;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.dropdown-toggle:hover {
  color: #c4b5fd;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  background: rgba(5, 8, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 1005;
}

.dropdown-menu a {
  padding: 12px 18px;
  color: #dbeafe;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #c4b5fd;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}


.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
  color: var(--color-accent);
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.28), transparent 34%),
    radial-gradient(circle at 72% 40%, rgba(37, 99, 235, 0.24), transparent 36%),
    radial-gradient(circle at 50% 85%, rgba(99, 102, 241, 0.18), transparent 34%),
    transparent;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #bfdbfe;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid rgba(37, 99, 235, 0.24);
}

.hero-text {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: nowrap;
  margin: 12px auto 30px;
  width: 100%;
  max-width: 1200px;
  perspective: 1000px;
}

.hero-img {
  display: block;
  height: auto;
  object-fit: contain;
  flex-shrink: 1;
  min-width: 0;
  transition: transform 0.18s ease-out;
  will-change: transform;
  transform-style: preserve-3d;
}

.hero-img-copy,
.hero-img-product,
.hero-img.uno,
.hero-img.dos,
.uno,
.dos {
  width: auto;
  max-width: 48%;
  max-height: 420px;
}

.hero-text p {
  font-size: 1.08rem;
  color: #c7d2fe;
  max-width: 760px;
  margin: 0 auto 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.services {
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(11, 16, 38, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 24px rgba(124, 58, 237, 0.18),
    0 16px 45px rgba(0, 0, 0, 0.45);
  border-color: rgba(124, 58, 237, 0.32);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #f8fafc;
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 20px;
}

.service-card a {
  font-weight: 700;
  color: #c4b5fd;
}

.portfolio {
  background: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 38, 0.72);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 24px rgba(37, 99, 235, 0.16),
    0 16px 45px rgba(0, 0, 0, 0.45);
}

.portfolio-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-info h3 {
  font-size: 1.2rem;
  color: #f8fafc;
  margin-bottom: 10px;
}

.trust {
  background: transparent;
}

.trust-heading {
  max-width: 820px;
}

.brands-block {
  margin-top: 10px;
  margin-bottom: 34px;
  padding: 34px 34px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11, 16, 38, 0.72), rgba(11, 16, 38, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.brands-block-header {
  max-width: 760px;
  margin-bottom: 26px;
}

.brands-block-header h3 {
  font-size: 1.35rem;
  color: #f8fafc;
  margin-bottom: 10px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 28px;
  align-items: center;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}

.brand-logo {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  opacity: 0.92;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-logo-wrap:hover .brand-logo {
  opacity: 1;
  transform: scale(1.04);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 24px rgba(124, 58, 237, 0.16),
    0 16px 45px rgba(0, 0, 0, 0.45);
  border-color: rgba(124, 58, 237, 0.28);
}

.trust-card h3 {
  font-size: 1.08rem;
  color: #f8fafc;
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.about-text p + p {
  margin-top: 16px;
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 90px;
}

.benefit-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.benefit-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: #f8fafc;
}

.about-instagram {
  margin-top: 80px;
  grid-column: 1 / -1;
}

.about-instagram-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.about-instagram-header h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #f8fafc;
  margin-bottom: 12px;
}

.about-instagram-header p {
  color: var(--color-text-light);
  font-size: 1rem;
}

.instagram-embeds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.instagram-embeds .instagram-media {
  background: rgba(11, 16, 38, 0.72) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: var(--shadow-soft) !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.about-instagram-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.process {
  background: transparent;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.28);
}

.process-step h3 {
  font-size: 1.08rem;
  color: #f8fafc;
  margin-bottom: 10px;
}

.cta-band {
  padding: 0 0 90px;
  background: transparent;
}

.cta-band-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.24), transparent 36%),
    radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 14, 35, 0.96));
  color: var(--color-white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band-content h2 {
  color: var(--color-white);
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-band-content p {
  color: rgba(224, 231, 255, 0.82);
  max-width: 680px;
}

.contact {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-info {
  padding: 34px;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.contact-list {
  margin: 24px 0 20px;
  display: grid;
  gap: 12px;
}

.contact-location {
  margin: 20px 0 28px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-location h3 {
  font-size: 1rem;
  color: #f8fafc;
  margin-bottom: 8px;
}

.contact-location p {
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.contact-map {
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.contact-location-link {
  color: #c4b5fd;
  font-weight: 700;
}

.contact-form {
  padding: 34px;
  border-radius: var(--radius-md);
  background: rgba(11, 16, 38, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 700;
  color: #f8fafc;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #e5e7eb;
  outline: none;
  transition: var(--transition);
}

.form-group select {
  background-color: rgba(255, 255, 255, 0.04);
  color: #e5e7eb;
}

.form-group select option {
  background: #0b1026;
  color: #e5e7eb;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.4;
  min-height: 24px;
}

.form-status-loading {
  color: #c7d2fe;
}

.form-status-success {
  color: #86efac;
}

.form-status-error {
  color: #fca5a5;
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.16), transparent 42%),
    #020617;
  color: var(--color-white);
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 30px;
  padding-bottom: 34px;
}

.footer h3,
.footer h4 {
  margin-bottom: 14px;
  color: var(--color-white);
}

.footer ul {
  display: grid;
  gap: 10px;
}

.footer a {
  color: rgba(224, 231, 255, 0.8);
  transition: var(--transition);
}

.footer a:hover {
  color: var(--color-white);
}

.footer p,
.footer li {
  color: rgba(224, 231, 255, 0.7);
}

.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #16a34a);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

.win-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(11, 16, 38, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.win-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.win-float-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

@media (max-width: 1100px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-benefits {
    margin-top: 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-images {
    max-width: 1000px;
    gap: 28px;
  }

  .hero-img-copy,
  .hero-img-product {
    max-height: 340px;
  }

  .brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .instagram-embeds {
    grid-template-columns: 1fr;
  }

  .about-instagram {
    margin-top: 50px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 75px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(5, 8, 22, 0.90);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
  }

  .nav.active {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }


  .nav-cta {
    margin-left: 0;
    width: 100%;
  }

  .hero {
    padding: 90px 0 70px;
  }

.hero-images {
  gap: 18px;
  max-width: 100%;
}

.hero-img-copy,
.hero-img-product,
.hero-img.uno,
.hero-img.dos,
.uno,
.dos {
  max-width: 48%;
  max-height: 230px;
}

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid,
  .portfolio-grid,
  .about-benefits,
  .process-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .brands-block {
    padding: 24px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 18px;
  }

  .brand-logo {
    max-height: 26px;
  }

  .cta-band-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(94%, var(--container-width));
  }

  body {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(5, 8, 22, 0.70), rgba(5, 8, 22, 0.70)),
    url("../img/fondo-100.jpg") no-repeat center center / cover;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.services-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px 12px;
    scrollbar-width: none; /* Firefox */
  }

  .services-grid::-webkit-scrollbar {
    display: none; /* Chrome, Edge, Safari */
  }

  .service-card {
    flex: 0 0 85%;
    min-width: 85%;
    scroll-snap-align: start;
    margin: 0;
  }

  .section-heading h2,
  .about-text h2,
  .contact-info h2,
  .cta-band-content h2 {
    font-size: 1.85rem;
  }

 .hero-images {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 100%;
}

.logo-img {
    display: block;
    height: 85px;
    width: auto;
    padding: 8px;
}

.portfolio-card img {
    width: 500%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.hero-img-copy,
.hero-img-product,
.hero-img.uno,
.hero-img.dos,
.uno,
.dos {
  max-width: 90%;
  max-height: 180px;
}

  .brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 16px;
  }

  .brand-logo {
    max-height: 24px;
  }

  .contact-form,
  .contact-info,
  .service-card,
  .benefit-card,
  .process-step,
  .contact-location {
    padding: 24px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .win-float {
    left: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
  }

  .win-float-img {
    width: 70px;
    height: 70px;
  }
}