

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: 1rem;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3.2px;
  background: #fff;
  border-radius: 3px;
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, width 0.2s ease;
}

.hamburger span:nth-child(1) {
  width: 22px;
}

.hamburger span:nth-child(2) {
  width: 28px;
}

.hamburger span:nth-child(3) {
  width: 18px;
}

.hamburger.active span {
  width: 28px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 2) Navbar general */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0c0c0c;
  color: #fefefe;
}

.apple-carousel {
  padding: 2.5rem 1rem 1.5rem;
  background: radial-gradient(circle at top, #1b1b1b, #0c0c0c 60%);
}

.carousel-header {
  max-width: 1100px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
}

.carousel-header h2 {
  color: #f97316;
  font-size: 2rem;
  letter-spacing: 1px;
  margin: 0;
}

.carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-track {
  overflow: hidden;
  padding: 0.5rem 0.2rem 1.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.carousel-card {
  position: relative;
  min-width: 280px;
  max-width: 320px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  scroll-snap-align: center;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.carousel-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.85) 100%);
}

.carousel-card-overlay h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  border: 1px solid #2b2b2b;
  background: #111;
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-btn:hover {
  border-color: #f97316;
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: #f97316;
  border-color: #f97316;
  color: #111;
}

.carousel-price {
  margin: 0 0 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f97316;
}

.product-card.is-hidden {
  display: none;
}

.btn-cta {
  align-self: flex-start;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn-cta:hover {
  background: #f97316;
  border-color: #f97316;
  transform: translateY(-2px);
}

.carousel-btn {
  border: none;
  background: #fff;
  color: #111;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease;
}

.carousel-btn:hover {
  transform: scale(1.06);
}

.carousel-btn .bx {
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .carousel-wrapper {
    align-items: flex-start;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-card {
    min-width: 220px;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 100;
}


.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  transition: transform 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 4px;
  transition: border-bottom 0.3s;
}

.navbar a.active,
.navbar a:hover {
  border-bottom: 2px solid #f97316;
  color: #f97316;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.4rem;
  transition: transform 0.18s ease;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo:hover {
  transform: scale(1.08);
}

.nav-carrito {
  position: relative;
}

.carrito-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.carrito-link .bx {
  font-size: 1.4rem;
}

.carrito-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #f97316;
  color: #fff;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carrito-badge.is-empty {
  display: none;
}

.carrito-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.carrito-overlay.is-open {
  display: flex;
}

.carrito-panel {
  background: #111;
  border-radius: 16px;
  width: min(90vw, 420px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.carrito-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #1f1f1f;
}

.carrito-panel-header h3 {
  margin: 0;
  color: #f97316;
}

.carrito-cerrar {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.carrito-panel-body {
  padding: 1rem 1.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.carrito-panel-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  background: #181818;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
}

.carrito-panel-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.carrito-panel-nombre {
  font-weight: 700;
}

.carrito-panel-precio {
  color: #bcbcbc;
  font-size: 0.95rem;
}

.carrito-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-top: 1px solid #1f1f1f;
}

.carrito-panel-actions {
  padding: 0 1.2rem 1.2rem;
  display: flex;
  justify-content: center;
}

.carrito-panel-actions .carrito-pagar {
  width: min(100%, 260px);
  justify-content: center;
  background: #25D366;
  border-color: #25D366;
  color: #111;
}

.carrito-panel-actions .carrito-pagar:hover {
  background: #1fb855;
  border-color: #1fb855;
}

.carrito-panel-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: #1b1b1b;
  color: #fff;
  border: 1px solid #333;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.qty-btn:hover {
  background: #2a2a2a;
}

.qty-count {
  font-size: 0.9rem;
  color: #cfcfcf;
  min-width: 90px;
  text-align: center;
}

.carrito-panel-vacio {
  color: #a6a6a6;
  background: #151515;
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
}


/* Media query móvil */

@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-logo:hover {
    transform: translateX(-50%) scale(1.08);
  }

  .hamburger {
    display: flex;
    position: fixed;
    top: 16px;
    left: 16px;
    background: #181818;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  }

  .navbar ul {
    display: none;
  }

  .navbar ul.nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 70vw;
    height: 100vh;
    background-color: #000;
    padding-top: 4rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .navbar ul.nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    border-bottom: 1px solid #111;
  }
  .nav-links li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    font-weight: bold;
    font-size: 1.12rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.22s, color 0.22s;
  }
  .nav-links li a .bx {
    font-size: 1.4em;
    color: #f97316;
  }
  .nav-links li a.active,
  .nav-links li a:hover {
    background-color: #f97316;
    color: #fff;
  }
  .nav-links li a.active .bx,
  .nav-links li a:hover .bx {
    color: #fff;
  }
}

