@charset "UTF-8";

@import "./common.css?v=11";

.limpieza,
.industrial,
.especial {
	padding-left: 12vw;
	padding-right: 12vw;
}

/******************************************************************************
	Banner de productos
******************************************************************************/

/* ── Hero buscador ── */
.search-hero {
  background: linear-gradient(150deg, #2d6e00 0%, var(--main-color) 55%, #7fd400 100%);
  padding: calc(var(--menu-height) + 50px) 6vw 50px;
  text-align: center;
  position: relative;
}

.search-hero-label {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px !important;
  font-weight: 600;
}

.search-hero-title {
  color: #fff !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin-bottom: 14px !important;
}

.search-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 28px !important;
}

.search-hero-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

.search-hero-icon {
  font-size: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}

.search-hero-input {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 16px !important;
  flex: 1;
  padding: 8px 0 !important;
  height: auto !important;
  box-shadow: none !important;
  width: 100% !important;
  -webkit-appearance: none;
}

.search-hero-input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.search-hero-btn {
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.search-hero-btn:hover {
  background: var(--selection-color);
}

.hero-search-results {
  list-style: none;
  background: #fff;
  border-radius: 12px;
  max-width: 620px;
  margin: 6px auto 0 !important;
  padding: 0 !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: none;
  text-align: left;
  position: relative;
  z-index: 100;
}

.hero-search-results.open {
  display: block;
}

.hero-search-results li a {
  display: block;
  padding: 12px 18px;
  color: var(--main-color) !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.hero-search-results li:last-child a {
  border-bottom: none;
}

.hero-search-results li a:hover {
  background: var(--menu-hover-color);
}

.hero-search-results .mp-result a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-search-results .no-results {
  padding: 12px 18px;
  color: #888;
  font-size: 14px;
}

.search-hero-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.search-hero-tags span {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.search-hero-tags button {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-hero-tags button:hover {
  background: rgba(255,255,255,0.35);
}

@media (max-width: 767px) {
  .search-hero-title {
    font-size: 28px !important;
  }
  .search-hero-sub {
    font-size: 14px;
  }
  .search-hero-box {
    border-radius: 12px;
    padding: 8px 8px 8px 14px;
  }
  .search-hero-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.banner {
	padding-top: 0;
}

.banner img {
	width: 100%;
	height: auto;
}

.banner .carousel-control-prev:hover,
.banner .carousel-control-next:hover {
	background-color: rgba(255,255,255,0.25);
}

@media (max-width: 767px) {
	.banner {
		padding-top: calc(var(--menu-height) * 1.2);
	}
}

/******************************************************************************
	Sección héroe
******************************************************************************/

.hero-section {
    padding-top: 0;
    min-height: 0;
    padding: 30px 0;
    display: flex;
    position: relative;
    align-items: center;
    overflow: hidden;
}

.hero-section .headers {
	margin: auto;
	padding: 0;
	width: max-content;
	background-color: rgba(255,255,255,0.55);
}

.hero-section h1,
.hero-section h2 {
	text-shadow: 0 0 5px #FFF;
	margin: 0 !important;
	padding: 25px 30px;
	text-align: center;
}

.hero-section h1 {
	padding-bottom: 0;
}

.hero-section h2 {
	color: var(--black-font) !important;
}



/******************************************************************************
	Secciones de Servicios
******************************************************************************/

.servicio {
	padding: calc(var(--menu-height) / 2) 10vw;
}

.servicio .left {
	padding-right: 6vw;
}

.servicio .titulo img {
	width: auto;
	height: 35px;
	margin-right: 5px;
	float: left;
}

.servicio h2 {
	text-align: left;
	text-decoration: underline;
	text-decoration-color: var(--main-color);
}

.servicio p {
	margin-left: 40px;
}

.servicio p span {
	color: var(--strong-color);
}

.servicio .button {
	margin: 40px 20px 0 auto;
	width: max-content;
}

.servicio .button a {
	padding: 10px 20px;
}

.servicio .right img {
	width: 100%;
	height: auto;
}

/******************************************************************************
	Sección Especial
******************************************************************************/

.especial {
	align-items: center;
	text-align: center;
	padding: calc(var(--menu-height)) 10vw;
}

.especial h2 {
	color: var(--main-color) !important;
}

.especial p {
	color: var(--strong-color);
	text-align: center;
  font-weight: 400;
  font-size: 28px;
	line-height: 32px;
}

.especial .cuadrado {
  border-radius: 20px;
  border: 3px solid var(--strong-color);
  display: flex;
	margin: 60px auto 0;
  width: 300px;
  height: 141px;
}

.cuadrado img {
  width: auto;
  height: 85px;
  margin-top: -15%;
  margin-left: auto;
  margin-right: auto;
}

/******************************************************************************
	Responsividad
******************************************************************************/

@media (max-width: 998px) {

}
@media (max-width: 918px) {
	.servicio {
		padding-left: 7vw;
		padding-right: 7vw;
	}

	.servicio p {
		margin-left: 0;
	}

}
@media (max-width: 767px) {

	.hero-section {
    min-height: 30vh;
	}

	.hero-section h2,
	.servicio h2 {
		font-size: 22px !important;
	}
	.servicio {
		padding-left: 2vw;
		padding-right: 2vw;
	}

	.servicio .left {
		padding-right: 2vw;
	}

	.servicio .right {
		padding-top: 50px;
	}

	.servicio p {
		margin-left: 0;
	}

	.servicio .button {
		margin-left: auto;
		margin-right: auto;
	}
}