Descripción
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
margin: 0;
padding: 10px;
background-color: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.section {
background: #fff;
margin: 15px 0;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
overflow: hidden;
}
.section-padding {
padding: 20px;
}
.header-section {
border-left: 6px solid #d90416;
background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
}
.title {
color: #d90416;
font-size: clamp(1.8rem, 4vw, 2.4rem);
margin-bottom: 10px;
font-weight: bold;
line-height: 1.2;
}
.subtitle {
color: #666;
font-size: clamp(1rem, 2.5vw, 1.2rem);
margin: 0;
font-weight: 500;
}
.special-edition-badge {
background: linear-gradient(135deg, #d90416, #f2b705);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: clamp(0.9rem, 2vw, 1rem);
font-weight: bold;
display: inline-block;
margin: 10px 0;
text-transform: uppercase;
letter-spacing: 1px;
}
.section-title {
color: #d90416;
font-size: clamp(1.4rem, 3vw, 1.8rem);
margin-bottom: 20px;
font-weight: bold;
}
.text-content {
color: #333;
font-size: clamp(1rem, 2vw, 1.1rem);
line-height: 1.7;
margin-bottom: 15px;
}
.grid-3 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 20px 0;
}
.grid-2 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.grid-4 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.benefit-card {
border: 2px solid #f2b705;
padding: 20px;
border-radius: 8px;
background: #fefefe;
}
.benefit-title {
color: #d90416;
font-size: clamp(1.1rem, 2.5vw, 1.3rem);
font-weight: bold;
margin-bottom: 10px;
}
.benefit-text {
color: #333;
font-size: clamp(0.9rem, 2vw, 1rem);
line-height: 1.6;
margin: 0;
}
.embed-container {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
margin: 20px 0;
}
.embed-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 8px;
border: 1px solid #ddd;
}
.highlight-section {
background: #f8f9fa;
border-left: 6px solid #d98e04;
}
.special-edition-section {
background: linear-gradient(135deg, #fff5f5 0%, #fef7e0 100%);
border-left: 6px solid #d90416;
}
.btn {
display: inline-block;
background: #fff !important;
color: #d90416 !important;
border: 2px solid #d90416 !important;
padding: 12px 25px;
text-decoration: none !important;
border-radius: 6px;
font-weight: bold;
font-size: clamp(0.9rem, 2vw, 1.1rem);
transition: all 0.3s;
margin: 5px;
}
.btn:hover {
background: #d90416 !important;
color: #fff !important;
border-color: #d90416 !important;
text-decoration: none !important;
}
.benefit-item {
margin-bottom: 12px;
padding: 15px;
background: #f8f9fa;
border-radius: 6px;
border-left: 4px solid #f2b705;
color: #333;
}
.benefit-item strong {
color: #d90416;
}
.feature-card {
background: #fff;
border: 2px solid #f2b705;
padding: 20px;
border-radius: 8px;
margin-bottom: 15px;
}
.feature-title {
color: #d90416;
font-size: clamp(1.1rem, 2.5vw, 1.3rem);
font-weight: bold;
margin-bottom: 10px;
}
.feature-description {
color: #333;
font-size: clamp(0.9rem, 2vw, 1rem);
line-height: 1.6;
margin: 0;
}
.size-card {
background: #fff;
border: 2px solid #d90416;
padding: 15px;
border-radius: 8px;
text-align: center;
}
.size-title {
color: #d90416;
font-size: clamp(1rem, 2.5vw, 1.3rem);
font-weight: bold;
margin-bottom: 5px;
}
.size-details {
color: #333;
font-size: clamp(0.9rem, 2vw, 1.1rem);
margin: 0;
}
.tip-card {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
border: 1px solid #eee;
margin-bottom: 15px;
}
.tip-title {
color: #d90416;
font-size: clamp(1rem, 2.5vw, 1.3rem);
font-weight: bold;
margin-bottom: 10px;
}
.tip-description {
color: #333;
font-size: clamp(0.9rem, 2vw, 1rem);
line-height: 1.6;
margin: 0;
}
.steps-list {
counter-reset: step-counter;
list-style: none;
padding: 0;
}
.steps-list li {
counter-increment: step-counter;
margin-bottom: 15px;
padding: 15px;
background: #f8f9fa;
border-radius: 8px;
border-left: 4px solid #d90416;
position: relative;
}
.steps-list li::before {
content: counter(step-counter);
position: absolute;
left: -15px;
top: 15px;
background: #d90416;
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 14px;
}
.footer-section {
background: #f2d06b;
color: #333;
text-align: center;
}
.footer-title {
color: #333;
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: bold;
margin-bottom: 20px;
}
.footer-card {
background: rgba(255,255,255,0.3);
padding: 20px;
border-radius: 8px;
border: 1px solid rgba(217,4,22,0.2);
display: inline-block;
margin: 10px;
min-width: 200px;
}
.footer-card h3 {
color: #333;
font-size: clamp(1rem, 2.5vw, 1.3rem);
font-weight: bold;
margin-bottom: 10px;
}
.footer-card a {
color: #d90416 !important;
text-decoration: underline !important;
font-size: clamp(0.9rem, 2vw, 1.1rem);
font-weight: bold;
}
.footer-card a:hover {
color: #b8030f !important;
text-decoration: underline !important;
}
.limited-edition-alert {
background: linear-gradient(135deg, #d90416, #f2b705);
color: white;
padding: 20px;
border-radius: 8px;
text-align: center;
margin: 20px 0;
}
.limited-edition-alert h3 {
margin-top: 0;
font-size: clamp(1.2rem, 3vw, 1.6rem);
font-weight: bold;
}
.limited-edition-alert p {
margin-bottom: 0;
font-size: clamp(1rem, 2vw, 1.1rem);
}
.original-content {
color: #333;
line-height: 1.6;
}
.original-content h2 {
color: #d90416;
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: bold;
margin: 25px 0 15px 0;
}
.original-content ul {
margin: 15px 0;
padding-left: 20px;
}
.original-content ol {
margin: 15px 0;
padding-left: 20px;
}
.original-content li {
margin-bottom: 8px;
color: #333;
padding: 8px 0;
}
.original-content strong {
color: #d90416;
}
.original-content p {
margin-bottom: 15px;
color: #333;
}
.original-content a {
color: #d90416 !important;
text-decoration: underline !important;
font-weight: bold;
}
.original-content a:hover {
color: #b8030f !important;
text-decoration: underline !important;
}
.original-content em {
font-style: italic;
color: #666;
}
.intro-highlight {
background: linear-gradient(135deg, #fff5f5 0%, #fef7e0 100%);
border-left: 6px solid #d90416;
padding: 25px;
border-radius: 8px;
margin: 20px 0;
}
.intro-highlight p {
margin: 0;
font-size: clamp(1.1rem, 2.5vw, 1.3rem);
line-height: 1.6;
color: #333;
}
.intro-highlight strong {
color: #d90416;
}
.intro-highlight em {
color: #d98e04;
font-weight: bold;
}
/* Responsive design */
@media (max-width: 768px) {
body {
padding: 5px;
}
.section-padding {
padding: 15px;
}
.grid-3 {
grid-template-columns: 1fr;
gap: 15px;
}
.grid-2 {
grid-template-columns: 1fr;
gap: 15px;
}
.grid-4 {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.benefit-card {
padding: 15px;
}
.embed-container {
padding-bottom: 75%;
}
.footer-card {
display: block;
margin: 10px 0;
}
.intro-highlight {
padding: 20px;
}
}
@media (max-width: 480px) {
.grid-4 {
grid-template-columns: 1fr;
}
.size-card {
padding: 12px;
}
}
Tapete Feast Mat™ de West Paw® – Color Lavanda de Burbujas
Comedero Lento y Alfombrilla para Lamer 2-en-1
🚨 ¡Edición Limitada! 🚨
Una vez que se termina, ¡se termina! No te quedes sin el tuyo.
¡Convierte cada comida en una aventura llena de calma y diversión! El Tapete Feast Mat™ de West Paw® es un innovador 2-en-1: combina comedero lento y alfombrilla para lamer en un solo diseño reversible. Así, tu perro explora la comida a su ritmo, estimula su mente y reduce la ansiedad mientras disfruta de texturas y sabores tal como la naturaleza lo pensó.
¿Cómo Mejora la Vida de Tu Perro y la Tuya?
Video Demostrativo
Características Destacadas
Dos Caras de Entretenimiento
Slow Feeder para «cazar» croquetas y Lick Mat para untar mantequilla de maní, yogur o patés.
Engancha Cada Paladar
Ideal para comedores quisquillosos y para frenar a los «aspiradoras» de comida.
Base Antideslizante + Orificio para Colgar
Se mantiene firme y se guarda fácilmente. Combínalo con el tapete Seaflex® para contener migajas y salpicaduras.
Material Seaflex®
Mezcla de plástico reciclado de origen marino y Zogoflex® de residuo cero—sin BPA, ftalatos ni látex, y aprobado por la FDA.
Apto para Lavavajillas
Simplemente colócalo en la rejilla superior.
¿Sabías Que…?
Diseño Reversible = Diversión Doble
Feast Mat™ ofrece dos texturas contrastantes para duplicar la estimulación mental y sensorial.
Calma en Situaciones de Estrés
Presenta la cara de lamido durante tormentas, fuegos artificiales o visitas al veterinario para promover la relajación natural.
Medidas
Dimensiones
Ancho: 25.4 cm
Alto: 2.5 cm
Guía Rápida de Uso
- Extiende el tapete con el patrón deseado hacia arriba.
- Rellena surcos y cavidades con alimento seco, húmedo o premios.
- Para un reto extra, congélalo 1-2 horas y ofrece un Feast-Pop refrescante.
¡Haz que cada bocado sea una aventura sensorial mientras cuidas la salud digestiva y emocional de tu peludo!









Valoraciones
No hay valoraciones aún.