@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 91px 0 0 0;
}
.mi-div {
  padding: 40px 0; /* 40px arriba y abajo, 0 a los lados */
}

/* Contenedor central */
.container {
  max-width: 1200px;  
  margin: 0 auto;       /* centrado horizontal */
  padding: 0;           /* elimina padding interno si lo tuviera */
  background: #fff;   
}

/* Lotes Cargados */
.lotes-carousel {
  padding: 50px 40px;
  background: #f8f9fa;
  text-align: center;
}

.carousel-wrapper {
  position: relative;
  
}

.carousel-track {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease;
}

.lote-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  min-width: 250px;
  flex: 0 0 calc(var(--card-width) - 20px);
  max-width: calc(var(--card-width) - 20px);
  /*cursor: pointer;*/
  transition: transform 0.3s ease;
  
}

.lote-card:hover {
  transform: scale(1.07);
}

.lote-card:hover .lote-title {
  color: #00adef; /* azul */
  border-bottom: 2px solid #00adef; /* línea azul debajo */
  cursor: pointer;
}

.lote-img {
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.lote-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-in-out;
}

.lote-card:hover .lote-img img {
  transform: scale(1.1);
}

.lote-fecha {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.lote-title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #333;
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
}

.lote-title i {
 width: 1.75rem;
 height: 1.75rem; 
}

.lote-card {
  position: relative; /* Para que el logo se posicione relativo a la card */
}

.lote-card .lote-logo {
  position: absolute;
  top: 8px; /* distancia desde arriba */
  left: 8px; /* distancia desde la izquierda */
  width: 100px; /* tamaño del logo */
  height: 100px;
  border-radius: 50%; /* opcional: si quieres circular */
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* sombra para que resalte */
  z-index: 2;
}

.lote-card .lote-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/*Contador*/
.contador {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 5px;
}

.tiempo {
  text-align: center;
  background-color: #979696;
  color: white;
  padding: 2px 2px;
  border-radius: 5px;
  min-width: 40px;
}

.numero {
  font-size: 1.1rem;
  font-weight: bold;
}

.etiqueta {
  font-size: 0.8rem;
  color: #ddd;
}



/* ========================
Sección Consignatarios 
===========================*/

.consignatarios {
  background-color: #f7f7f7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
}

.card-consignatario {
  background: rgba(255, 255, 255, 0.15); /* efecto glass */
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  position: relative;
}

/* efecto en hover */
.card-consignatario:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* header con logo circular y título */
.card-consignatario .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-consignatario .logo-consignataria {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-consignatario .nombre-consignatario {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin: 0;
}

.card-header {
  text-align: center;
  padding: 15px;
}

.logo-consignataria {
  max-height: 60px;
  margin-bottom: 10px;
  object-fit: contain;
}

.nombre-consignatario {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 300 !important;
  font-size: 1.2rem;
  color: #222;
}

.card-body {
  padding: 15px;
}

.card-body p {
  margin: 6px 0;
  font-size: 0.95rem;
}

.card-body a {
  color: #3a3838;
  text-decoration: none;
  font-weight: 600;
}


.card-body a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
}

/* ===========================
   Sección Estadísticas
=========================== */
.estadisticas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin: 0;
  padding: 40px 20px;
  background-color: #bef7ff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* indicador preofertas*/
