.elementor-47 .elementor-element.elementor-element-7589a18{--display:flex;}.elementor-47 .elementor-element.elementor-element-452af18{--display:flex;}.elementor-47 .elementor-element.elementor-element-c01bdf7{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -10px) 0px;}.elementor-47 .elementor-element.elementor-element-c01bdf7.elementor-element{--order:-99999 /* order start hack */;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-d85d2b8 *//* =========================================
   WIDGET FLOTANTE "SOLICITA AQUÍ" — WhatsApp
   Todo prefijado con "vdwa-" para no chocar con el
   CSS de ninguna de las 8 páginas donde va a vivir.
   ========================================= */
:root {
  --vdwa-green: #237823;
  --vdwa-green-hover: #1a5c1a;
  --vdwa-green-light: #eaf7e6;
  --vdwa-orange: #F57D0F;
  --vdwa-black: #121212;
  --vdwa-border: #e5e7eb;
  --vdwa-radius: 16px;
}

.vdwa-widget,
.vdwa-widget *,
.vdwa-widget *::before,
.vdwa-widget *::after {
  box-sizing: border-box;
}

.vdwa-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
  font-family: 'Lato', sans-serif;
}

/* =========================================
   BOTÓN FLOTANTE (FAB)
   ========================================= */
.vdwa-fab,
button.vdwa-fab {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 10px 25px rgba(18, 18, 18, 0.25) !important;
  background-color: var(--vdwa-green) !important;
  background-image: none !important;
  color: #ffffff !important;
  padding: 12px 14px 12px 18px !important;
  border-radius: 999px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: vdwa-pulse 2.6s ease-in-out infinite;
}
.vdwa-fab:hover,
.vdwa-fab:focus,
.vdwa-fab:focus-visible {
  background-color: var(--vdwa-green-hover) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.3) !important;
}
.vdwa-fab:active {
  background-color: var(--vdwa-green-hover) !important;
  color: #ffffff !important;
  transform: translateY(0);
}

.vdwa-fab-badge {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.vdwa-fab-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

@keyframes vdwa-pulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(18, 18, 18, 0.25), 0 0 0 0 rgba(35, 120, 35, 0.45); }
  50% { box-shadow: 0 10px 25px rgba(18, 18, 18, 0.25), 0 0 0 10px rgba(35, 120, 35, 0); }
}

/* Cuando el panel está abierto: ocultar el texto del badge
   y dejar solo el ícono, más chico, como botón de "cerrar" */
.vdwa-widget.is-open .vdwa-fab {
  animation: none;
}
.vdwa-widget.is-open .vdwa-fab-badge {
  display: none;
}

/* =========================================
   PANEL TIPO CHAT
   ========================================= */
.vdwa-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 340px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 140px);
  background: #ffffff;
  border-radius: var(--vdwa-radius);
  box-shadow: 0 20px 50px rgba(18, 18, 18, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.vdwa-widget.is-open .vdwa-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ── Header del panel ── */
.vdwa-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--vdwa-green);
  padding: 14px 16px;
  flex-shrink: 0;
}

.vdwa-panel-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.vdwa-panel-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  object-fit: contain;
  padding: 3px;
  flex-shrink: 0;
}

.vdwa-panel-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.vdwa-panel-subtitle {
  margin: 0;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.vdwa-panel-close,
button.vdwa-panel-close {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  color: #ffffff !important;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.vdwa-panel-close:hover,
.vdwa-panel-close:focus {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}
.vdwa-panel-close svg {
  width: 18px;
  height: 18px;
}

/* ── Cuerpo del panel ── */
.vdwa-panel-body {
  padding: 16px;
  overflow-y: auto;
  background: var(--vdwa-green-light);
}

.vdwa-panel-msg {
  background: #ffffff;
  border-radius: 12px;
  border-top-left-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--vdwa-black);
  margin: 0 0 16px 0;
  box-shadow: 0 2px 8px rgba(18, 18, 18, 0.06);
}

/* ── Formulario ── */
.vdwa-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vdwa-form-group {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid var(--vdwa-border) !important;
  border-radius: 12px !important;
  padding: 8px 12px !important;
}

.vdwa-form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #8a8f8a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 3px 0;
}

.vdwa-input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-image: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--vdwa-black);
  width: 100%;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.vdwa-relative-group {
  position: relative;
}

/* ── Select personalizado ── */
.vdwa-select-container {
  position: relative;
  width: 100%;
}

.vdwa-select-toggle-input {
  display: none;
}

.vdwa-select-button {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0.9rem;
  color: var(--vdwa-black);
  cursor: pointer;
  user-select: none;
}

.vdwa-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9aa19a;
}
.vdwa-truncate.has-value {
  color: var(--vdwa-black);
}

.vdwa-icon-arrow {
  width: 16px;
  height: 16px;
  color: var(--vdwa-green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.vdwa-options-popover {
  display: none;
  position: relative;
  width: 100%;
  margin-top: 10px;
  max-height: 240px;
  overflow-y: auto;
  background-color: #fbfbfb;
  border: 1px solid var(--vdwa-border);
  border-radius: 10px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 6px 0;
  animation: vdwa-fadeIn 0.2s ease-out;
}

.vdwa-select-toggle-input:checked ~ .vdwa-options-popover {
  display: block;
}
.vdwa-select-toggle-input:checked ~ .vdwa-select-button .vdwa-icon-arrow {
  transform: rotate(180deg);
}

.vdwa-optgroup-title {
  padding: 7px 16px 7px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--vdwa-green);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: var(--vdwa-green-light);
  margin-top: 4px;
}
.vdwa-optgroup-title:first-child {
  margin-top: 0;
}

.vdwa-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px 10px 14px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--vdwa-black);
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}
.vdwa-option:hover {
  background-color: #f3f4f6;
}
.vdwa-option input[type="radio"] {
  display: none;
}

