/* =============================================
   PintaPeg - Componentes del frontend
   ============================================= */

/* =============================================
   NAVBAR — Mobile First
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to right, #706F69, #fe3a28, #ff5f10, #ff8719, #ff821f);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 50px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

/* Hamburger — visible on mobile */
.btn-menu-toggle {
  background: none;
  border: none;
  color: #ffc933;
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
}

/* Nav links — hidden on mobile, dropdown when menu-abierto */
.nav-links {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #706F69, #fe3a28, #ff5f10, #ff8719, #ff821f);
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.navbar.menu-abierto .nav-links {
  display: flex;
}

.nav-links a {
  color: var(--blanco);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blanco);
  background: rgba(0,0,0,0.25);
}

/* Moneda selector — shared base */
.moneda-selector {
  display: flex;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
}

.moneda-selector button {
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blanco);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transicion);
}

.moneda-selector button.active {
  background: var(--naranja);
  color: var(--blanco);
}

/* Mobile: hide desktop moneda, show mobile moneda */
.moneda-desktop {
  display: none;
}

.moneda-mobile {
  display: flex;
  margin-top: 0.5rem;
}

/* Cart button in navbar */
.btn-carrito {
  position: relative;
  background: none;
  border: none;
  color: var(--blanco);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem;
}

.btn-carrito .badge-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--naranja);
  color: var(--blanco);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   NAVBAR — Desktop (min-width: 769px)
   ============================================= */
@media (min-width: 769px) {
  .navbar {
    height: 70px;
    padding: 0 2rem;
  }

  .navbar .logo {
    position: static;
    transform: none;
  }

  .navbar .logo img {
    height: 80px;
  }

  .btn-menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    top: auto;
    width: auto;
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .nav-links a {
    padding: 6px 14px;
  }

  .moneda-desktop {
    display: flex;
  }

  .moneda-mobile {
    display: none;
  }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-bg {
  position: relative;
  width: 100%;
  min-height: 100svh;
  background: linear-gradient(180deg, #FF5500 0%, #FF8C00 50%, #FFB300 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-equipo-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  overflow: hidden;
  height: 300px;
}

.hero-equipo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #FFB300);
  z-index: 2;
}

.hero-equipo {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  object-position: top center;
  display: block;
  z-index: 1;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 80px 20px 20px;
}

.hero-title {
  font-family: 'Chewy', cursive;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  gap: 4px;
}

.hero-line-top,
.hero-line-bottom {
  font-size: clamp(3.5rem, 12vw, 4.5rem);
  color: #ffffff;
  -webkit-text-stroke: 2px rgba(0,0,0,0.15);
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  display: block;
}

.hero-line-color {
  font-size: clamp(3.2rem, 11vw, 4.2rem);
  display: flex;
  align-items: center;
  gap: 2px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.35);
  -webkit-text-stroke: 2px rgba(0,0,0,0.2);
}

.hero-line-color span {
  display: inline-block;
}

.hero-a {
  color: #ffffff !important;
  -webkit-text-stroke: 2px rgba(0,0,0,0.15) !important;
}

/* HERO DESKTOP */
@media (min-width: 769px) {
  .hero-bg {
    flex-direction: row;
    min-height: max(620px, 80svh);
    align-items: stretch;
  }

  .hero-equipo-wrap {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 50%;
    height: 75%;
    max-width: none;
    margin-top: 0;
    overflow: hidden;
  }

  .hero-equipo-wrap::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #FFB300);
    z-index: 2;
  }

  .hero-equipo {
    position: relative;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: top center;
    min-height: unset;
    max-height: unset;
    margin-top: 0;
  }

  .hero-content {
    text-align: left;
    width: 50%;
    padding: 80px 0 80px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-title {
    align-items: flex-start;
  }

  .hero-line-top,
  .hero-line-bottom {
    font-size: clamp(4rem, 7vw, 7rem);
  }

  .hero-line-color {
    font-size: clamp(3.8rem, 6.5vw, 6.5rem);
  }
}

/* =============================================
   PRODUCTOS DESTACADOS
   ============================================= */