.indicador-preoferta {
  display: inline-flex;
  align-items: center;
  gap: 6px;                 /* espacio entre icono y texto */
  margin-top: 10px;
  padding: 6px 12px;
  background-color: #ff7b00; /* naranja */
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 1px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.icono-preoferta {
  width: 18px;
  height: 18px;
}

/* Tarjetas */
.estadistica {
  content-visibility: auto;
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

/* Animación secuencial */
.estadistica:nth-child(1) { animation-delay: 1.7s; }
.estadistica:nth-child(2) { animation-delay: 1.9s; }
.estadistica:nth-child(3) { animation-delay: 2.1s; }
.estadistica:nth-child(4) { animation-delay: 2.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remates Realizados*/

.bg-gris {
  background-color: #f7f7f7;
}

.pt-4 {
  padding-top: 2rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

.card-destacado {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.card-body {
  padding: 15px;
  text-align: center;
}

.logo-consignataria {
  max-height: 150px;
  margin: 0px 0 0px;
  object-fit: contain;
}

.card-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn {
  padding: 8px 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: bold;
  color: #fff;
  transition: background 0.3s ease;
  border: none;        /* elimina el borde */
  outline: none;       /* elimina el borde de foco */
}


.btn-primary {
  background-color: #89c745;
}

.btn-primary:hover {
  background-color: #75b134;
}

.btn-sec {
  background-color: #4a4949;
}

.btn-sec:hover {
  background-color: #adaaaa;
}

/*Clientes*/

.carousel-clientes {
  width: 100%;
  overflow: hidden;
  background: #f1f1f1; 
  padding: 30px 0;
}

.carousel-clientes .cliente img {
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.carousel-clientes .cliente img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Pista que se desplaza */
.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite;
}

/* Cada cliente */
.carousel-clientes .cliente {
  flex: 0 0 auto;
  margin: 0 40px; 
}

.carousel-clientes img {
  height: 100px; /* ajustá el tamaño del logo */
  width: auto;  
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* Efecto hover */
.carousel-clientes img:hover {
  
  opacity: 1;
  transform: scale(1.1);
}

/* Animación infinita */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*Footers*/

.site-footer {
  background-color: #151515 !important; /* negro */
  color: #fff;
  padding: 40px 20px;
  display: block;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #5dd1fd;
}

.footer-info p {
  margin: 5px 0;
  font-size: 15px;
  line-height: 1.6;
}

.footer-redes i {
  width: 28px;
  height: 28px;
  color: #249eed;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-redes a {
  display: inline-block;
  margin: 0;
  text-decoration: none;
}

.footer-redes a:hover i {
  transform: scale(1.1);
}

.footer-redes a:active i {
  transform: scale(1.4);  
  color: #0984d6;
}

/* Iconos */
.estadistica .icono {
  margin-bottom: 20px;
}

.estadistica .icono i {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.3s ease;
  color: #00adef;
}

/* Hover en iconos */
.estadistica:hover .icono i {
  transform: scale(1.2) rotate(5deg);
  color: #555;
}

/* Títulos */
.estadistica h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300; /* Roboto Light */
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

/* Números */
.estadistica .numero {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 34px;
  color: #00adef;
  transition: color 0.3s ease;
}

/* Hover en números */
.estadistica:hover .numero {
  color: #0083b0;
}

/* Animacion Slide*/
/* Animación de fade-in y desplazamiento */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación para el logo (zoom) */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animación para el botón (pulso infinito) */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* Aplicar animaciones a cada elemento */
.hero-slide .remate-fecha h1 {
  animation: fadeInUp 1s ease forwards;
}

.hero-slide .remate-logo img {
  animation: zoomIn 1s ease forwards;
  animation-delay: 2s;
}

.hero-slide .remate-detalles {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 2.5s;
}

.hero-slide .btn-demo {
  animation: fadeInUp 1s ease forwards, pulse 2s infinite;
  animation-delay: 3s;
  display: inline-block;
}

/* Botones carousel*/
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5); /* semi-transparente */
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
  z-index: 5;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 10px; /* separación del borde izquierdo */
}

.carousel-btn.next {
  right: 10px; /* separación del borde derecho */
}

/* Header fijo y centrado */
.site-header {
  width: 100%;
  background: #fefffe;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center; /* centra el contenedor del header */
}

/* Contenedor del header centrado y con ancho máximo */
.header-container {
  max-width: 1200px;  
  width: 100%;
  display: flex;
  justify-content: space-between; /* logo a la izquierda, nav a la derecha */
  align-items: center;
  padding: 0.1rem 0.5rem;
}
/* iconos */

.slide-subtitle-icon {
  width: 30px;   /* tamaño del SVG dentro del círculo */
  height: 30px;
  object-fit: contain;
}

/* Catálogo en Columnas */
.remates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* siempre 2 columnas */
  gap: 10px; /* espacio entre columnas y filas */
}

/* Titulo y Copete*/
.faq-section {
  padding: 20px 2px;
  text-align: center;
 
}

.faq-title-container {
  display: inline-block; /* para que la línea quede del ancho del texto */
  position: relative;
}

.faq-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #333;
  margin: 0 0 10px 0;
  position: relative;
}

.faq-title::after {
  content: "";
  display: block;
  width: 80px;            /* ancho de la línea verde */
  height: 4px;            /* grosor de la línea */
  background-color: #00adef; /* color verde */
  margin: 10px auto 0 auto; /* centrada debajo del título */
  border-radius: 2px;      /* bordes redondeados opcionales */
}

.faq-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: #555;
  margin: 0;
}

/* Logo centrado verticalmente */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  height: 80px;
  width: auto;
}

/* BOTONES */

.btn-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #fff; /* color inicial del texto */
  font-size: 1.1rem;
  text-decoration: none;
  padding-bottom: 5px; /* espacio para la línea */
  transition: color 0.3s ease;
}

.btn-menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px; /* grosor de la línea */
  background-color: #00c853; /* verde animación */
  transition: width 0.4s ease;
}

.btn-menu:hover {
  color: #00c853; /* el texto se pinta de verde */
}

.btn-menu:hover::after {
  width: 100%; /* línea se expande de izquierda a derecha */
}

/*Boton Whatsapp*/

.btn-whatsapp-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* espacio entre icono y texto */
  background: #25d366; /* verde de WhatsApp */
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp-demo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: rgb(78, 73, 73);
  font-weight: 400;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  transition: background 0.2s;
}

.site-nav a:hover {
  background: rgba(252, 251, 251, 0.2);
  border-radius: 4px;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;                /* espacio entre texto y flecha */
  background-color: #00adef;   /* color llamativo naranja */
  color: white;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-demo:hover {
  background-color: #0399d4;   /* cambio de color en hover */
  transform: translateY(-3px); /* efecto elevación */
}

.btn-demo .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-demo:hover .arrow {
  transform: translateX(5px);   /* flecha se mueve hacia la derecha al hover */
}

/* Contenedor del contenido centrado */
.container {
  max-width: 1200px;
  margin: 50px auto 0 auto; /* margen top para compensar header fijo */
  padding: 0rem;
  background: #fff;
}

/* Responsive nav */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    background: #004d00;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 1rem;
  }
  .site-nav.nav-open {
    display: flex;
  }
}