/* Hero   */
.hero {
  text-align: center;
  padding: 0.1rem 1rem;
  background-color: #0c0c0c;
}

.hero img {
  display: block;
  margin: 0 auto;
  max-width: 1000px;  
  width: 100%;
  height: auto;
}

.logo-gira {
  animation: voltear 10s linear infinite;
  transform-style: preserve-3d;
}

@keyframes voltear {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

/* Cards de servicios (grid)  */

.servicios-cards {
  max-width: 1200px;
  margin: 2.5rem auto 2rem auto;
  padding: 0 1rem;
}

.servicios-cards h2 {
  color: #f97316;
  text-align: center;
  margin-bottom: 2.2rem;
  font-size: 2rem;
  letter-spacing: 1.5px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem;
}

.card-servicio {
  background: #181818;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.21);
  overflow: hidden;
  transition: transform 0.17s, box-shadow 0.17s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card {
  cursor: pointer;
}
.card-servicio:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 46px rgba(249, 115, 22, 0.12);
}

.card-servicio-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #151515;
}

.product-card .card-servicio-img {
  height: 100%;
  transition: transform 0.2s ease;
}

.product-card .card-servicio-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.85) 100%);
}

.product-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  max-width: 320px;
  width: 100%;
  justify-self: center;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 46px rgba(249, 115, 22, 0.12);
}

.product-card:hover .card-servicio-img {
  transform: scale(1.05);
}

#productosGrid {
  justify-content: center;
}

.card-servicio-body {
  padding: 1.2rem 1.1rem 1.5rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-servicio-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f97316;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.card-servicio-body i {
  color: #f97316;
  font-size: 1.2em;
}

.card-servicio-body p {
  color: #ececec;
  font-size: 1rem;
  line-height: 1.5;
  flex: 1;
}

.btn-agregar {
  margin-top: 0.9rem;
  background: #f97316;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-agregar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
}

.carrito {
  max-width: 1100px;
  margin: 2.5rem auto 3rem auto;
  padding: 0 1rem;
}

.carrito h2 {
  color: #f97316;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 1.5px;
}

.carrito-contenido {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 1.8rem;
}

.carrito-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.carrito-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #141414;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carrito-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.carrito-item-nombre {
  font-weight: 700;
  color: #fff;
}

.carrito-item-precio {
  color: #bcbcbc;
  font-size: 0.95rem;
}

.btn-remove {
  background: transparent;
  color: #f97316;
  border: 1px solid #f97316;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.btn-remove:hover {
  background: #f97316;
  color: #fff;
}

.carrito-resumen {
  background: #141414;
  border-radius: 12px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  height: fit-content;
}

.btn-vaciar {
  background: #222;
  color: #fff;
  border: 1px solid #333;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s ease;
}

.btn-vaciar:hover {
  background: #2e2e2e;
}

.carrito-vacio {
  color: #a6a6a6;
  background: #121212;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

@media (max-width: 900px) {
  .carrito-contenido {
    grid-template-columns: 1fr;
  }
}

/* TRUST BAR */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem 1rem;
  perspective: 900px;
}

.trust-item {
  min-height: 84px;
  perspective: 900px;
}

.trust-item-inner {
  position: relative;
  height: 100%;
  background: #141414;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid #1f1f1f;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.trust-item-face {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  backface-visibility: hidden;
}

.trust-item-front {
  width: 100%;
}

