:root {
    --color-accent: #2C5530;
    --color-dark: #1a1a1a;
    --color-light: #f8f5f0;
    --color-white: #ffffff;
    --color-text: #333333;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 40px rgba(139, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fondo {
    background: #ff554f;
}

#home .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
}

#home video {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

#home .fondo-pegado {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#home .fondo {
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== CARRUSEL "LA SELECCIÓN MÁS EXCLUSIVA" ===== */

/* Contenedor interno donde pintas cada slide con JS */
#producto-exclusivo-container {
  -webkit-overflow-scrolling: touch;
}

/* Tarjeta de producto dentro del carrusel */
.producto-exclusivo-container {
  height: 400px;
  width: 370px !important;
  -webkit-overflow-scrolling: touch;
}

.producto-exclusivo-container:hover {
  animation: headShake;
  animation-duration: 1s;
}

/* Contenido centrado dentro de cada tarjeta */
.producto-exclusivo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Pequeño rectángulo decorativo bajo el título (si lo usas) */
.rectangulo-decorativo {
  background: var(--secondary-color);
  display: flex;
  position: relative;
  width: 50px;
  height: 3px;
  justify-content: center;
  align-items: center;
}

/* Indicadores del carrusel (los puntitos) */
.carousel-indicators [data-bs-target] {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50%;
  margin: 0 6px;
}

.carousel-indicators .active {
  background-color: var(--secondary-color) !important;
}

.carousel-indicators {
  position: relative !important;
}

/* Imagen dentro de cada slide */
.carousel-item img {
  max-height: 300px;
  object-fit: contain;
}

/* Flechas izquierda/derecha */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
}

/* Alineación de flechas en escritorio */
.carousel-control-prev {
  justify-content: end !important;
}

.carousel-control-next {
  justify-content: start !important;
}

/* Flecha derecha (color negro) */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") !important;
}

/* Flecha izquierda (color negro) */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 0-.708 0L4.646 8l6 6a.5.5 0 0 0 .708-.708L5.707 8l5.647-5.646a.5.5 0 0 0 0-.708'/%3e%3c/svg%3e") !important;
}

/* Ajustes responsive para el carrusel en móvil */
@media (max-width: 1068px) {
  #productos-exclusivos .container-fluid {
    overflow: hidden;
  }

  .carousel-control-prev,
  .carousel-control-next {
    justify-content: center !important;
  }
}

/* ===== AJUSTE INDICADORES CARRUSEL PACKS ===== */
#productos-exclusivos .carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  margin: 0 6px;
  background-color: #d0d0d0;     /* círculo gris claro por defecto */
  border: 1px solid #999999;     /* borde para que se vea siempre */
  opacity: 0.7;
}

#productos-exclusivos .carousel-indicators .active {
  background-color: #ff554f !important;   /* tu color de marca de la franja roja */
  border-color: #ff554f !important;
  opacity: 1;
}

#productos-exclusivos .carousel-indicators {
  position: relative !important;
  margin-top: 1.5rem;
}

#productos-exclusivos .producto-exclusivo-container {
  width: 320px !important;
  min-height: 430px;            /* altura mínima, pero deja crecer si hace falta */
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  box-shadow: var(--shadow-md);
  border-radius: 1.25rem;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Imagen dentro de la tarjeta de pack */
#productos-exclusivos .producto-exclusivo-container img {
  max-height: 220px;
  object-fit: contain;
}

/* Contenido interno (título + precio + botón) */
#productos-exclusivos .producto-exclusivo-container h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  min-height: 2.4rem;
}

#productos-exclusivos .producto-exclusivo-container .product-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

/* Botón de añadir al carrito en packs */
#productos-exclusivos .producto-exclusivo-container .btn-add-cart,
#productos-exclusivos .producto-exclusivo-container .btn.btn-dark {
  width: 100%;
  background: var(--green-color);
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  margin-top: auto;                 /* empuja el botón hacia abajo */
  transition: var(--transition);
}

#productos-exclusivos .producto-exclusivo-container .btn-add-cart:hover,
#productos-exclusivos .producto-exclusivo-container .btn.btn-dark:hover {
  background: #183127;
  transform: translateY(-1px);
}

#productos-exclusivos .producto-exclusivo-container .btn-add-cart.success {
  background: #28a745;
}

@media (max-width: 576px) {
  .carousel-indicators{
      display:none !important;
  }
}

/* ===== CATEGORÍAS DE IBÉRICOS ===== */

.categoria-card {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 260px;
  height: 260px;
}