/* seccion como funciona */
.como-funciona {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f7f7f7, #ffffff);
  overflow: hidden;
}

.como-funciona h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.como-funciona .subtitulo {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #666;
}

.timeline {
  content-visibility: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Línea central */
.timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 4px;
  background: #28a745;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawline 1.5s ease forwards;
}

@keyframes drawline {
  to { transform: scaleX(1); }
}

/* Pasos */
.paso {
  width: 23%;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: showstep 0.8s ease forwards;
  font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.paso:nth-child(1) { animation-delay: 2.5s; }
.paso:nth-child(2) { animation-delay: 3.5s; }
.paso:nth-child(3) { animation-delay: 4.5s; }
.paso:nth-child(4) { animation-delay: 5.5s; }

@keyframes showstep {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* animacion */
/* Línea central que se dibuja */
.timeline::before {
  content: "";
  position: absolute;
  top: 65px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: #ccc;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: drawline 2s ease forwards;
}

@keyframes drawline {
  to { transform: scaleX(1); }
}

/* Animación de aparición de los pasos */
.paso {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación de los círculos */
.paso-circle {
  transform: scale(0);
  animation: popIn 0.6s ease forwards;
}

.paso-circle i {
  color: #fff;
  width: 3rem;
  height: 3rem;
}

.paso:nth-child(1) .paso-circle { animation-delay: 2.8s; }
.paso:nth-child(2) .paso-circle { animation-delay: 3.8s; }
.paso:nth-child(3) .paso-circle { animation-delay: 4.8s; }
.paso:nth-child(4) .paso-circle { animation-delay: 5.8s; }

@keyframes popIn {
  to { transform: scale(1); }
}

/* Números con fade-in */
.paso-numero {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.paso:nth-child(1) .paso-numero { animation-delay: 2.7s; }
.paso:nth-child(2) .paso-numero { animation-delay: 3.7s; }
.paso:nth-child(3) .paso-numero { animation-delay: 4.7s; }
.paso:nth-child(4) .paso-numero { animation-delay: 5.7s; }

@keyframes fadeIn {
  to { opacity: 1; }
}
/* Sistema */
.features {
  background: #ffffff; /* color de fondo */
  padding: 60px 20px;
  text-align: center;
}

#sistema .faq-title {
  color: #ffffff;
  text-align: center; /* opcional si querés que quede centrado */
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.feature-card {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: #00b435;
  transition: all 0.4s ease;
  position: relative;
}

.feature-icon i {
  width: 40px;
  height: 40px;
  transition: transform 0.4s ease;
}

/* ✨ Efecto glow y escala */
.feature-card:hover .feature-icon {
  background: #858585; 
  box-shadow: 0 0 20px rgba(209, 213, 214, 0.4);
}

.feature-card:hover .feature-icon i {
  transform: scale(1.2) rotate(-5deg);
}

.feature-card h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500; /* Roboto Light */
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
  text-align: center;
}

.feature-card p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400; /* Roboto Light */
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
.features-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500; /* semibold */
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

#sistema {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sistema .faq-title {
  color: #ffffff;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

#sistema::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 500px;
  background-color: rgba(0,0,0,0.2); /* capa semitransparente para que las cards se vean */
  z-index: 0;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  justify-items: center;
}

.feature-card {
  background-color: rgba(255,255,255,0.9); /* ligero fondo sobre el slide */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

/* Círculos */
.paso-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: #00c853;
  border: 4px solid #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paso-circle img {
  width: 50px;
  height: 50px;
  z-index: 2;
}

.paso-numero {
  position: absolute;
  top: -18px;
  right: -18px;
  background: #28a745;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Títulos */
.paso h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500; /* Roboto Light */
  font-size: 20px;
  margin: 10px 0;
  font-size: 1.3rem;
  color: #333;
}

.paso p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Subastas realizadas */
.realizadas {
  display: block;
  padding: 1rem 0;
}

.realizadas > div {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .realizadas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .realizadas > div {
    margin-bottom: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    animation: drawlineVertical 1.5s ease forwards;
  }

  @keyframes drawlineVertical {
    to { transform: scaleY(1); }
  }

  .paso {
    width: 100%;
    margin-bottom: 50px;
  }
}

/* Hero slider */
.hero {
  width: 100%;
  height: 500px;        /* altura de toda la pantalla */
  overflow: hidden;
  position: relative;
  margin-top: 0;        /* pegado al header */
}

.hero-slide {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;           /* slide visible */
}

.slide-content {
  position: relative;
  z-index: 2; /* encima del overlay */
  text-align: center;
  color: white;
  padding: 2rem 3rem;
  max-width: 900px;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif; /* tipografía Roboto */
}

/* Contenedor del slide02 */
.hero-slide.remate-info-slide {
  position: relative;
  width: 100%;
  height: 500px;              /* ocupa toda la pantalla */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Overlay negro semitransparente */
.hero-slide.remate-info-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Contenido de información del remate */
.hero-slide.remate-info-slide .slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 2rem 3rem;
  border-radius: 10px;
  max-width: 600px;
}

/* Fecha y horario */
.hero-slide.remate-info-slide .remate-fecha h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Logo de la consignataria */
.hero-slide.remate-info-slide .remate-logo img {
  height: 150px;
  width: auto;
  margin-bottom: 0.5rem;
}

/* Detalles del remate */
.hero-slide.remate-info-slide .remate-detalles p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin: 0.2rem 0;
}

/* Botón Ver Catálogo */
.hero-slide.remate-info-slide .btn-proximo-remate {
  margin-top: 1rem;
  background-color: #00c853; /* verde destacado */
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slide.remate-info-slide .btn-proximo-remate:hover {
  background-color: #33e07f;
  transform: translateY(-3px);
}

/* Título */
.slide-content h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;   /* Light */
  font-size: 3rem;    /* tamaño inicial */
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* Subtítulo */
.slide-subtitle {
  font-size: 1.5rem;     /* tamaño inicial */
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.slide-content .slide-subtitle2 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  font-weight: 400;
  font-family: 'Roboto', sans-serif; /* si querés que herede Roboto */
}

/* Secciones */
section {
  padding: 2rem;
}
.evento-info {
  background: #f2f2f2;
}
.btn-whatsapp {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #25D366;
  color: white;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1rem;
  background: #ddd;
}

/* Botón subir */
.btn-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  display: none;
  width: 50px;               /* ancho fijo */
  height: 50px;              /* alto fijo */
  background: #0984d6;       /* color de fondo */
  color: #fff;               /* color de la flecha */
  border: none;
  border-radius: 50%;        /* redondo */
  cursor: pointer;
  display: flex;             /* para centrar contenido */
  align-items: center;
  justify-content: center;
  font-size: 24px;           /* tamaño de la flecha */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* sombra opcional */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover: efecto interactivo */
.btn-top:hover {
  background-color: #055aa3;
  transform: scale(1.1);
}

.btn-top.visible {
  display: flex;  /* se muestra centrado */
}

/* Animaciones fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contenedor de la ficha */
.remate-card {
  display: flex;
  gap: 0.1rem;
  background-color: #ececec;
  border-radius: 10px;
  padding: 1.2rem;
  margin: 1rem auto;
  max-width: 1000px;
  font-family: 'Roboto', sans-serif;
}

/* Columna izquierda: imagen + botón */
.remate-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* alineado a la izquierda */
  gap: 1rem;
}

.remate-left .remate-foto img {
  aspect-ratio: 0.8;
  background-color: #f3f2f2;
  width: 95%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
}

.remate-left .remate-foto img:hover {
  transform: scale(1.05); /* efecto zoom */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* sombra al hover */
  border: 2px solid #00c853; /* borde celeste */
}

.remate-left .btn-catalogo {
  width: 200px;
  text-align: center;
  display: inline-block;
}

/* Columna central: logo + info alineada a la izquierda */
.remate-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* alineado a la izquierda */
  text-align: left;        /* texto a la izquierda */
  gap: 1rem;
}

