¡Filtros purificadores de agua para un estilo de vida más saludable en Ecotrade!

Calculadora del
Ahorro
e Impacto


@import url(‘https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap’);

/* 1. Reset y Aislamiento del Contenedor Principal */
#eco-calc-wrapper {
all: initial; /* Resetea estilos heredados del tema */
font-family: ‘Inter’, sans-serif;
display: block;
width: 100%;
max-width: 1024px; /* Ancho máximo similar a max-w-5xl */
margin: 0 auto;
background-color: #f8fafc; /* bg-slate-50 */
padding: 24px 16px;
border-radius: 16px;
box-sizing: border-box;
color: #54595f; /* Color base texto */
}
/* Asegurar box-sizing en todos los hijos */
#eco-calc-wrapper * {
box-sizing: border-box;
font-family: ‘Inter’, sans-serif;
}
/* 2. Clases de Utilidad Scoped (Solo funcionan dentro de #eco-calc-wrapper) */
/* Textos */
#eco-calc-wrapper h2 {
font-size: 1.125rem; /* text-lg */
font-weight: 600;
color: #54595f;
margin: 0 0 12px 0;
line-height: 1.4;
}
#eco-calc-wrapper h3 {
font-size: 1.125rem;
font-weight: 700;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.05em;
margin: 0 0 8px 0;
line-height: 1.2;
}
#eco-calc-wrapper p {
margin: 0;
line-height: 1.5;
}
#eco-calc-wrapper .text-sm { font-size: 0.875rem; }
#eco-calc-wrapper .text-xs { font-size: 0.75rem; }
#eco-calc-wrapper .text-center { text-align: center; }
#eco-calc-wrapper .font-bold { font-weight: 700; }
#eco-calc-wrapper .font-medium { font-weight: 500; }
/* Colores Específicos */
#eco-calc-wrapper .text-slate-500 { color: #64748b; }
#eco-calc-wrapper .text-slate-700 { color: #334155; }
#eco-calc-wrapper .text-blue-600 { color: #2563eb; }
#eco-calc-wrapper .text-blue-700 { color: #1d4ed8; }
#eco-calc-wrapper .text-red-500 { color: #ef4444; }
#eco-calc-wrapper .text-green-600 { color: #16a34a; }
#eco-calc-wrapper .text-white { color: #ffffff; }
/* Componentes: Tarjetas */
#eco-calc-wrapper .calc-card {
background-color: #ffffff;
padding: 24px;
border-radius: 16px;
border: 1px solid #f1f5f9; /* slate-100 */
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
#eco-calc-wrapper .card-gradient {
background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
color: white;
position: relative;
overflow: hidden;
}
/* SELECTOR (Dropdown) */
#eco-calc-wrapper select {
width: 100%;
padding: 12px 16px;
border-radius: 12px;
border: 1px solid #e2e8f0;
font-size: 1.125rem;
font-weight: 600;
color: #2563eb;
background-color: #ffffff;
outline: none;
transition: all 0.2s;
cursor: pointer;
appearance: none; /* Reset nativo */
background-image: url(“data:image/svg+xml,%3csvg xmlns=’http://www.w3.org/2000/svg’ fill=’none’ viewBox=’0 0 20 20’%3e%3cpath stroke=’%236b7280′ stroke-linecap=’round’ stroke-linejoin=’round’ stroke-width=’1.5′ d=’M6 8l4 4 4-4’/%3e%3c/svg%3e”);
background-position: right 0.5rem center;
background-repeat: no-repeat;
background-size: 1.5em 1.5em;
padding-right: 2.5rem;
}
#eco-calc-wrapper select:focus {
border-color: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
/* Botón Principal */
#eco-calc-wrapper .btn-action {
display: inline-block;
background-color: #1e293b; /* slate-800 */
color: white;
font-weight: 700;
padding: 16px 32px;
border-radius: 9999px; /* full rounded */
text-decoration: none;
transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
border: none;
cursor: pointer;
width: 100%; /* Full width en móvil */
}
#eco-calc-wrapper .btn-action:hover {
background-color: #0f172a; /* slate-900 */
transform: scale(1.02);
}
/* 3. Layout Grid System (Responsive) */
#eco-calc-wrapper .grid-2-cols {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
margin-bottom: 16px;
}
#eco-calc-wrapper .grid-3-cols {
display: grid;
grid-template-columns: 1fr;
gap: 12px;
margin-bottom: 24px;
}
/* Media Queries para Tablet/Desktop (min-width: 768px) */
@media (min-width: 768px) {
#eco-calc-wrapper { padding: 40px 20px; }
#eco-calc-wrapper .grid-2-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
#eco-calc-wrapper .grid-3-cols { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
#eco-calc-wrapper .btn-action { width: auto; font-size: 1.125rem; }
#eco-calc-wrapper h2 { font-size: 1.25rem; }
}
/* Elementos Decorativos */
#eco-calc-wrapper .circle-deco {
position: absolute;
right: -30px;
bottom: -30px;
width: 120px;
height: 120px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
pointer-events: none;
}
/* Icono SVG Container */
#eco-calc-wrapper .icon-box {
background-color: #2563eb;
color: white;
padding: 6px;
border-radius: 8px;
display: inline-flex;
margin-bottom: 8px;
}
/* Utilidades de espaciado */
#eco-calc-wrapper .mb-1 { margin-bottom: 4px; }
#eco-calc-wrapper .mb-2 { margin-bottom: 8px; }
#eco-calc-wrapper .mb-4 { margin-bottom: 16px; }
#eco-calc-wrapper .mb-6 { margin-bottom: 24px; }
#eco-calc-wrapper .mt-1 { margin-top: 4px; }
#eco-calc-wrapper .flex-between {
display: flex;
justify-content: space-between;
align-items: center;
}
#eco-calc-wrapper .space-y-2 > * + * {
margin-top: 8px;
}
#eco-calc-wrapper .border-t {
border-top: 1px solid #f1f5f9;
padding-top: 12px;
margin-top: 12px;
}