.trust-item-back {
  position: absolute;
  inset: 0;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  transform: rotateY(180deg);
}

.trust-item i {
  font-size: 1.6rem;
  color: #f97316;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.trust-item span {
  color: #bcbcbc;
  font-size: 0.9rem;
}

.trust-item:hover .trust-item-inner {
  transform: rotateY(180deg);
}

.trust-item.is-flipped .trust-item-inner {
  transform: rotateY(180deg);
}

@media (hover: none) {
  .trust-item:hover .trust-item-inner {
    transform: none;
  }
}

/* TESTIMONIALS */
.testimonials {
  padding: 2rem 1rem 2.5rem;
  background: #0f0f0f;
  text-align: center;
}

.testimonials h2 {
  color: #f97316;
  margin-bottom: 1.6rem;
  letter-spacing: 1.5px;
}

.testimonials-track {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-inner {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: testimonialScroll 28s linear infinite;
}

.testimonials-track:hover .testimonials-inner {
  animation-play-state: paused;
}

.testimonial-card {
  min-width: 260px;
  max-width: 300px;
  background: #171717;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.testimonial-card p {
  margin: 0 0 0.8rem 0;
  color: #e6e6e6;
}

.testimonial-card strong {
  color: #f97316;
  font-size: 0.95rem;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FLOATING ACTIONS */
.cart-float {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: #f97316;
  color: #111;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
  z-index: 2100;
}

.cart-float i {
  font-size: 1.2rem;
}

.cart-float strong {
  background: #111;
  color: #fff;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 2100;
  transition: transform 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

.whatsapp-float .bx {
  font-size: 1.6rem;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}

/* PRODUCT MODAL */
.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  padding: 1rem;
}

.product-modal.is-open {
  display: flex;
}

.product-modal-dialog {
  position: relative;
  width: min(92vw, 860px);
  background: #111;
  border-radius: 18px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  padding: 1.4rem;
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1b1b1b;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.product-modal-media {
  background: #0c0c0c;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  aspect-ratio: 1 / 1;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.product-modal-info h3 {
  margin: 0 0 0.6rem 0;
  font-size: 1.6rem;
  color: #fff;
}

.product-modal-colors {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.product-modal-colors.is-hidden {
  display: none;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #444;
}

.color-dot.white {
  background: #f5f5f5;
}

.color-dot.black {
  background: #111;
}

.product-modal-price {
  color: #f97316;
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product-modal-wsp {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #111;
}

.product-modal-wsp:hover {
  background: #1fb855;
}

@media (max-width: 768px) {
  .product-modal-body {
    grid-template-columns: 1fr;
  }
  .product-modal-media {
    min-height: 220px;
    aspect-ratio: 1 / 1;
  }
}

/* SERVICE MODAL */
.service-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  padding: 1rem;
}

.service-modal.is-open {
  display: flex;
}

.service-modal-dialog {
  position: relative;
  width: min(92vw, 560px);
  background: #111;
  border-radius: 18px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  padding: 1.4rem;
}

.service-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1b1b1b;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.service-modal-body h3 {
  margin: 0 0 0.6rem 0;
  font-size: 1.5rem;
  color: #fff;
}

.service-modal-price {
  color: #f97316;
  font-size: 1.2rem;
  margin: 0 0 0.8rem 0;
  font-weight: 700;
}

.service-modal-desc {
  color: #e0e0e0;
  line-height: 1.5;
  margin: 0 0 1.2rem 0;
}

.service-modal-actions {
  display: flex;
  gap: 0.8rem;
}

.service-modal-wsp {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #111;
}

.service-modal-wsp:hover {
  background: #1fb855;
}


/* Footer */

footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.redes-sociales {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.redes-sociales a {
  font-size: 1.8rem;
  transition: transform 0.3s;
}

.redes-sociales a:hover {
  transform: scale(1.2);
}

.bxl-whatsapp {
  color: #25D366;
}

.bxl-instagram {
  color: #E1306C;
}

.bxl-facebook {
  color: #1877F2;
}

@media (max-width: 768px) {
  .cart-float {
    display: inline-flex;
  }
}