.remate-center .remate-consignataria img {
  height: 100px;
  width: auto;
  text-align: left;
  margin: 0;      
  max-width: 180px; 
  height: auto;
}

.remate-center .remate-info h2 {
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.remate-center .remate-info p {
  font-weight: 400;
  font-size: 1rem;
  margin: 0.2rem 0;
}

/* Columna derecha: lotes */
.remate-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* alineado a la izquierda */
  text-align: left;
  gap: 0.5rem;
}

.remate-right h3 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.remate-right ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}

.remate-right li {
  font-weight: 400;
  margin-bottom: 0.3rem;
}

/* Botón estilo */
.btn-catalogo {
  background-color: #00b435;
  color: rgb(230, 227, 227);
  font-weight: 500;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-proceso {
  background-color: #dddcdc;
  color: rgb(92, 91, 91);
  font-weight: 500;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-catalogo:hover {
  background-color: #33e07f;
  transform: translateY(-2px);
}

/*Filtro*/
.filtros-lotes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  justify-content: center;
  align-items: center;
}

.filtros-lotes select,
.filtros-lotes input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.filtros-lotes label {
  margin-right: 5px;
  font-weight: bold;
}

#btn-filtrar {
  padding: 8px 15px;
  background: #0984d6;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#btn-filtrar:hover {
  background: #056bb0;
}

/* Botón Buscar filtro de lotes */
#btn-buscar {
  background-color: #d3d3d3;   /* Gris claro */
  border: 1px solid #999999;    /* Borde gris más oscuro */
  color: #000000;               /* Texto negro */
  font-family: 'Roboto', sans-serif;
  font-weight: 300;             /* Roboto Light */
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#btn-buscar:hover {
  background-color: #c0c0c0;   /* Gris un poco más oscuro al pasar mouse */
  border-color: #666666;        /* Borde más marcado */
}