.seccion-productos {
  background: linear-gradient(180deg, #5da81a 0%, #7cd21d 40%, #cff761 80%, #4a8c18 100%);
  padding: 30px 16px 40px;
  text-align: center;
}

.productos-titulo {
  font-family: 'Chewy', cursive;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto 24px;
}

.producto-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.producto-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f5f5f5;
}

.producto-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.producto-info {
  padding: 8px 10px 4px;
  text-align: left;
}

.producto-nombre {
  font-size: 0.75rem;
  font-weight: 700;
  color: #082642;
  text-transform: uppercase;
  margin: 0 0 2px;
  line-height: 1.2;
}

.producto-ref {
  font-size: 0.7rem;
  color: #555;
  margin: 0;
}

.producto-acciones {
  background: #082642;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  gap: 6px;
  margin-top: auto;
}

.btn-wsp {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.btn-comprar {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #ffc933;
  color: #082642;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ver-todos {
  display: inline-block;
  background: #ffc933;
  color: #082642;
  font-family: 'Chewy', cursive;
  font-size: 1.1rem;
  padding: 10px 40px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* PRODUCTOS DESKTOP */
@media (min-width: 769px) {
  .productos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .seccion-productos {
    padding: 50px 40px 60px;
  }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-hero {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--azul-marino);
  color: var(--blanco);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transicion);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-hero:hover {
  background: #0A142F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: var(--blanco);
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transicion);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: var(--espaciado-xl) 0;
}

.section-dark {
  background: var(--azul-marino);
  color: var(--blanco);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--gris-oscuro);
  font-size: 1.05rem;
}

.section-dark .section-title p {
  color: var(--gris-medio);
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--blanco);
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: all var(--transicion);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-md);
}

.product-card .badge-destacado {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dorado);
  color: var(--negro);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

.product-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gris-claro);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transicion);
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1rem;
}

.product-card-body .category {
  font-size: 0.75rem;
  color: var(--naranja);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card-body h3 {
  font-size: 1rem;
  margin: 0.3rem 0;
  color: var(--negro);
}

.product-card-body .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--azul-marino);
}

.product-card-body .price-alt {
  font-size: 0.8rem;
  color: var(--gris-oscuro);
}

.product-card-body .btn-add {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem;
  background: var(--naranja);
  color: var(--blanco);
  border: none;
  border-radius: var(--radio);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transicion);
}

.product-card-body .btn-add:hover {
  background: #E55D00;
}

/* =============================================
   CATEGORY FILTER
   ============================================= */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.category-filter button {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--gris-medio);
  border-radius: 50px;
  background: transparent;
  color: var(--negro);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transicion);
}

.category-filter button:hover,
.category-filter button.active {
  border-color: var(--naranja);
  background: var(--naranja);
  color: var(--blanco);
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail {
  padding-top: 90px;
}

.product-detail .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail-img {
  border-radius: var(--radio-lg);
  overflow: hidden;
  background: var(--gris-claro);
}

.product-detail-img img {
  width: 100%;
}

.product-detail-info h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.product-detail-info .category {
  color: var(--naranja);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-detail-info .price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--azul-marino);
}

.product-detail-info .price-secondary {
  font-size: 1.1rem;
  color: var(--gris-oscuro);
  margin-bottom: 1.5rem;
}

.product-detail-info .description {
  color: var(--gris-oscuro);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-detail-info .stock-info {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.product-detail-info .stock-info .in-stock {
  color: var(--verde);
  font-weight: 600;
}

.product-detail-info .stock-info .out-stock {
  color: #E53E3E;
  font-weight: 600;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gris-medio);
  border-radius: var(--radio);
  background: var(--blanco);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-selector input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: 2px solid var(--gris-medio);
  border-radius: var(--radio);
  font-size: 1rem;
  font-weight: 600;
}

.btn-add-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.5rem;
  background: var(--naranja);
  color: var(--blanco);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transicion);
}

.btn-add-detail:hover {
  background: #E55D00;
  transform: translateY(-2px);
}

/* =============================================
   CART DRAWER
   ============================================= */
.cart-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 200;
}

.cart-overlay.active {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--blanco);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.2);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gris-medio);
}