.categoria-card:hover,
.categoria-card-principal:hover {
  animation: pulse;
  animation-duration: 1s
}

.categoria-card-principal {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 260px;
}

.categoria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.categoria-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 25, 0.7);
  color: #BD8327;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.categoria-overlay-principal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 51, 25, 0) 20%, rgba(0, 51, 25, 0.9) 60%) !important;
  color: #BD8327;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.categoria-card:hover .categoria-overlay,
.categoria-card-principal:hover .categoria-overlay-principal,
.categoria-card:hover .categoria-img {
  background: radial-gradient(circle, rgba(0, 51, 25, 0.7) 50%, rgba(0, 51, 25, 0) 100%);
  opacity: 1; /* Muestra el overlay al pasar el ratón */
}

.categoria-card:hover .categoria-img,
.categoria-card-principal:hover .categoria-img {
  opacity: 1; /* Muestra el overlay al pasar el ratón */
}

.categoria-card:hover .categoria-overlay .categoria-barra,
.categoria-card-principal:hover .categoria-overlay-principal .categoria-barra {
  opacity: 1; /* Muestra el overlay al pasar el ratón */
}

.categoria-titulo {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
}

.categoria-descripcion {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  text-align: center;
  color: #fff !important;
}

.categoria-barra{
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 15px;
  background: #ff554f;
  opacity: 0;
}

.categoria-boton {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 70px;
}

.categoria-boton:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* ===== RESPONSIVE CATEGORÍAS ===== */

@media (max-width: 1068px) {
  #categorias .col-6{
    display: flex;
    justify-content: center;
  }
  
  .categoria-titulo {
    font-size: 1.2rem;
  }
}

/* ===== TIENDA DE PRODUCTOS IBÉRICOS (SCROLL HORIZONTAL) ===== */

#tienda {
    padding: 3rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--color-white);
}

/* ===== TÍTULO Y SUBTÍTULO ===== */
#tienda h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

#tienda > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--color-gray);
    font-size: 1rem;
    font-weight: 400;
}

/* ===== BOTONES DE CATEGORÍA ===== */
#categoria-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.categoria-btn {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    color: var(--color-dark);
    padding: 0.65rem 1.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.categoria-btn:hover {
    border-color: var(--green-color);
    color: var(--green-color);
    background: rgba(32, 65, 54, 0.03);
}

.categoria-btn.active {
    background: var(--green-color);
    color: var(--color-white);
    border-color: var(--green-color);
    border-radius:0.375rem;
}

/* ===== CONTENEDOR DE PRODUCTOS ===== */
#productos-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0.5rem 2rem;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    align-items: stretch;
    min-height: 580px;
}

/* Scrollbar minimalista */
#productos-container::-webkit-scrollbar {
    height: 6px;
}

#productos-container::-webkit-scrollbar-track {
    background: var(--color-light-gray);
    border-radius: 3px;
}

#productos-container::-webkit-scrollbar-thumb {
    background: var(--green-color);
    border-radius: 3px;
}

#productos-container::-webkit-scrollbar-thumb:hover {
    background: #183127;
}

/* ===== TARJETAS DE PRODUCTO ===== */
.product-container {
    background: var(--color-white);
    border-radius: var(--border-radius);
    width: 280px;
    min-width: 280px;
    height: auto;
    text-align: left;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
    flex: 0 0 auto;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-container:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(32, 65, 54, 0.2);
}

/* ===== IMAGEN DEL PRODUCTO ===== */
.product-container a {
    display: block;
    overflow: hidden;
    position: relative;
}

.product-container img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

/* ===== DETALLES DEL PRODUCTO ===== */
.product-details {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.product-details h5 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-dark);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    min-height: 2.8rem;
}

/* ===== TAGS MINIMALISTAS ===== */
.tag-bestSeller {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--green-color);
    color: var(--color-white);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 10;
}

.tag-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 10;
}

.tag-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-red);
    color: var(--color-white);
    padding: 0.5rem 0.65rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
}

/* ===== PRECIOS MINIMALISTAS ===== */
.product-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.discount-price {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1;
}

.original-price {
    font-size: 1rem !important;
    text-decoration: line-through;
    color: var(--color-gray);
    margin: 0;
    font-weight: 400;
}