/* Fade-in */
.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Estilos para el Overlay (Fondo oscuro) */
.modal-overlay {
  /* Posicionamiento y tamaño para cubrir toda la ventana */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Fondo semi-transparente y que esté por encima de todo */
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;

  /* Centrado del contenido del modal */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilos para el Contenedor del Modal */
.modal-container {
  background: white;
  border-radius: 0.5rem;
  width: 98%;
  max-width: 74rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  /* Puedes añadir padding o estilos para el contenido si lo deseas */
  overflow: hidden;
  /* Asegura que todo quede dentro de los bordes */
}

/* Estilos para las secciones internas */
.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  color: var(--color-bg);
  padding: 10px 20px;
  border-top: 1px solid #eee;
  text-align: right;
}

/* Botón de cierre */
.modal-close-btn {
  background: none;
  border: none;
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  color: #aaa;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
}

.modal-close-btn:hover {
  color: #333;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table thead tr {
  border-bottom: 1px solid black;
}

.table tbody tr {
  border-bottom: 1px solid #ccc;
}

.table td {
  padding: 0.25rem 2rem;
}



/* Responsive para móvil */
@media (max-width: 768px) {
  .remate-card {
    flex-direction: column;
    align-items: center;
  }

  .remate-left, .remate-center, .remate-right {
    width: 100%;
    text-align: left; /* mantiene alineado a la izquierda */
    align-items: flex-start;
  }

  .remate-left .remate-foto img {
    width: 60%;
    height: auto;
  }

  .remate-left .btn-catalogo {
    width: 100%;
  }
}

/* Efecto fade-in */
.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Responsive para móvil */
@media (max-width: 768px) {
  .remate-ficha {
    flex-direction: column;
    align-items: center;
  }

  .remate-foto img {
    width: 50%;
    height: auto;
  }

  .remate-detalle {
    align-items: center;
    text-align: center;
  }
}

