/* Sección de servicios – Liniette.net */
:root {
  --main-color: rgb(0, 123, 255);
  --main-color-rgb: 0, 123, 255;
  --color-two: rgb(129, 126, 126);
  --color-two-rgb: 129, 126, 126;
  --color-three: rgb(38, 31, 31);
  --color-three-rgb: 38, 31, 31;
  --color-four: rgb(245, 245, 245);
  --color-four-rgb: 245, 245, 245;
  --color-five: rgb(0, 123, 255);
  --color-five-rgb: 0, 123, 255;
  --color-six: rgb(130, 138, 141);
  --color-six-rgb: 130, 138, 141;
  --color-seven: rgb(102, 178, 255);
  --color-seven-rgb: 102, 178, 255;
  --color-eight: rgb(40, 167, 69);
  --color-eight-rgb: 40, 167, 69;
  --color-nine: rgb(80, 80, 80);
  --color-nine-rgb: 80, 80, 80;
  --color-ten: rgb(2, 2, 2);
  --color-fourtynine: rgb(248, 250, 252);
}

.m-0{
	margin: 0px !important;
}

.m-0-p p{
	margin: 0px !important;
}

.progress-wrap {
  box-shadow: inset 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.svc-grid {
  --gap: 22px;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}
.svc-head {
  max-width: 900px;
  margin: 0 auto 22px;
  text-align: center;
}
.svc-head h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0 0 6px;
}
.svc-head p {
  color: #666;
  margin: 0;
}
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  padding: 0;
  margin: 18px 0 0;
}
@media (max-width: 992px) {
  .svc-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .svc-cards {
    grid-template-columns: 1fr;
  }
}

.svc-card {
  list-style: none;
}
.svc-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.svc-link:hover {
  transform: translateY(-2px);
  border-color: #e2e8f0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.svc-media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 120px;
}
.svc-media img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}

.svc-title {
  font-size: 18px;
  line-height: 1.3;
  margin: 2px 0 0;
}
.svc-desc {
  margin: 0;
  color: #667085;
  font-size: 14px;
}
.svc-cta {
  margin-top: auto;
  display: inline-block;
  font-weight: 600;
}
.svc-cta::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  background: currentColor;
  clip-path: polygon(25% 0, 100% 50%, 25% 100%, 25% 60%, 0 60%, 0 40%, 25% 40%);
}

/* Tarjetas filosofía */
.mvp-card-1,
.mvp-card-2,
.mvp-card-3 {
  background: white !important;
  padding: 50px 40px !important;
  border-radius: 30px !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.5s ease !important;
}

.mvp-card-1:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2) !important;
}

.mvp-card-2:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 25px 70px rgba(79, 172, 254, 0.2) !important;
}

.mvp-card-3:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 25px 70px rgba(255, 107, 157, 0.2) !important;
}

/* Iconos */
.mvp-card-1 .elementor-icon,
.mvp-card-2 .elementor-icon,
.mvp-card-3 .elementor-icon {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0) !important;
  border-radius: 25px !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.5s ease !important;
}

.mvp-card-1:hover .elementor-icon {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  transform: rotate(5deg) scale(1.1) !important;
  color: white !important;
}