/* ===== BOTÓN DE COMPRAR ===== */
.product-container .btn-comprar {
    width: 100%;
    background: var(--green-color);
    color: var(--color-white);
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.product-container .btn-comprar:hover {
    background: #183127;
}

.product-container .btn-comprar:active {
    transform: scale(0.98);
}

/* Estado de éxito */
.product-container .btn-comprar.success {
    background: #28a745;
}

/* ===== LOADING STATE ===== */
.loading-products {
    width: 100%;
    text-align: center;
    padding: 3rem;
    color: var(--color-gray);
    font-size: 1rem;
}

/* ===== RESPONSIVE MINIMALISTA ===== */

@media (max-width: 1068px) {
    #productos-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    #tienda {
        padding: 2rem 0.75rem;
    }
    
    #tienda h1 {
        font-size: 2rem;
    }
    
    #tienda > p {
        font-size: 0.95rem;
    }
    
    #categoria-buttons {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .categoria-btn {
        padding: 0.55rem 1.25rem;
        font-size: 0.85rem;
    }
    
    #productos-container {
        padding: 1rem 0.5rem 1.5rem;
        gap: 1.25rem;
        min-height: 550px;
    }
    
    .product-container {
        width: 250px;
        min-width: 250px;
    }
    
    .product-container img {
        height: 250px;
    }
    
    .product-details {
        padding: 1rem;
    }
    
    .product-details h5 {
        font-size: 0.95rem;
    }
    
    .discount-price {
        font-size: 1.35rem !important;
    }
}

@media (max-width: 576px) {
    #tienda {
        padding: 1.5rem 0.5rem;
    }
    
    #tienda h1 {
        font-size: 1.75rem;
    }
    
    #productos-container {
        min-height: 520px;
        gap: 1rem;
    }
    
    .product-container {
        width: 230px;
        min-width: 230px;
    }
    
    .product-container img {
        height: 230px;
    }
    
    .product-details {
        padding: 0.9rem;
    }
    
    .product-details h5 {
        font-size: 0.9rem;
        min-height: 2.5rem;
    }
    
    .discount-price {
        font-size: 1.25rem !important;
    }
    
    .original-price {
        font-size: 0.9rem !important;
    }
    
    .categoria-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .product-container .btn-comprar {
        font-size: 0.9rem;
        padding: 0.75rem 0.9rem;
    }
}

/* ===== ANIMACIÓN DE ENTRADA SUTIL ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-container {
    animation: fadeInUp 0.4s ease-out backwards;
}

.product-container:nth-child(1) { animation-delay: 0.05s; }
.product-container:nth-child(2) { animation-delay: 0.1s; }
.product-container:nth-child(3) { animation-delay: 0.15s; }
.product-container:nth-child(4) { animation-delay: 0.2s; }
.product-container:nth-child(5) { animation-delay: 0.25s; }
.product-container:nth-child(n+6) { animation-delay: 0.3s; }

/* ===== ESTADOS DE FOCUS (ACCESIBILIDAD) ===== */
.categoria-btn:focus,
.product-container .btn-comprar:focus {
    outline: 2px solid var(--green-color);
    outline-offset: 2px;
}

.product-container a:focus {
    outline: 2px solid var(--green-color);
    outline-offset: 2px;
}

/* CUIDADO Y ALIMENTACIÓN */

#cuidado-alimentacion {
    background: var(--light-background);
    margin-bottom: 0;
}

#cuidado-alimentacion .container {
    max-width: 1440px;
}

#cuidado-alimentacion h1 {
    color:#204136;
    font-size: 4rem !important;
    font-weight: 100 !important;
    line-height: 3.6rem;
}

#cuidado-alimentacion p {
    font-size: 1rem !important;
    width: 85%;
    margin-bottom: 2rem;
}

#cuidado-alimentacion img {
    border-radius:20px;
    padding: 2rem;
    width: 100%;
    height: auto;
    background: var(--light-background);
}

/* Versión responsive para móviles/tablet */

@media (max-width: 1068px) {
    #cuidado-alimentacion .row {
        display: flex;
        justify-content: center !important;
        text-align: center !important;
    }

    #cuidado-alimentacion .text-info {
        text-align: center !important;
        align-items: center !important;
    }
}

@media (max-width: 800px) {
    #cuidado-alimentacion h1, #cuidado-alimentacion p{
        text-align:center;
        margin:auto;
    }
}

/* NewsLetter - Mantenido exactamente igual */
section#newsletter {
    background: #f8f9fa;
    padding: 2rem 0;
}

#newsletter h1 {
    font-size: 2rem !important;
}

#newsletter h6 {
    font-size: 0.85rem !important;
}

#newsletter .form-control {
    border-radius: 0 !important;
    padding: 0.55rem 1rem !important;
    font-size: 1rem !important;
    width: 400px;
}

#newsletter .btn {
    border-radius: 0 !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
}

.custom-checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #222;
}