/* iconos SVG */
.iconos {
  height: 100%;
  width: 100%;
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.icono--lupa-lote {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M200-800v241-1 400-640 200-200Zm0 720q-33 0-56.5-23.5T120-160v-640q0-33 23.5-56.5T200-880h320l240 240v100q-19-8-39-12.5t-41-6.5v-41H480v-200H200v640h241q16 24 36 44.5T521-80H200Zm460-120q42 0 71-29t29-71q0-42-29-71t-71-29q-42 0-71 29t-29 71q0 42 29 71t71 29ZM864-40 756-148q-21 14-45.5 21t-50.5 7q-75 0-127.5-52.5T480-300q0-75 52.5-127.5T660-480q75 0 127.5 52.5T840-300q0 26-7 50.5T812-204L920-96l-56 56Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--laptop {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M0-160v-80h80v-600h800v600h80v80H0Zm400-80h160v-40H400v40ZM160-360h640v-400H160v400Zm320-200Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--martillo {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M160-120v-80h480v80H160Zm226-194L160-540l84-86 228 226-86 86Zm254-254L414-796l86-84 226 226-86 86Zm184 408L302-682l56-56 522 522-56 56Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--camara {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h480q33 0 56.5 23.5T720-720v180l160-160v440L720-420v180q0 33-23.5 56.5T640-160H160Zm0-80h480v-480H160v480Zm0 0v-480 480Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--pc {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M480-540ZM80-160v-80h400v80H80Zm120-120q-33 0-56.5-23.5T120-360v-360q0-33 23.5-56.5T200-800h560q33 0 56.5 23.5T840-720H200v360h280v80H200Zm600 40v-320H640v320h160Zm-180 80q-25 0-42.5-17.5T560-220v-360q0-25 17.5-42.5T620-640h200q25 0 42.5 17.5T880-580v360q0 25-17.5 42.5T820-160H620Zm100-300q13 0 21.5-9t8.5-21q0-13-8.5-21.5T720-520q-12 0-21 8.5t-9 21.5q0 12 9 21t21 9Zm0 60Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--database {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M480-120q-151 0-255.5-46.5T120-280v-400q0-66 105.5-113T480-840q149 0 254.5 47T840-680v400q0 67-104.5 113.5T480-120Zm0-479q89 0 179-25.5T760-679q-11-29-100.5-55T480-760q-91 0-178.5 25.5T200-679q14 30 101.5 55T480-599Zm0 199q42 0 81-4t74.5-11.5q35.5-7.5 67-18.5t57.5-25v-120q-26 14-57.5 25t-67 18.5Q600-528 561-524t-81 4q-42 0-82-4t-75.5-11.5Q287-543 256-554t-56-25v120q25 14 56 25t66.5 18.5Q358-408 398-404t82 4Zm0 200q46 0 93.5-7t87.5-18.5q40-11.5 67-26t32-29.5v-98q-26 14-57.5 25t-67 18.5Q600-328 561-324t-81 4q-42 0-82-4t-75.5-11.5Q287-343 256-354t-56-25v99q5 15 31.5 29t66.5 25.5q40 11.5 88 18.5t94 7Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--difusion {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='currentColor'%3E%3Cpath d='m12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.018-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='currentColor' d='M12 4c.855 0 1.732.022 2.582.058l1.004.048l.961.057l.9.061l.822.064a3.8 3.8 0 0 1 3.494 3.423l.04.425l.075.91c.07.943.122 1.971.122 2.954s-.052 2.011-.122 2.954l-.075.91l-.04.425a3.8 3.8 0 0 1-3.495 3.423l-.82.063l-.9.062l-.962.057l-1.004.048A62 62 0 0 1 12 20a62 62 0 0 1-2.582-.058l-1.004-.048l-.961-.057l-.9-.062l-.822-.063a3.8 3.8 0 0 1-3.494-3.423l-.04-.425l-.075-.91A41 41 0 0 1 2 12c0-.983.052-2.011.122-2.954l.075-.91l.04-.425A3.8 3.8 0 0 1 5.73 4.288l.821-.064l.9-.061l.962-.057l1.004-.048A62 62 0 0 1 12 4m0 2c-.825 0-1.674.022-2.5.056l-.978.047l-.939.055l-.882.06l-.808.063a1.8 1.8 0 0 0-1.666 1.623C4.11 9.113 4 10.618 4 12s.11 2.887.227 4.096c.085.872.777 1.55 1.666 1.623l.808.062l.882.06l.939.056l.978.047c.826.034 1.675.056 2.5.056s1.674-.022 2.5-.056l.978-.047l.939-.055l.882-.06l.808-.063a1.8 1.8 0 0 0 1.666-1.623C19.89 14.887 20 13.382 20 12s-.11-2.887-.227-4.096a1.8 1.8 0 0 0-1.666-1.623l-.808-.062l-.882-.06l-.939-.056l-.978-.047A61 61 0 0 0 12 6m-2 3.575a.6.6 0 0 1 .819-.559l.081.04l4.2 2.424a.6.6 0 0 1 .085.98l-.085.06l-4.2 2.425a.6.6 0 0 1-.894-.43l-.006-.09z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--soporte {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M440-120v-80h320v-284q0-117-81.5-198.5T480-764q-117 0-198.5 81.5T200-484v244h-40q-33 0-56.5-23.5T80-320v-80q0-21 10.5-39.5T120-469l3-53q8-68 39.5-126t79-101q47.5-43 109-67T480-840q68 0 129 24t109 66.5Q766-707 797-649t40 126l3 52q19 9 29.5 27t10.5 38v92q0 20-10.5 38T840-249v49q0 33-23.5 56.5T760-120H440Zm-80-280q-17 0-28.5-11.5T320-440q0-17 11.5-28.5T360-480q17 0 28.5 11.5T400-440q0 17-11.5 28.5T360-400Zm240 0q-17 0-28.5-11.5T560-440q0-17 11.5-28.5T600-480q17 0 28.5 11.5T640-440q0 17-11.5 28.5T600-400Zm-359-62q-7-106 64-182t177-76q89 0 156.5 56.5T720-519q-91-1-167.5-49T435-698q-16 80-67.5 142.5T241-462Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--publicidad {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M160-120q-33 0-56.5-23.5T80-200v-480h80v480h600v80H160Zm160-160q-33 0-56.5-23.5T240-360v-480h680v480q0 33-23.5 56.5T840-280H320Zm0-80h520v-400H320v400Zm80-120h160v-200H400v200Zm200 0h160v-80H600v80Zm0-120h160v-80H600v80ZM320-360v-400 400Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--cow {
  --svg: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px'%0AviewBox='0 0 24 24' enable-background='new 0 0 24 24' xml:space='preserve'%3E%3Cpath d='M10.5,18c0.276,0,0.5,0.225,0.5,0.5S10.776,19,10.5,19S10,18.775,10,18.5S10.224,18,10.5,18 M13.5,18 c0.275,0,0.5,0.225,0.5,0.5S13.775,19,13.5,19S13,18.775,13,18.5S13.225,18,13.5,18 M10,11c0.552,0,1,0.448,1,1c0,0.553-0.448,1-1,1 s-1-0.447-1-1C9,11.448,9.448,11,10,11 M14,11c0.553,0,1,0.448,1,1c0,0.553-0.447,1-1,1s-1-0.447-1-1C13,11.448,13.447,11,14,11 M18,18c0,2.21-2.689,4-6,4c-3.31,0-6-1.79-6-4c0-0.9,0.45-1.73,1.2-2.4C6.45,14.6,6,13.35,6,12l0.12-1.22 c-0.54,0.15-1.19,0.15-1.72,0C3.38,10.5,1.84,9.35,2.07,8.55C2.3,7.75,4.21,7.6,5.23,7.9c0.59,0.17,1.22,0.6,1.59,1.06l0.57-0.81 C6.79,7.05,7,4,10,3L9.91,3.14l0,0c-0.28,0.44-1,1.83-0.24,3.33C10.39,6.17,11.17,6,12,6s1.609,0.17,2.33,0.47 c0.76-1.5,0.04-2.89-0.24-3.33L14,3c3,1,3.21,4.05,2.609,5.15l0.57,0.81c0.369-0.46,1-0.89,1.59-1.06 c1.021-0.3,2.931-0.15,3.16,0.65c0.229,0.8-1.311,1.95-2.33,2.23c-0.529,0.15-1.181,0.15-1.721,0L18,12c0,1.35-0.45,2.6-1.2,3.6 C17.55,16.27,18,17.1,18,18 M12,16c-2.21,0-4,0.9-4,2s1.79,2,4,2s4-0.9,4-2S14.21,16,12,16 M12,14c1.12,0,2.17,0.21,3.07,0.561 C15.65,13.87,16,13,16,12c0-2.209-1.791-4-4-4s-4,1.791-4,4c0,1,0.35,1.87,0.93,2.561C9.83,14.21,10.88,14,12,14 M14.09,3.14 L14.09,3.14z'/%3E%3C/svg%3E%0A");  mask-image: var(--svg);
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--mano {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23000000'%3E%3Cpath d='M560-280v-80h80v-480H160v120H80v-120q0-33 23.5-56.5T160-920h480q33 0 56.5 23.5T720-840v180l160-160v440L720-540v180q0 33-23.5 56.5T640-280h-80ZM178-160q-17 0-31.5-6.5T121-184L0-304l14-14q9-9 20-13.5t22-4.5q12 0 23 4.5T98-318l22 22v-294q0-13 9-21.5t21-8.5q13 0 21.5 8.5T180-590v150h40v-210q0-13 9-21.5t21-8.5q13 0 21.5 8.5T280-650v210h40v-170q0-13 9-21.5t21-8.5q13 0 21.5 8.5T380-610v170h40v-130q0-13 9-21.5t21-8.5q13 0 21.5 8.5T480-570v330q0 33-23 56.5T400-160H178Zm462-680v480-480Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--people {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23000000'%3E%3Cpath d='m280-620 80-80-80-80-80 80 80 80Zm200-40ZM160-400q-33 0-56.5-23.5T80-480v-360q0-33 23.5-56.5T160-920h640q33 0 56.5 23.5T880-840v360q0 33-23.5 56.5T800-400H671q6-20 8-40t0-40h121v-360H160v360h121q-2 20 0 40t8 40H160Zm500-280q25 0 42.5-17.5T720-740q0-25-17.5-42.5T660-800q-25 0-42.5 17.5T600-740q0 25 17.5 42.5T660-680ZM200-40v-84q0-35 19.5-65t51.5-45q49-23 102-34.5T480-280q54 0 107 11.5T689-234q32 15 51.5 45t19.5 65v84H200Zm80-80h400v-4q0-12-7-22t-18-15q-42-19-86-29t-89-10q-45 0-89 10t-86 29q-11 5-18 15t-7 22v4Zm200-200q-58 0-99-41t-41-99q0-58 41-99t99-41q58 0 99 41t41 99q0 58-41 99t-99 41Zm0-80q25 0 42.5-17.5T540-460q0-25-17.5-42.5T480-520q-25 0-42.5 17.5T420-460q0 25 17.5 42.5T480-400Zm0-60Zm0 340Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--paso-1 {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--paso-2 {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M320-320h480v-480h-80v280l-100-60-100 60v-280H320v480Zm0 80q-33 0-56.5-23.5T240-320v-480q0-33 23.5-56.5T320-880h480q33 0 56.5 23.5T880-800v480q0 33-23.5 56.5T800-240H320ZM160-80q-33 0-56.5-23.5T80-160v-560h80v560h560v80H160Zm360-720h200-200Zm-200 0h480-480Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--paso-3 {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M456-600h320q-27-69-82.5-118.5T566-788L456-600Zm-92 80 160-276q-11-2-22-3t-22-1q-66 0-123 25t-101 67l108 188ZM170-400h218L228-676q-32 41-50 90.5T160-480q0 21 2.5 40.5T170-400Zm224 228 108-188H184q27 69 82.5 118.5T394-172Zm86 12q66 0 123-25t101-67L596-440 436-164q11 2 21.5 3t22.5 1Zm252-124q32-41 50-90.5T800-480q0-21-2.5-40.5T790-560H572l160 276ZM480-480Zm0 400q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-155.5t86-127Q252-817 325-848.5T480-880q83 0 155.5 31.5t127 86q54.5 54.5 86 127T880-480q0 82-31.5 155t-86 127.5q-54.5 54.5-127 86T480-80Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--paso-4 {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='currentColor'%3E%3Cpath d='M480-480v-400q0-17 11.5-28.5T520-920q17 0 28.5 11.5T560-880v400h-80Zm-160 0v-360q0-17 11.5-28.5T360-880q17 0 28.5 11.5T400-840v360h-80ZM500-40q-142 0-241-99t-99-241v-380q0-17 11.5-28.5T200-800q17 0 28.5 11.5T240-760v380q0 109 75.5 184.5T500-120q109 0 184.5-75.5T760-380v-140q-17 0-28.5 11.5T720-480v160H600q-33 0-56.5 23.5T520-240v40h-80v-40q0-66 47-113t113-47h40v-400q0-17 11.5-28.5T680-840q17 0 28.5 11.5T720-800v207q10-3 19.5-5t20.5-2h80v220q0 142-99 241T500-40Zm40-320Z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--facebook {
  --svg: url("data:image/svg+xml,%3Csvg fill='currentColor' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-143 145 512 512' xml:space='preserve'%3E%3Cpath d='M113,145c-141.4,0-256,114.6-256,256s114.6,256,256,256s256-114.6,256-256S254.4,145,113,145z M169.5,357.6l-2.9,38.3h-39.3 v133H77.7v-133H51.2v-38.3h26.5v-25.7c0-11.3,0.3-28.8,8.5-39.7c8.7-11.5,20.6-19.3,41.1-19.3c33.4,0,47.4,4.8,47.4,4.8l-6.6,39.2 c0,0-11-3.2-21.3-3.2c-10.3,0-19.5,3.7-19.5,14v29.9H169.5z'/%3E%3C/svg%3E");  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--instagram {
  --svg: url("data:image/svg+xml,%3Csvg fill='currentColor' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='-143 145 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M113,446c24.8,0,45.1-20.2,45.1-45.1c0-9.8-3.2-18.9-8.5-26.3c-8.2-11.3-21.5-18.8-36.5-18.8s-28.3,7.4-36.5,18.8 c-5.3,7.4-8.5,16.5-8.5,26.3C68,425.8,88.2,446,113,446z'/%3E%3Cpolygon points='211.4,345.9 211.4,308.1 211.4,302.5 205.8,302.5 168,302.6 168.2,346 '/%3E%3Cpath d='M183,401c0,38.6-31.4,70-70,70c-38.6,0-70-31.4-70-70c0-9.3,1.9-18.2,5.2-26.3H10v104.8C10,493,21,504,34.5,504h157 c13.5,0,24.5-11,24.5-24.5V374.7h-38.2C181.2,382.8,183,391.7,183,401z'/%3E%3Cpath d='M113,145c-141.4,0-256,114.6-256,256s114.6,256,256,256s256-114.6,256-256S254.4,145,113,145z M241,374.7v104.8 c0,27.3-22.2,49.5-49.5,49.5h-157C7.2,529-15,506.8-15,479.5V374.7v-52.3c0-27.3,22.2-49.5,49.5-49.5h157 c27.3,0,49.5,22.2,49.5,49.5V374.7z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--youtube {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='m10 15l5.19-3L10 9zm11.56-7.83c.13.47.22 1.1.28 1.9c.07.8.1 1.49.1 2.09L22 12c0 2.19-.16 3.8-.44 4.83c-.25.9-.83 1.48-1.73 1.73c-.47.13-1.33.22-2.65.28c-1.3.07-2.49.1-3.59.1L12 19c-4.19 0-6.8-.16-7.83-.44c-.9-.25-1.48-.83-1.73-1.73c-.13-.47-.22-1.1-.28-1.9c-.07-.8-.1-1.49-.1-2.09L2 12c0-2.19.16-3.8.44-4.83c.25-.9.83-1.48 1.73-1.73c.47-.13 1.33-.22 2.65-.28c1.3-.07 2.49-.1 3.59-.1L12 5c4.19 0 6.8.16 7.83.44c.9.25 1.48.83 1.73 1.73'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}

.icono--whatsapp {
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12.001 2c5.523 0 10 4.477 10 10s-4.477 10-10 10a9.95 9.95 0 0 1-5.03-1.355L2.005 22l1.352-4.968A9.95 9.95 0 0 1 2.001 12c0-5.523 4.477-10 10-10M8.593 7.3l-.2.008a1 1 0 0 0-.372.1a1.3 1.3 0 0 0-.294.228c-.12.113-.188.211-.261.306A2.73 2.73 0 0 0 6.9 9.62c.002.49.13.967.33 1.413c.409.902 1.082 1.857 1.97 2.742c.214.213.424.427.65.626a9.45 9.45 0 0 0 3.84 2.046l.568.087c.185.01.37-.004.556-.013a2 2 0 0 0 .833-.231a5 5 0 0 0 .383-.22q.001.002.125-.09c.135-.1.218-.171.33-.288q.126-.13.21-.302c.078-.163.156-.474.188-.733c.024-.198.017-.306.014-.373c-.004-.107-.093-.218-.19-.265l-.582-.261s-.87-.379-1.402-.621a.5.5 0 0 0-.176-.041a.48.48 0 0 0-.378.127c-.005-.002-.072.055-.795.931a.35.35 0 0 1-.368.13a1.4 1.4 0 0 1-.191-.066c-.124-.052-.167-.072-.252-.108a6 6 0 0 1-1.575-1.003c-.126-.11-.243-.23-.363-.346a6.3 6.3 0 0 1-1.02-1.268l-.059-.095a1 1 0 0 1-.102-.205c-.038-.147.061-.265.061-.265s.243-.266.356-.41c.11-.14.203-.276.263-.373c.118-.19.155-.385.093-.536q-.42-1.026-.868-2.041c-.059-.134-.234-.23-.393-.249q-.081-.01-.162-.016a3 3 0 0 0-.403.004z'/%3E%3C/svg%3E");
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
}
