/* ========================================
   WILSON - CSS COMPLETO CON RESPONSIVE
   ======================================== */

/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ========== HEADER ========== */
header {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo img {
  width: 90px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #d32f2f;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-bar {
  display: flex;
  gap: 4px;
}

.search-bar input {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 180px;
  transition: border-color 0.3s;
}

.search-bar input:focus {
  outline: none;
  border-color: #d32f2f;
}

.search-bar button {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.search-bar button:hover {
  background: #b71c1c;
}

.distribuidor-btn {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95em;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.distribuidor-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* ========== HERO SECTION ========== */
.hero {
  background: #f5f5f5;
  padding: 80px 0;
  height: 500px;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: #d32f2f;
  color: white;
  padding: 9px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
  background: #b71c1c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ========== CATEGORÍAS ========== */
.categorias {
  padding: 40px 0;
  background: white;
}

.categorias .container {
  max-width: 1440px;
}

.categorias h2 {
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
}

.categorias-grid {
  display: flex;
  gap: 18px;
}

.categoria-item {
  width: 133px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.categoria-item:hover {
  transform: translateY(-8px);
}

.categoria-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: solid 1px;
  border-color: #b5b5b5;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.categoria-item:hover .categoria-circle {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.categoria-circle img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.3s;
}

.categoria-item:hover .categoria-circle img {
  transform: scale(1.1);
}

.categoria-item p {
  color: #333;
  font-weight: 500;
  font-size: 1em;
  text-align: center;
  margin: 0;
}

.categoria-item.ofertas .categoria-circle {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff3366 100%);
}

.categoria-item.ofertas:hover .categoria-circle {
  background: linear-gradient(135deg, #ff5285 0%, #ff1f52 100%);
}

.categoria-item.ofertas p {
  color: #ff3366;
  font-weight: 600;
}

/* ========== LÍNEAS DE BROCHAS ========== */
.lineas-brochas {
  padding: 20px 0;
  background: white;
}

.lineas-brochas .container {
  max-width: 1440px;
}

.lineas-brochas h2 {
  text-align: center;
  font-size: 2.5em;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
}

/* DESKTOP Y TABLET: Cards en fila horizontal */
.lineas-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.linea-card {
  background: white;
  width: 280px;
  height: 356px;
  border: 1px solid #BCBCBC;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.linea-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d32f2f;
}

.linea-card.active {
  border-color: #d32f2f;
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.2);
}

.linea-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.linea-image img {
  width: 260px;
  height: 226px;
  object-fit: contain;
  transition: transform 0.3s;
}

.linea-card:hover .linea-image img {
  transform: scale(1.05);
}

.linea-info {
  padding: 5px;
  text-align: start;
}

.linea-info h3 {
  font-size: 1.5em;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.linea-info p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
}

.btn-ver-detalles {
  width: 100%;
  background: white;
  color: #d32f2f;
  border: 2px solid #d32f2f;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-ver-detalles:hover {
  background: #d32f2f;
  color: white;
}

/* ========================================
   PANEL MÓVIL (Solo visible en móvil)
   - Cada card tiene su propio panel
   - Se despliega al hacer clic en "Ver Detalles"
   ======================================== */
.panel-mobile {
  display: none !important; /* Nunca visible en desktop/tablet */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 25px;
  background: #f9f9f9;
}

.imagen-mobile {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 25px;
  display: block;
}

.btn-ver-mas-mobile {
  display: block;
  width: 100%;
  background: #d32f2f;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  text-align: center;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-ver-mas-mobile:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* ========================================
   PANEL DESKTOP (Solo visible en desktop/tablet)
   - Panel único compartido debajo de las 3 cards
   - Se actualiza al hacer clic en cualquier card
   ======================================== */
.panel-detalles {
  display: block; /* Visible en desktop/tablet */
  background: white;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  position: relative;
  margin-top: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.panel-content {
  display: grid;
  grid-template-columns: 450px 1fr;
  min-height: 450px;
  padding: 40px;
  gap: 50px;
}

/* Columna de Imágenes */
.panel-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.imagen-principal {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 12px;
  padding: 20px;
}

.thumbnails-horizontal {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.thumbnail {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
  border: 3px solid #e0e0e0;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  padding: 8px;
}

.thumbnail:hover {
  border-color: #d32f2f;
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: #d32f2f;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* Columna de Información */
.panel-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-info h2 {
  font-size: 2.2em;
  font-weight: 700;
  color: #000;
  margin-bottom: 35px;
}

.caracteristicas {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 35px;
}

.caracteristica {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.caracteristica i {
  font-size: 2em;
  color: #000;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.caracteristica h4 {
  font-size: 1.2em;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.caracteristica p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

.btn-ver-mas-panel {
  display: inline-block;
  background: #d32f2f;
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  text-align: center;
  transition: all 0.3s;
  align-self: flex-start;
}

.btn-ver-mas-panel:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* ========== SECCIÓN BALDES ========== */
.lineas-baldes {
  padding: 20px 0;
  background: white;
}

.superior-baldes {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}

.balde-gal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.img-bal {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 16px;
}

.img-bal img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.img-bal img:hover {
  transform: scale(1.05);
}

.infor-balde {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.infor-balde h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.detalle-infor {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.detalle-infor img {
  width: 55px;
  height: 55px;
  padding: 12px;
  background: #fff5f5;
  border-radius: 12px;
  flex-shrink: 0;
}

.detalle-infor div h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.detalle-infor div p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

.inferior-baldes {
  max-width: 1440px;
  margin: 2px auto 0;
  padding: 0 20px;
}

.contenido-inferior {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  gap: 20px;
  justify-content: center;
}

.balde-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0;
  transition: all 0.3s;
  cursor: pointer;
  text-align: start;
  display: flex;
  flex-direction: column;
  height: 290px;
  width: 240px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.balde-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d32f2f;
}

.balde-card.destacado {
  border-color: #0066cc;
  border-width: 3px;
}

.balde-card.destacado:hover {
  border-color: #0052a3;
}

.balde-card-image {
  width: 100%;
  height: 197px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  padding: 20px;
  flex-shrink: 0;
}

.balde-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.balde-card:hover .balde-card-image img {
  transform: scale(1.1);
}

.balde-card-content {
  background: white;
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.balde-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.balde-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.imagen-derecha {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/bannerspro/resistentes.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  border-radius: 16px;
  min-height: 344px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.imagen-derecha:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========== SECCIÓN CANECAS ========== */
.lineas-canecas {
  padding: 20px 0;
  background: white;
}

.superior-canecas {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 10px;
}

.caneca-gal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.img-caneca {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 16px;
}

.img-caneca img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.img-caneca img:hover {
  transform: scale(1.05);
}

.infor-caneca {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.infor-caneca h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.thumbnails-canecas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.thumbnail-caneca {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
  border: 3px solid #e0e0e0;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  padding: 8px;
}

.thumbnail-caneca:hover {
  border-color: #d32f2f;
  transform: scale(1.05);
}

.thumbnail-caneca.active {
  border-color: #d32f2f;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.inferior-canecas {
  max-width: 1440px;
  margin: 2px auto 0;
  padding: 0 20px;
}

.contenido-inferior-canecas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.cards-container-canecas {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  gap: 10px;
  justify-content: center;
}

.caneca-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0;
  transition: all 0.3s;
  cursor: pointer;
  text-align: start;
  display: flex;
  flex-direction: column;
  height: 290px;
  width: 240px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.caneca-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d32f2f;
}

.caneca-card.destacado {
  border-color: #0066cc;
  border-width: 3px;
}

.caneca-card.destacado:hover {
  border-color: #0052a3;
}

.caneca-card-image {
  width: 100%;
  height: 197px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  padding: 20px;
  flex-shrink: 0;
}

.caneca-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

.caneca-card:hover .caneca-card-image img {
  transform: scale(1.1);
}

.caneca-card-content {
  background: white;
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.caneca-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.caneca-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.imagen-izquierda-canecas {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../img/bannerspro/CANECAS.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px;
  border-radius: 16px;
  min-height: 344px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}

.imagen-izquierda-canecas:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  padding: 20px;
  text-align: center;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.newsletter-container h2 {
  color: white;
  font-size: 1.3em;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
  flex: 1;
  max-width: 600px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.newsletter-input {
  width: 100%;
  padding: 12px 140px 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.95em;
  font-family: 'Poppins', sans-serif;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 48px;
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 24px;
  background: #333333;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 40px;
  z-index: 10;
}

.newsletter-btn:hover {
  background: #b71c1c;
  transform: translateY(-50%) scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-success {
  background: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  display: none;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== FOOTER ========== */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #d32f2f;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.6;
  font-size: 0.95em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95em;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #d32f2f;
  transform: translateX(3px);
}

.contact-info li {
  color: #b0b0b0;
  line-height: 1.8;
  font-size: 0.95em;
}

.contact-info a {
  color: #b0b0b0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  color: #b0b0b0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95em;
  transition: all 0.3s;
}

.social-links a i {
  font-size: 1.3em;
  width: 24px;
}

.social-links a:hover {
  color: #d32f2f;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  color: #808080;
  font-size: 0.9em;
  margin: 0;
}

/* ========== CATÁLOGO ========== */
main h1 {
  margin: 25px 0 15px;
  font-size: 2.2em;
  color: #222;
}

.catalog-container {
  display: flex;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.filters {
  width: 250px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.filters h3 {
  margin-bottom: 15px;
  font-size: 1.3em;
  color: #d32f2f;
}

.filter-group {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.filter-group:last-of-type {
  border-bottom: none;
}

.filter-group h4 {
  margin-bottom: 10px;
  font-size: 1em;
  color: #555;
  font-weight: 600;
}

.filter-group label {
  display: flex;
  align-items: center;
  margin: 8px 0;
  cursor: pointer;
  font-size: 0.95em;
  transition: color 0.2s;
}

.filter-group label:hover {
  color: #d32f2f;
}

.filter-group input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.clear-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #eee;
  color: #333;
  transition: background 0.3s;
}

.clear-btn:hover {
  background: #ddd;
}

.products {
  flex: 1;
  min-width: 300px;
}

.product-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  gap: 10px;
}

.results-count {
  font-size: 0.9em;
  color: #666;
  font-weight: 500;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-options label {
  font-size: 0.9em;
  color: #666;
}

.sort-options select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  background: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1em;
  margin: 12px 15px 8px;
  font-weight: 600;
  color: #222;
}

.product-card p {
  margin: 0 15px 6px;
  font-size: 0.85em;
  color: #666;
}

.product-info {
  padding: 0 15px 10px;
}

.marca-badge {
  display: inline-block;
  background: #f0f0f0;
  color: #d32f2f;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: 600;
  margin-bottom: 5px;
}

.tamano-badge {
  display: inline-block;
  background: #d32f2f;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: 600;
  margin-left: 5px;
}

.details-btn {
  display: block;
  width: calc(100% - 30px);
  margin: 10px 15px;
  padding: 10px;
  background: #d32f2f;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.details-btn:hover {
  background: #b71c1c;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px;
  border-top: 1px solid #eee;
  font-size: 1.2em;
}

.actions span {
  cursor: pointer;
  transition: transform 0.2s;
}

.actions span:hover {
  transform: scale(1.2);
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.no-results p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.close-modal:hover {
  color: #d32f2f;
}

.modal-content h2 {
  margin: 0 0 10px 0;
  color: #d32f2f;
  font-size: 1.8em;
}

.modal-subtitle {
  color: #666;
  margin-bottom: 25px;
  font-size: 0.95em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
  font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95em;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d32f2f;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.form-checkbox label {
  font-size: 0.9em;
  color: #666;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: #d32f2f;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #81c784;
}

.form-message.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #e57373;
}

 /* Estilos adicionales para la página de contacto */
    .contacto-hero {
      background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
      padding: 60px 0;
      text-align: center;
      color: white;
    }

    .contacto-hero h1 {
      font-size: 3em;
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .contacto-hero p {
      font-size: 1.2em;
      opacity: 0.95;
    }

    .contacto-contenido {
      padding: 60px 0;
    }

    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-bottom: 60px;
    }

    /* Tarjetas de información */
    .info-contacto {
      background: white;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .info-contacto h2 {
      font-size: 2em;
      font-weight: 700;
      color: #d32f2f;
      margin-bottom: 30px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
      padding-bottom: 25px;
      border-bottom: 1px solid #eee;
    }

    .info-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .info-icon {
      width: 50px;
      height: 50px;
      background: #fff5f5;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .info-icon i {
      font-size: 1.5em;
      color: #d32f2f;
    }

    .info-texto h3 {
      font-size: 1.1em;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
    }

    .info-texto p {
      color: #666;
      line-height: 1.6;
      margin: 0;
    }

    .info-texto a {
      color: #d32f2f;
      text-decoration: none;
      transition: color 0.3s;
    }

    .info-texto a:hover {
      color: #b71c1c;
      text-decoration: underline;
    }

    /* Formulario de contacto */
    .formulario-contacto {
      background: white;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .formulario-contacto h2 {
      font-size: 2em;
      font-weight: 700;
      color: #d32f2f;
      margin-bottom: 10px;
    }

    .formulario-contacto .subtitulo {
      color: #666;
      margin-bottom: 30px;
      font-size: 0.95em;
    }

    .form-group-contacto {
      margin-bottom: 20px;
    }

    .form-group-contacto label {
      display: block;
      margin-bottom: 8px;
      color: #333;
      font-weight: 500;
      font-size: 0.95em;
    }

    .form-group-contacto input,
    .form-group-contacto textarea,
    .form-group-contacto select {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 0.95em;
      font-family: 'Poppins', sans-serif;
      transition: border-color 0.3s;
    }

    .form-group-contacto input:focus,
    .form-group-contacto textarea:focus,
    .form-group-contacto select:focus {
      outline: none;
      border-color: #d32f2f;
    }

    .form-group-contacto textarea {
      resize: vertical;
      min-height: 120px;
    }

    .btn-enviar {
      width: 100%;
      background: #d32f2f;
      color: white;
      border: none;
      padding: 15px;
      border-radius: 8px;
      font-size: 1em;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 10px;
    }

    .btn-enviar:hover {
      background: #b71c1c;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    }

    .btn-enviar:disabled {
      background: #ccc;
      cursor: not-allowed;
      transform: none;
    }

    /* Mapa */
    .mapa-section {
      background: white;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 60px;
    }

    .mapa-section h2 {
      font-size: 2em;
      font-weight: 700;
      color: #d32f2f;
      margin-bottom: 20px;
      text-align: center;
    }

    .mapa-container {
      width: 100%;
      height: 450px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .mapa-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Horarios */
    .horarios-section {
      background: #f9f9f9;
      border-radius: 12px;
      padding: 30px;
      margin-top: 30px;
    }

    .horarios-section h3 {
      font-size: 1.3em;
      font-weight: 600;
      color: #333;
      margin-bottom: 15px;
    }

    .horario-item {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #e0e0e0;
    }

    .horario-item:last-child {
      border-bottom: none;
    }

    .horario-dia {
      font-weight: 500;
      color: #333;
    }

    .horario-hora {
      color: #666;
    }

    /* Mensajes de respuesta */
    .mensaje-respuesta {
      padding: 15px;
      border-radius: 8px;
      margin-top: 15px;
      display: none;
      text-align: center;
      font-weight: 500;
    }

    .mensaje-respuesta.exito {
      background: #e8f5e9;
      color: #2e7d32;
      border: 1px solid #81c784;
    }

    .mensaje-respuesta.error {
      background: #ffebee;
      color: #c62828;
      border: 1px solid #e57373;
    }


    
/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* TABLET (1024px) */
@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 15px;
  }

  header .container {
    gap: 12px;
  }

  .logo img {
    width: 75px;
  }

  nav ul {
    gap: 15px;
    font-size: 0.9em;
  }

  .search-bar input {
    width: 160px;
  }

  .hero {
    height: auto;
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .hero-image img {
    max-width: 450px;
  }

  .categorias h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  .categoria-circle {
    width: 120px;
    height: 120px;
  }

  .lineas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .panel-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .panel-images {
    order: 1;
  }

  .panel-info {
    order: 2;
  }

  .imagen-principal {
    height: 280px;
  }

  .thumbnails-horizontal {
    flex-wrap: wrap;
  }

  .thumbnail {
    width: 75px;
    height: 75px;
  }

  .balde-gal,
  .contenido-inferior,
  .caneca-gal,
  .contenido-inferior-canecas {
    gap: 30px;
  }

  .img-bal,
  .imagen-derecha,
  .img-caneca,
  .imagen-izquierda-canecas {
    padding: 30px;
  }

  .infor-balde h2,
  .infor-caneca h2 {
    font-size: 2em;
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }
}



/* MÓVIL (768px) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1, h2, h3 {
    line-height: 1.3;
  }

  /* Header móvil */
  header {
    padding: 10px 0;
  }

  header .container {
    flex-direction: column;
    gap: 12px;
    padding: 10px;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .logo img {
    width: 80px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85em;
  }

  nav a {
    padding: 5px 10px;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .search-bar {
    width: 100%;
  }

  .search-bar input {
    width: 100%;
    font-size: 0.9em;
  }

  .distribuidor-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9em;
  }

  /* Hero móvil */
  .hero {
    height: auto;
    padding: 30px 0;
  }

  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 25px;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .hero-image img {
    max-width: 100%;
    width: 300px;
  }

  .btn-primary {
    padding: 12px 30px;
    font-size: 0.95em;
  }

  /* Categorías scroll horizontal */
  .categorias {
    padding: 30px 0;
  }

  .categorias h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    padding: 0 20px;
  }

  .categorias-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 15px;
    padding: 10px 20px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .categorias-grid::-webkit-scrollbar {
    display: none;
  }

  .categoria-item {
    flex: 0 0 auto;
    width: 100px;
    scroll-snap-align: start;
  }

  .categoria-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .categoria-item p {
    font-size: 0.8em;
  }

  /* Líneas de Brochas móvil */
  .lineas-brochas {
    padding: 30px 0;
  }

  .lineas-brochas h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .lineas-grid {
    flex-direction: column; /* Cards en columna vertical */
    align-items: center;
    gap: 15px;
  }

  .linea-card {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .linea-image {
    height: 200px;
    padding: 20px;
  }

  .linea-image img {
    width: 200px;
    height: 180px;
  }

  .linea-info {
    padding: 15px;
  }

  .linea-info h3 {
    font-size: 1.2em;
  }

  .linea-info p {
    font-size: 0.85em;
  }

  /* MOBILE: Ocultar panel desktop y mostrar panel mobile colapsable */
  .panel-detalles {
    display: none !important; /* Oculto completamente en móvil */
  }

  .panel-mobile {
    display: none !important; /* Por defecto oculto */
  }

  .linea-card.active .panel-mobile {
    display: block !important; /* Visible cuando la card está activa */
    max-height: 1500px;
    padding: 20px;
  }

  .imagen-mobile {
    max-width: 220px;
    margin-bottom: 20px;
  }

  .caracteristicas {
    gap: 18px;
    margin-bottom: 20px;
  }

  .caracteristica {
    gap: 12px;
  }

  .caracteristica i {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
  }

  .caracteristica h4 {
    font-size: 1em;
  }

  .caracteristica p {
    font-size: 0.85em;
  }

  /* Baldes móvil */
  .lineas-baldes {
    padding: 30px 0;
  }

  .balde-gal {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .img-bal {
    padding: 20px;
  }

  .img-bal img {
    max-width: 250px;
  }

  .infor-balde h2 {
    font-size: 1.6em;
    text-align: center;
    margin-bottom: 20px;
  }

  .infor-balde .caracteristicas {
    gap: 15px;
  }

  .thumbnails-horizontal {
    flex-wrap: wrap;
    gap: 8px;
  }

  .thumbnail {
    width: 65px;
    height: 65px;
  }

  .inferior-baldes {
    margin-top: 30px;
  }

  .contenido-inferior {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 15px;
    order: 1;
  }

  .imagen-derecha {
    order: 2;
    min-height: 250px;
    padding: 20px;
  }

  .balde-card {
    width: 100%;
    height: auto;
  }

  /* Canecas móvil */
  .lineas-canecas {
    padding: 30px 0;
  }

  .caneca-gal {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .img-caneca {
    padding: 20px;
    order: 2;
  }

  .img-caneca img {
    max-width: 250px;
  }

  .infor-caneca {
    order: 1;
  }

  .infor-caneca h2 {
    font-size: 1.6em;
    text-align: center;
    margin-bottom: 20px;
  }

  .thumbnails-canecas {
    flex-wrap: wrap;
    gap: 8px;
  }

  .thumbnail-caneca {
    width: 65px;
    height: 65px;
  }

  .contenido-inferior-canecas {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .imagen-izquierda-canecas {
    order: 1;
    min-height: 250px;
    padding: 20px;
  }

  .cards-container-canecas {
    grid-template-columns: 1fr;
    gap: 15px;
    order: 2;
  }

  .caneca-card {
    width: 100%;
    height: auto;
  }

  /* Newsletter móvil */
  .newsletter-section {
    height: auto;
    padding: 20px 15px;
  }

  .newsletter-container {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-container h2 {
    font-size: 1em;
    white-space: normal;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-input {
    font-size: 0.85em;
    padding: 10px 110px 10px 12px;
    height: 42px;
  }

  .newsletter-btn {
    font-size: 0.8em;
    padding: 8px 16px;
    height: 34px;
  }

  /* Footer móvil */
  .footer {
    padding: 30px 15px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-column h3 {
    font-size: 1.1em;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .social-links {
    align-items: center;
  }

  .footer-bottom p {
    font-size: 0.85em;
  }

  /* Catálogo móvil */
  main h1 {
    font-size: 1.6em;
    margin: 15px 0;
  }

  .catalog-container {
    flex-direction: column;
  }

  .filters {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card img {
    height: 180px;
  }

  .product-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-options {
    width: 100%;
  }

  .sort-options select {
    width: 100%;
  }

  /* Modal móvil */
  .modal-content {
    padding: 20px;
    width: 95%;
    max-height: 85vh;
  }

  .modal-content h2 {
    font-size: 1.4em;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .close-modal {
    font-size: 24px;
    right: 15px;
    top: 15px;
  }

  .contacto-hero h1 {
        font-size: 2em;
      }

      .contacto-hero p {
        font-size: 1em;
      }

      .contacto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .info-contacto,
      .formulario-contacto {
        padding: 25px;
      }

      .info-contacto h2,
      .formulario-contacto h2 {
        font-size: 1.5em;
      }

      .mapa-container {
        height: 300px;
      }
}

/* MÓVIL PEQUEÑO (480px) */
@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .logo img {
    width: 70px;
  }

  nav ul {
    font-size: 0.8em;
    gap: 8px;
  }

  .hero-content h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .hero-image img {
    width: 250px;
  }

  .btn-primary {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .categorias h2 {
    font-size: 1.5em;
  }

  .categoria-circle {
    width: 90px;
    height: 90px;
  }

  .categoria-item {
    width: 90px;
  }

  .categoria-item p {
    font-size: 0.75em;
  }

  .lineas-brochas h2,
  .infor-balde h2,
  .infor-caneca h2 {
    font-size: 1.5em;
  }

  .linea-image {
    height: 180px;
    padding: 15px;
  }

  .linea-image img {
    width: 180px;
    height: 160px;
  }

  .linea-info h3 {
    font-size: 1.1em;
  }

  .linea-info p {
    font-size: 0.8em;
  }

  .balde-card,
  .caneca-card {
    height: auto;
  }

  .balde-card-image,
  .caneca-card-image {
    height: 160px;
  }

  .balde-card h3,
  .caneca-card h3 {
    font-size: 0.95em;
  }

  .newsletter-container h2 {
    font-size: 0.9em;
  }

  .newsletter-input {
    font-size: 0.8em;
    padding: 8px 100px 8px 10px;
    height: 38px;
  }

  .newsletter-btn {
    font-size: 0.75em;
    padding: 6px 12px;
    height: 30px;
  }

  .footer-column h3 {
    font-size: 1em;
  }

  .footer-description,
  .footer-column ul li a,
  .contact-info li {
    font-size: 0.85em;
  }

  .modal-content {
    padding: 15px;
  }

  .modal-content h2 {
    font-size: 1.2em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9em;
  }

  .contacto-hero {
        padding: 40px 0;
      }

      .contacto-hero h1 {
        font-size: 1.6em;
      }

      .info-contacto,
      .formulario-contacto,
      .mapa-section {
        padding: 20px;
      }

      .info-item {
        gap: 15px;
      }

      .info-icon {
        width: 45px;
        height: 45px;
      }
}




/* LANDSCAPE MÓVIL */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 20px 0;
  }

  .hero-container {
    flex-direction: row;
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-image img {
    max-width: 250px;
  }
}

/* TOUCH TARGETS */
@media (max-width: 768px) {
  button,
  a,
  input,
  select {
    min-height: 44px;
  }

  .btn-primary,
  .distribuidor-btn,
  .submit-btn,
  .details-btn {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}