.title-product{
    font-size:1.2em;
}

/* ===== RESPONSIVE AJUSTADO PARA TARJETAS MÁS GRANDES ===== */
@media (max-width: 1560px) {
    #home .home__title{
        font-size: 6rem !important;
        color: #fff !important;
    }

    #novedades .container-fluid {
        max-width: 1300px;
        padding: 0 15px;
    }
    
    #novedades .col-lg-4 {
        max-width: 420px;
    }
    
    #novedades .card img {
        height: 400px !important;
    }

    .scroll-container{
        padding-left: 0rem !important;
    }
}

@media (max-width: 1300px) {
    #novedades .container-fluid {
        max-width: 1100px;
    }
    
    #novedades .col-lg-4 {
        max-width: 380px;
    }
    
    #novedades .card img {
        height: 350px !important;
    }
    
    #novedades .row {
        gap: 20px;
    }
}

@media (max-width: 1060px) {
    #home .home__title{
        font-size: 2.5rem !important;
        color: #fff !important;
    }

    #novedades {
        padding: 60px 0;
    }
    
    #novedades h1 {
        font-size: 2.2rem;
    }
    
    #novedades .container-fluid {
        padding: 0 10px;
    }
    
    #novedades .col-lg-4 {
        max-width: 100%;
        flex: 0 0 calc(50% - 10px);
    }
    
    #novedades .card img {
        height: 300px !important;
    }
    
    #novedades .row {
        gap: 15px;
    }

    .scroll-container{
        padding-left: 0rem !important;
    }
}

@media (max-width: 768px) {
    #novedades {
        padding-top: 0;
        padding-bottom:0;
    }
    
    #novedades h1 {
        font-size: 2rem;
    }
    
    #novedades h6.text-secondary {
        width:90%;
        font-size: 0.9rem;
        margin-bottom: 40px;
        margin-inline:auto;
    }
    
    #novedades .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    #novedades .card img {
        height: 400px !important;
    }
    
    #novedades .card-body {
        padding: 20px !important;
    }
    
    #novedades .titulo-linea {
        margin-top: 40px;
    }
    
    #newsletter .form-control{
        width:90%;
    }
}

@media (max-width: 576px) {
    #novedades .container-fluid {
        padding: 0 10px;
    }
    
    #novedades .card img {
        height: 400px !important;
    }
    
    #novedades .titulo-linea a {
        padding: 12px 24px;
    }
}

/* Mejoras para accesibilidad - MISMAS */
#novedades .card:focus-within {
    outline: 2px solid #000;
    outline-offset: 2px;
}

#novedades .btn-fav:focus,
#novedades .btn-add-cart:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .btn-fav {
        width: 35px;
        height: 35px;
    }
    
    .btn-fav i {
        font-size: 14px;
    }
}

/* Responsive ajustado */
@media (max-width: 768px) {
    #novedades .titulo-linea {
        margin-top: 20px;
    }
    
    #novedades .titulo-linea h6 {
        font-size: 0.9rem;
    }
    
    #novedades .titulo-linea a {
        padding: 12px 0;
    }
}

@media (max-width: 576px) {
    #novedades .titulo-linea h6 {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 768px) {
    #servicios .card{
        width:90%;
        margin:auto;
    }
    
    .title-bolso-ideal{
        font-size:0.9em !important;
    }
    
    #TikTok{
        display:none;
    }
}

.btn-descubrir{
    background-color: black !important;
    width: 95% !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    border: 1px solid #000000 !important;
    margin-top: 0.5rem !important;
    display: inline-block;
    letter-spacing: 1px;
    cursor: pointer !important;
}

.img-servicio{
    width:100px;
    margin:auto;
}

.home__title{
    font-size:5rem;
}

.img-bolsos{
    height:300px !important;
}

#servicios {
    background: #fff;
    width:75%;
    margin:auto;
}

#servicios .container-fluid {
    max-width: 1500px;
    margin: 0 auto;
}

#servicios .row {
    justify-content: center; /* Centrar las columnas */
}

.servicio-item {
    padding: 20px 10px; /* Reducir padding lateral */
    text-align: center;
}

.servicio-icon-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    max-width: 240px;
}

.servicio-icon-minimal svg {
    color: #333;
    width: 64px;
    height: 64px;
}

.servicio-title-minimal {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.servicio-description-minimal {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 16px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.servicio-link {
    font-size: 0.85rem;
    color: #999;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.servicio-link:hover {
    color: #666;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .servicio-icon-minimal {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .servicio-icon-minimal svg {
        width: 56px;
        height: 56px;
    }
}