.mvp-card-2:hover .elementor-icon {
  background: linear-gradient(135deg, #4facfe, #00f2fe) !important;
  transform: rotate(-5deg) scale(1.1) !important;
  color: white !important;
}

.mvp-card-3:hover .elementor-icon {
  background: linear-gradient(135deg, #ff6b9d, #c44569) !important;
  transform: rotate(5deg) scale(1.1) !important;
  color: white !important;
}

/* Títulos al hover */
.mvp-card-1:hover .elementor-icon-box-title {
  color: #667eea !important;
}

.mvp-card-2:hover .elementor-icon-box-title {
  color: #4facfe !important;
}

.mvp-card-3:hover .elementor-icon-box-title {
  color: #ff6b9d !important;
}
/* ========================================================================== */
/* Custom card */
/* ========================================================================== */
.custom-card,
.border-card {
  background: white;
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.custom-card:hover,
.border-card:hover {
  transform: translateY(-15px) !important;
}

.border-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #da1c5d, #048cd0, #5da64b, #f7a32a);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.border-card:hover::before {
  transform: translateX(0);
}

/* Marquee */
.marquee {
  background: #007bff;
  color: #fff;
  padding: 15px 0;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}

.marquee:hover .marquee-content {
  animation-play-state: paused;
}

.marquee span {
  padding: 0 50px;
  font-weight: 600;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation: none;
  }
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-badge {
  background: var(--color-five, #00bcd4);
  color: white;
  padding: 4px 14px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  background: #f0f9fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
  background: var(--color-five, #00bcd4);
}

.icon-wrapper svg {
  width: 50px;
  height: 50px;
  stroke: var(--color-five, #00bcd4);
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper svg {
  stroke: white;
}

.card-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.card-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 350px;
  flex-grow: 1;
}

.card-button {
  background: var(--color-five, #00bcd4);
  color: white;
  border: none;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.card-button:hover {
  background: #00a5bb;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .card-title {
    font-size: 26px;
  }

  .card-description {
    font-size: 14px;
  }
}

/* Frase de transición */
.intro-phrase {
  text-align: center;
  padding: 38px 16px 28px; /* menos aire arriba/abajo */
  background: #fff; /* o #f9fcfd si quieres leve franja */
}
.intro-phrase .container {
  max-width: 1100px;
  margin: 0 auto;
}

.intro-text {
  line-height: 1.35;
  font-weight: 600;
  color: #0b1320;
  margin: 0 auto;
  max-width: 900px; /* igual al ancho del texto de tarjetas */
}
.intro-text span {
  color: var(--color-five);
  font-weight: 700;
}

/* Opcional: divisor suave arriba para pegarlo a los beneficios */
.intro-phrase.has-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Responsive */
@media (max-width: 768px) {
  .intro-text {
    font-size: 30px;
    line-height: 1.4;
  }
  .intro-phrase {
    padding: 28px 16px 18px;
  }
}

.main-slider-five .owl-dots .owl-dot:hover span,
.main-slider-five .owl-dots .owl-dot.active span {
  opacity: 1;
  color: var(--white-color);
  background: linear-gradient(
    235deg,
    var(--color-five) 29.41%,
    var(--color-six) 111.36%
  );
}

.footer-style-two .news-widget h5 {
  font-weight: 500;
  font-size: var(--font-22);
  margin-top: var(--margin-top-0);
  margin-bottom: var(--margin-bottom-20);
}

.footer-style-two .news-widget li a {
  position: relative;
  font-size: var(--font-16);
  color: var(--color-thirty);
  font-family: var(--font-family-Inter);
}

.footer-style-two .news-widget li a:hover {
  color: var(--main-color);
}

.footer-style-two .widgets-section {
  position: relative;
  padding: 280px 0px 15px;
}

/*.e-con {*/
/*  padding: 0px 0px;*/
/*}*/

/* .e-con > .e-con-inner {
  margin: 0px 0px;
} */

.shop-item .image {
    position: relative;
    overflow: hidden;
    background-color: transparent !important;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    font-size: var(--font-18) !important;
}

.shop-item h6 a {
    font-size: var(--font-16);
}





/* ===================================
   ESTILO MINIMALISTA PARA PRODUCTOS WOOCOMMERCE
   Inspirado en la imagen 2
   =================================== */

/* Contenedor general de productos */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Tarjeta individual del producto */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Área del ícono/imagen */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    margin: 0 auto 20px;
    padding: 5px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Título del producto */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 15px 0 10px !important;
    line-height: 1.4;
    min-height: auto;
}

/* Descripción corta */
.woocommerce ul.products li.product .woocommerce-loop-product__excerpt,
.woocommerce ul.products li.product .product-excerpt {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 40px;
}

/* Precio */
.woocommerce ul.products li.product .price {
    display: block;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #3b82f6 !important;
    margin: 20px 0 !important;
}

.woocommerce ul.products li.product .price del {
    opacity: 0.5;
    font-size: 20px;
    margin-right: 8px;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 700;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: #3b82f6 !important;
    color: white !important;
    border-color: #3b82f6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

/* Badge de "Agotado" o "En oferta" */
.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 1;
}

.woocommerce ul.products li.product .out-of-stock-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Botón de "Ver más" para productos variables */
.woocommerce ul.products li.product .product_type_variable {
    background: #3b82f6 !important;
    color: white !important;
    border-color: #3b82f6 !important;
}

/* Mensaje "Añadido al carrito" */
.woocommerce ul.products li.product .added_to_cart {
    display: block;
    margin-top: 10px;
    padding: 10px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .added_to_cart:hover {
    background: #a7f3d0;
}

/* Loader cuando se añade al carrito */
.woocommerce ul.products li.product .loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .woocommerce ul.products li.product {
        padding: 30px 20px 20px;
    }
}

@media (max-width: 480px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
}

.custom-grid h2.woocommerce-loop-product__title {
	min-height: 40px !important
}

.cta-section .inner-container:before{
	background: var(--color-seven) !important;
}

.cta-section .start-btn{
	border: 1px solid #3B82F6;
}