.vdwa-icon-check {
  width: 16px;
  height: 16px;
  color: var(--vdwa-green);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.vdwa-option input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--vdwa-green-hover);
}
.vdwa-option input[type="radio"]:checked ~ .vdwa-icon-check {
  opacity: 1;
  transform: scale(1);
}

@keyframes vdwa-fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Botón de envío ── */
.vdwa-submit-btn,
button.vdwa-submit-btn {
  display: block !important;
  width: 100% !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  background-color: var(--vdwa-orange) !important;
  background-image: none !important;
  color: #ffffff !important;
  font-family: 'Lato', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 12px !important;
  border-radius: 12px !important;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.vdwa-submit-btn:hover,
.vdwa-submit-btn:focus,
.vdwa-submit-btn:focus-visible {
  background-color: #d1690c !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.vdwa-submit-btn:active {
  background-color: #b85a0a !important;
  color: #ffffff !important;
  transform: translateY(0);
}

/* =========================================
   MÓVILES — panel más ancho, casi a pantalla completa
   ========================================= */
@media (max-width: 480px) {
  .vdwa-widget {
    right: 14px;
    bottom: 14px;
  }
  .vdwa-fab-badge {
    display: none;
  }
  .vdwa-fab {
    padding: 14px;
    border-radius: 50%;
  }
  .vdwa-panel {
    width: calc(100vw - 28px);
    right: 0;
    bottom: 68px;
    max-height: calc(100vh - 110px);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c01bdf7 *//* Variables de colores de Verdece SAC */
:root {
  --verde-marca: #237823;
  --naranja-marca: #F57D0F;
  --negro-texto: #121212;
  --blanco-fondo: #f7f7f7;
  --fuente-principal: 'Roboto', sans-serif;
}

/* =========================================
   RESET DEL MARGEN POR DEFECTO DEL NAVEGADOR
   La mayoría de navegadores traen un margin: 8px
   de fábrica en <body>. Si el tema de WordPress
   no lo resetea, queda visible como una franja
   de espacio (o del color de fondo de <html>)
   justo debajo del footer, que ningún margin-bottom
   negativo en .footer-verdece puede corregir porque
   ese margen no pertenece al footer sino al body.
   ========================================= */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Estilos generales del Footer — ahora a todo el ancho */
.footer-verdece {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -10px;
  margin-bottom: 0;
  background-color: var(--blanco-fondo);
  color: var(--negro-texto);
  font-family: var(--fuente-principal);
  border-top: 4px solid var(--verde-marca);
  padding: 60px 0 0 0;
  line-height: 1.5;
  display: block;
}

.footer-verdece * {
  box-sizing: border-box;
}

.footer-verdece-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Columnas */
.footer-verdece-col {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Estilos del Logo en Imagen */
.footer-verdece-logo-img {
  width: 100%;
  max-width: 110px;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  object-fit: contain;
}

.footer-verdece-col > a.logo-link {
  display: block;
  margin: 0 0 -45px 0 !important;
  padding: 0 !important;
  line-height: 0;
  position: relative;
  z-index: 10;
}

/* Títulos de las columnas */
.footer-verdece-col h3 {
  color: var(--verde-marca);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  width: 100%;
}

.footer-verdece-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--naranja-marca);
}

/* Textos generales */
.footer-verdece-col p {
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: 0 !important;
  margin-bottom: 15px;
  color: var(--negro-texto);
  text-align: left;
  position: relative;
  z-index: 20;
}

/* Listas (Enlaces) */
.footer-verdece-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.footer-verdece-col ul li {
  margin-bottom: 12px;
}

.footer-verdece-col ul li a {
  color: var(--negro-texto);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-verdece-col ul li a:hover {
  color: var(--naranja-marca);
  padding-left: 5px;
}

/* Información de contacto */
.footer-verdece-contact-wrap {
  width: 100%;
  font-style: normal; /* <address> viene en cursiva por defecto, la anulamos */
}

.footer-verdece-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-verdece-contact li i {
  color: var(--verde-marca);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-verdece-contact li a {
  color: var(--negro-texto);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-verdece-contact li a:hover {
  color: var(--naranja-marca);
}

/* Redes Sociales */
.footer-verdece-social {
  display: flex;
  gap: 15px;
}

.footer-verdece-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--verde-marca);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-verdece-social a:hover {
  background-color: var(--naranja-marca);
  transform: translateY(-3px);
  color: #ffffff;
}

/* Botón CTA */
.footer-verdece-btn {
  display: inline-block;
  background-color: var(--naranja-marca);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  border: none;
}

.footer-verdece-btn:hover {
  background-color: #d1690c;
}

/* Footer Bottom */
.footer-verdece-bottom {
  background-color: #e5e5e5;
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--negro-texto);
}

.footer-verdece-legal a {
  color: var(--negro-texto);
  text-decoration: none;
  margin: 0 15px;
  transition: color 0.3s;
}

.footer-verdece-legal a:hover {
  color: var(--naranja-marca);
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-verdece-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-verdece-col {
    align-items: center;
    text-align: center;
  }

  .footer-verdece-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-verdece-col p {
    text-align: center;
  }

  .footer-verdece-contact li {
    justify-content: center;
  }

  .footer-verdece-bottom {
    text-align: center;
  }

  .footer-verdece-legal a {
    display: inline-block;
    margin: 5px 10px;
  }
}/* End custom CSS */