.cart-header h3 {
  font-size: 1.1rem;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gris-oscuro);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gris-claro);
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--gris-claro);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.cart-item-info .cart-item-price {
  font-weight: 600;
  color: var(--azul-marino);
  font-size: 0.9rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.cart-item-qty button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gris-medio);
  border-radius: 4px;
  background: var(--blanco);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-qty span {
  font-size: 0.85rem;
  font-weight: 600;
  width: 24px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #E53E3E;
  font-size: 0.75rem;
  cursor: pointer;
  margin-top: 0.3rem;
}

.cart-empty {
  text-align: center;
  color: var(--gris-oscuro);
  padding: 3rem 0;
}

.cart-footer {
  border-top: 2px solid var(--gris-medio);
  padding: 1rem 1.25rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cart-total .total-label {
  font-weight: 600;
}

.cart-total .total-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul-marino);
}

.cart-total-alt {
  text-align: right;
  font-size: 0.85rem;
  color: var(--gris-oscuro);
  margin-bottom: 1rem;
}

.btn-checkout {
  display: block;
  width: 100%;
  padding: 0.85rem;
  background: #25D366;
  color: var(--blanco);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transicion);
}

.btn-checkout:hover {
  background: #1DA851;
}

/* =============================================
   TEAM / ABOUT
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--blanco);
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--naranja);
}

/* ── POR QUE ELEGIRNOS ── */
.seccion-elegirnos {
  background: #FFF4EC;
  padding: 60px 24px;
}

.elegirnos-container {
  max-width: 1100px;
  margin: 0 auto;
}

.elegirnos-header {
  text-align: center;
  margin-bottom: 48px;
}

.elegirnos-titulo {
  font-family: 'Chewy', cursive;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #082642;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.elegirnos-subtitulo {
  font-size: 1rem;
  color: #666;
}

.elegirnos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.elegir-card {
  background: #ffffff;
  border-radius: 16px;
  border-top: 4px solid #FF6B00;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}

.elegir-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.elegir-icono {
  width: 64px;
  height: 64px;
  background: #FF6B00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
}

.elegir-titulo {
  font-family: 'Chewy', cursive;
  font-size: 1.4rem;
  color: #FF6B00;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.elegir-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .elegirnos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background: var(--naranja);
  color: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form .form-control {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gris-medio);
  border-radius: var(--radio);
}

.contact-form .form-control:focus {
  border-color: var(--naranja);
  outline: none;
}

/* ── TESTIMONIOS ── */
.seccion-testimonios {
  background: #082642;
  padding: 60px 24px;
}

.testimonios-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonios-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonios-titulo {
  font-family: 'Chewy', cursive;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #ffc933;
  margin-bottom: 8px;
}

.testimonios-subtitulo {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonio-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s, background 0.2s;
}

.testimonio-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.testimonio-estrellas {
  color: #ffc933;
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonio-texto {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonio-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonio-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B00, #ffc933);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chewy', cursive;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.testimonio-nombre {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
  margin: 0;
}

.testimonio-cargo {
  color: #ffc933;
  font-size: 0.8rem;
  margin: 0;
}

@media (min-width: 769px) {
  .testimonios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   FOOTER
   ============================================= */
/* ── FOOTER ── */
.footer {
  background: #0D1B3E;
  color: #ffffff;
  padding: 50px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 280px;
}

.footer-titulo {
  font-family: 'Chewy', cursive;
  font-size: 1.2rem;
  color: #FF6B00;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a,
.footer-links span {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #FF6B00;
}

.footer-icon {
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  color: #ffffff;
}

.social-icon:hover {
  transform: scale(1.15);
  opacity: 0.9;
}

.social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-facebook {
  background: #1877F2;
}

.social-tiktok {
  background: #010101;
}

.social-whatsapp {
  background: #25D366;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: #FF6B00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* WhatsApp Flotante */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 99;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: whatsapp-ring 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes whatsapp-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* FOOTER RESPONSIVE */
@media (min-width: 600px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-email {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 14px;
  transition: color 0.2s;
}

.footer-email:hover {
  color: #FF6B00;
}

.footer-bottom a:hover {
  color: #FF6B00;
}

@media (min-width: 960px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .product-detail .container {
    grid-template-columns: 1fr;
  }

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

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

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .product-card-img {
    height: 160px;
  }
}
