--bg-card: #ffffff; --bg-soft: #eff4ff; --azul: #0b1c30; --azul-medio: #3f465c; --azul-claro: #dce9ff; --verde: #006c49; --verde-claro: #6cf8bb; --verde-btn: #005236; --gris: #45464d; --gris-borde: #c6c6cd; --gris-suave: #e5eeff; --fuente: 'Manrope', sans-serif; --radio-sm: 0.25rem; --radio: 0.5rem; --radio-md: 0.75rem; --radio-lg: 1rem; --radio-xl: 1.5rem; --sombra: 0 2px 8px rgba(11,28,48,0.08); --sombra-hover: 0 8px 28px rgba(11,28,48,0.13); } *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: var(--fuente); background: var(--bg); color: var(--azul); min-height: 100vh; -webkit-font-smoothing: antialiased; } /* Cabecera */ .cabecera { background: #fff; border-bottom: 1px solid var(--gris-suave); padding: 0 2rem; height: 64px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 4px rgba(11,28,48,0.06); } .logo { font-size: 1.2rem; font-weight: 800; color: var(--azul); text-decoration: none; letter-spacing: -0.02em; } .logo span { color: var(--verde); } .nav-enlaces { display: flex; gap: 2rem; list-style: none; } .nav-enlaces a { font-size: 0.82rem; font-weight: 600; color: var(--gris); text-decoration: none; transition: color 0.2s; } .nav-enlaces a:hover { color: var(--azul); } .badge-confianza { display: flex; align-items: center; gap: 0.4rem; background: #e8faf3; border: 1px solid #b3f0d8; border-radius: 9999px; padding: 0.25rem 0.8rem; font-size: 0.72rem; font-weight: 700; color: var(--verde); } /* Hero */ .hero { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } .hero-eyebrow { display: inline-flex; align-items: center; gap: 0.4rem; background: #e8faf3; border: 1px solid #b3f0d8; border-radius: 9999px; padding: 0.3rem 0.9rem; font-size: 0.72rem; font-weight: 700; color: var(--verde); margin-bottom: 1.2rem; opacity: 0; animation: subir 0.5s ease forwards 0.1s; } .hero-titulo { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--azul); margin-bottom: 1rem; opacity: 0; animation: subir 0.5s ease forwards 0.2s; } .hero-subtitulo { font-size: 0.95rem; color: var(--gris); line-height: 1.7; margin-bottom: 2rem; opacity: 0; animation: subir 0.5s ease forwards 0.3s; } .hero-promesas { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; opacity: 0; animation: subir 0.5s ease forwards 0.4s; } .hero-promesa { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 500; color: var(--azul-medio); } .hero-promesa::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: #e8faf3; border: 1.5px solid var(--verde); color: var(--verde); font-size: 0.6rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } @keyframes subir { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } /* Tarjeta buscador */ .buscador-card { background: var(--bg-card); border-radius: var(--radio-xl); box-shadow: var(--sombra-hover); border: 1px solid var(--gris-suave); overflow: hidden; opacity: 0; animation: subir 0.5s ease forwards 0.2s; } .buscador-header { background: var(--azul); padding: 1.2rem 1.5rem; } .buscador-header-titulo { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; } .buscador-header-sub { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.1rem; } .buscador-body { padding: 1.5rem; } /* Selectores de medida */ .medida-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: end; gap: 0.5rem; margin-bottom: 1.2rem; } .selector-grupo label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gris); margin-bottom: 0.35rem; } .selector-grupo select { appearance: none; width: 100%; background: var(--bg-soft); border: 1.5px solid var(--gris-borde); border-radius: var(--radio-md); color: var(--azul); font-family: var(--fuente); font-size: 1.3rem; font-weight: 700; text-align: center; padding: 0.6rem 0.3rem; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; } .selector-grupo select:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 3px rgba(11,28,48,0.08); } .selector-grupo select option { background: #fff; } .sep-medida { font-size: 1.3rem; font-weight: 300; color: var(--gris-borde); padding-bottom: 0.6rem; text-align: center; } /* Visualización gráfica */ .medida-visual { background: var(--bg-soft); border-radius: var(--radio-lg); padding: 1rem 1.2rem; text-align: center; margin-bottom: 1.2rem; border: 1px solid var(--azul-claro); } .medida-arco { width: 140px; height: 70px; margin: 0 auto 0.5rem; } .medida-arco svg { width: 100%; height: 100%; } .medida-display { font-size: 1.35rem; font-weight: 800; color: var(--azul); letter-spacing: -0.02em; } .medida-hint { font-size: 0.68rem; color: var(--gris); margin-top: 0.3rem; display: flex; align-items: center; justify-content: center; gap: 0.3rem; } /* Filtros rápidos */ .filtros-rapidos { display: flex; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap; } .filtro-check { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 500; color: var(--gris); cursor: pointer; user-select: none; } .filtro-check input { width: 15px; height: 15px; accent-color: var(--verde); cursor: pointer; } /* Botón buscar */ .btn-buscar { width: 100%; background: var(--verde); color: #fff; font-family: var(--fuente); font-size: 1rem; font-weight: 700; border: none; border-radius: var(--radio-lg); padding: 0.9rem; cursor: pointer; transition: background 0.2s, transform 0.1s, box-shadow 0.2s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; letter-spacing: -0.01em; } .btn-buscar:hover { background: var(--verde-btn); box-shadow: 0 4px 16px rgba(0,108,73,0.3); } .btn-buscar:active { transform: scale(0.98); } /* Medidas populares */ .populares { max-width: 1100px; margin: 0 auto; padding: 1.2rem 2rem 2.5rem; } .populares-titulo { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gris); margin-bottom: 0.7rem; } .populares-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; } .chip { background: var(--bg-card); border: 1.5px solid var(--gris-borde); border-radius: 9999px; color: var(--azul-medio); font-family: var(--fuente); font-size: 0.8rem; font-weight: 600; padding: 0.28rem 0.85rem; cursor: pointer; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s; } .chip:hover { border-color: var(--verde); color: var(--verde); background: #e8faf3; box-shadow: 0 2px 8px rgba(0,108,73,0.1); } /* Sección cómo funciona */ .como-funciona { background: var(--bg-card); border-top: 1px solid var(--gris-suave); border-bottom: 1px solid var(--gris-suave); padding: 4rem 2rem; } .seccion-inner { max-width: 1100px; margin: 0 auto; } .seccion-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--verde); margin-bottom: 0.5rem; } .seccion-titulo { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -0.02em; color: var(--azul); margin-bottom: 2.5rem; line-height: 1.2; } .pasos { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; } .paso { background: var(--bg-soft); border-radius: var(--radio-lg); padding: 1.4rem; border: 1px solid var(--azul-claro); } .paso-numero { width: 34px; height: 34px; background: var(--azul); color: #fff; border-radius: 9999px; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 800; margin-bottom: 0.9rem; } .paso-titulo { font-size: 0.92rem; font-weight: 700; color: var(--azul); margin-bottom: 0.4rem; } .paso-texto { font-size: 0.82rem; color: var(--gris); line-height: 1.65; } /* Transparencia */ .transparencia { padding: 4rem 2rem; } .transparencia-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .transparencia-lista { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; } .transparencia-item { display: flex; align-items: flex-start; gap: 0.8rem; background: var(--bg-card); border: 1px solid var(--gris-suave); border-radius: var(--radio-lg); padding: 0.85rem 1rem; box-shadow: var(--sombra); } .transparencia-icono { width: 26px; height: 26px; background: #e8faf3; border-radius: var(--radio); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.7rem; color: var(--verde); font-weight: 700; } .transparencia-texto { font-size: 0.84rem; font-weight: 500; color: var(--azul-medio); line-height: 1.5; } /* Pie */ .pie { background: var(--azul); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; } .pie-logo { font-size: 1rem; font-weight: 800; color: rgba(255,255,255,0.4); letter-spacing: -0.01em; } .pie-logo span { color: var(--verde-claro); } .pie-aviso { font-size: 0.72rem; color: rgba(255,255,255,0.35); max-width: 420px; line-height: 1.6; text-align: center; } .pie-enlaces { display: flex; gap: 1.5rem; list-style: none; } .pie-enlaces a { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; } .pie-enlaces a:hover { color: rgba(255,255,255,0.9); } /* Responsive */ @media (max-width: 800px) { .hero { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 1.5rem 0.5rem; } .nav-enlaces, .badge-confianza { display: none; } .transparencia-grid { grid-template-columns: 1fr; gap: 2rem; } .pie { flex-direction: column; align-items: flex-start; padding: 1.5rem; } .pie-aviso { text-align: left; } } @media (max-width: 480px) { .medida-row { gap: 0.25rem; } .selector-grupo select { font-size: 1.1rem; padding: 0.5rem 0.2rem; } }
Precios con IVA incluido
Comparador independiente · España

Encuentra el mejor precio para tus neumáticos

Comparamos las principales tiendas online españolas en tiempo real. El precio que ves es el precio final, con IVA incluido y sin sorpresas.

Buscar por medida
Los tres números del flanco de tu neumático
/
R
205 / 55 R16
Léelo del flanco de tu neumático actual

Medidas más buscadas

195/65 R15205/55 R16205/60 R16215/65 R16215/55 R17225/45 R17225/50 R17235/45 R18245/45 R18255/35 R19

Simple y transparente

Así de fácil es encontrar el mejor precio

1

Introduce tu medida

Selecciona los tres números del flanco de tu neumático. Por ejemplo: 205/55 R16.

2

Comparamos por ti

Consultamos el catálogo y precios actualizados de las principales tiendas online españolas.

3

Elige el mejor precio

Ves todos los resultados ordenados por precio real, con IVA incluido. Sin sorpresas en el carrito.

4

Compras directamente

Haces clic y vas directo a la tienda. Nosotros no intervenimos en la transacción.

Sin letra pequeña

Un comparador en el que puedes confiar

Otros comparadores esconden el IVA o priorizan resultados por comisión. Aquí no. Lo que ves es lo que pagas.