Descubre cuánto dinero puedes ahorrar al año y cuántos residuos plásticos dejas de generar al elegir nuestro filtro de gravedad.


Tu Consumo



1 Botellón

* Un botellón de 20L rinde aprox. 40 botellas pequeñas.

Costo Botellón:
$15.000
Costo Envase:
$40.000

Ahorro el primer año

$0

Este cálculo compara tu gasto actual en botellones contra la inversión única de nuestro filtro ($143.677) más sus repuestos anuales.



Gasto Botellones (Año 1)
$0

Gasto con Filtro (Año 1)
$0

Tu Aporte al Planeta

Evitas 0 botellas




¡Quiero mi Filtro Ahora!

* Los cálculos incluyen el costo inicial del filtro ($143.677) y un cambio de repuestos a los 8 meses ($98.668).

* El costo de botellones incluye el valor inicial de un envase ($40.000).


Opiniones reales de quienes ya confiaron en nosotros:

Filtros Biopurificadores de Agua Ecotrade

Disfruta de Agua Alcalina

¡Mantente en
contacto
con nosotros!


Tienda


Mantenimiento


Repuestos


Aliados Comerciales

¿Empleo?

Trabaja con nosotros y desarrolla tu talento


Ir a Vacantes

Blog

Agua pura, hogares inteligentes y cuidado ambiental


Ir a Noticias

Distribuidores

¿Quieres convertirte en un distribuidor oficial de Ecotrade?


Chat en Línea

Soporte

Recibe asesoría personalizada con solo hacer clic en el botón


Chat en Línea

Conoce nuestras noticias de interés:

Clientes Corporativos

Federación Nacional de Cafeteros de Colombia
Agroganadero
Agroaguas
World Vision
Gimnasio Moderno
Precisagro
Liceo Boston
Carrito de compra
Tienda
1
Buscar
Cuenta