/* --- Mejoras de responsividad global --- */
@media (max-width: 900px) {
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .main-nav a {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1rem;
  }
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 8px;
    height: auto;
  }
  .logo-header .logo {
    width: 48px;
    margin-bottom: 0;
    margin-right: 8px;
    order: 1;
  }
  .search-bar {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    flex: 2;
    order: 2;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    justify-content: center;
  }
  .nav-toggle {
    order: 3;
  }
  .productos-title,
  h2,
  h3,
  .slide-caption h3,
  .slide-caption p,
  .main-nav a,
  .search-input {
    font-size: 1rem !important;
  }
}
@media (max-width: 600px) {
  .productos-title {
    font-size: 1.2rem;
    padding-top: 8px;
  }
  .slider-container {
    height: 160px;
    min-height: 120px;
    margin-top: 16px;
    position: static;
    z-index: 1;
  }
  .search-bar {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    flex: 2;
    order: 2;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    justify-content: center;
  }
  .search-input-wrapper {
    width: 100%;
  }
  .productos-title,
  h2,
  h3,
  .slide-caption h3,
  .slide-caption p,
  .main-nav a,
  .search-input {
    font-size: 1.15rem !important;
  }
}
/* Botón de compra por WhatsApp en ver producto */
.producto-link {
  width: 100%;
  max-width: 260px;
  background: #6ea771;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
  border: none;
  padding: 12px 0;
  margin: 18px auto 2px auto;
  font-size: 1.08rem;
  display: block;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0.92;
}
.producto-link:hover {
  background: #558c5a;
  opacity: 1;
}
.productos-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 18px auto;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  color: #011e41; 
  box-sizing: border-box;
  
}
/* Centrado y estilo para el título principal de productos */
.productos-title {
  display: block;
  margin: 0 auto 30px auto;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  color: #011e41; 
      font-style: normal;
    font-weight: 350;
    padding-top: 50px;
    
}

/* Botón hamburguesa para menú responsivo */
/* Menú hamburguesa mínimo */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 45px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  background: #fff !important;
  margin: 6px 0;
  border-radius: 2px;
  transition: background 0.2s;
}
@media (max-width: 900px) {
  .nav-toggle {
    width: 40px;
    height: 44px;
  }
  .nav-toggle span {
    width: 28px;
    height: 2px;
    margin: 0;
    background: #fff !important;
    box-shadow: none;
  }
}
@media (max-width: 600px) {
  .nav-toggle {
    width: 32px;
    height: 36px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    margin: 0;
    background: #fff !important;
    box-shadow: none;
  }
}
@media (max-width: 700px) {
  .nav-toggle span {
    background: #005fa3;
    margin: 2px 0;
    height: 3px;
    width: 24px;
  }
}
/* Menú de navegación principal */
/* Menú responsivo moderno */
/* Menú mínimo */
.main-nav {
  background: #fff;
  width: 100vw;
  box-shadow: none;
  z-index: 1000;
  border-radius: 0;
  display: block;
  position: static;
}
.main-nav.open {
  display: block;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li {
  border-bottom: none;
}
.main-nav a {
  display: block;
  padding: 18px 24px;
  color: #222;
  text-decoration: none !important;
  font-size: 0.95rem;
  font-family: "Electrolux Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.18em;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover {
  background: #e0e7ef;
  color: #005fa3;
  text-decoration: none !important;
}
@media (max-width: 700px) {
  .nav-toggle {
    display: flex !important;
  }
  .main-nav {
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 1000;
    border-radius: 0 0 16px 16px;
    display: none;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
  }
  .main-nav li {
    border-bottom: 1px solid #eee;
  }
  .main-nav a {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1rem;
    background: transparent;
  }
  .nav-toggle span {
    background: #005fa3;
    margin: 2px 0;
    height: 3px;
    width: 24px;
  }
}
/* --- FIN MENÚ RESPONSIVO --- */
.logo-header {
    width: 100vw;
    background: #001f3f;
    padding: 0;
    margin-left: calc(-50vw + 50%);
}
/* Topbar estilo Electrolux */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 64px;
    cursor: pointer;
    height: 40px;
    border-radius: 0 6px 6px 0;
}

.search-icon {
    display: block;
    margin: 0;
    height: 24px;
    width: 24px;
    opacity: 1;
    color: #c7c7c7;
    stroke: #a7a7a7;
}
.search-icon-right {
    position: static;
}
.actions {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 14px;
    color: #fff;
}
.logo-header .logo {
    width: 87px;
    display: block;
    margin-left: 0;
}
.search-bar {
    display: flex;
    
    margin-left: auto;
    flex: 0 1 420px;
    max-width: 420px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 4px 16px rgba(10,35,66,0.10);
    border: 1px solid #e0e0e0;
    padding: 0 12px 0 12px;
    height: 44px;
    min-height: 44px;
}
/* Wrapper para input y lupa */
.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}
.search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}
.search-icon-right {
    right: 16px;
    left: auto;
}
.search-input {
    padding: 0 40px 0 0;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: #959494;
    height: 44px;
}
.search-input::placeholder {
    color: #dcdada;
    opacity: 1;
}
.search-btn {
    padding: 0 4px;
    border: none;
    background: transparent;
    color: #0077c2;
    cursor: pointer;
    transition: color 0.2s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 0;
    margin-top: 0;
}
.search-btn svg {
    display: block;
    margin: 0 auto;
    height: 24px;
    width: 24px;
}

.search-btn:hover {
    color: #005fa3;
}

.main-content {
    margin: 0 auto;
    max-width: 900px;
    padding-top: 32px;
}
.main-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #222;
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #ffffff;
    margin: 0;
    color: #222;
}
.main-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(10,35,66,0.08);
    padding: 32px 0 16px 0;
    text-align: center;
}
.logo {
    width: 120px;
    margin-bottom: 12px;
}
nav a {
    margin: 0 18px;
    color: #0077c2;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}
nav a:hover {
    text-decoration: underline;
}
.main-section {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(10,35,66,0.06);
    padding: 32px;
}
.main-section h2 {
    font-size: 1.6rem;
    color: #0077c2;
    margin-bottom: 18px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
input, textarea {
    padding: 10px;
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    font-size: 1rem;
}
button {
    background: #0077c2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

button.nav-toggle {
  background: none !important;
  color: inherit !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin-top: 5px;
}
.main-footer {
    text-align: center;
    padding: 24px 0;
    background: #fff;
    color: #888;
    font-size: 0.95rem;
    margin-top: 40px;
}
/* --- Eliminar estilos slider del principal.css --- */
/* Los estilos del slider deben estar en slider.css, no aquí. */
@media (max-width: 900px) {
  .social-left,
  .social-video {
    width: auto;
    max-width: 100vw;
    margin: 0 auto 16px auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social-video {
    padding: 0;
    margin: 0 auto;
    width: fit-content;
    max-width: 480px;
  }
  .social-video iframe {
    width: 90vw;
    max-width: 480px;
    aspect-ratio: 16/9;
    height: auto !important;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .social-left,
  .social-video {
    width: auto;
    max-width: 100vw;
    margin: 0 auto 12px auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social-video {
    padding: 0;
    margin: 0 auto;
    width: fit-content;
    max-width: 340px;
  }
  .social-video iframe {
    width: 98vw;
    max-width: 340px;
    aspect-ratio: 16/9;
    height: auto !important;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media (max-width: 900px) {
  .search-bar {
    height: 36px;
    min-height: 36px;
    font-size: 0.98rem;
    padding: 0 6px;
  }
  .search-input {
    height: 36px;
    font-size: 0.98rem;
    padding: 0 32px 0 0;
  }
  .search-btn {
    height: 36px;
    width: 36px;
  }
  .search-btn svg {
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 600px) {
  .search-bar {
    height: 30px;
    min-height: 30px;
    font-size: 0.92rem;
    padding: 0 2px;
    text-align: center;
  }
  .search-input {
    height: 30px;
    font-size: 0.92rem;
    padding: 0 28px 0 0;
  }
  .search-btn {
    height: 30px;
    width: 30px;
  }
  .search-btn svg {
    height: 16px;
    width: 16px;
  }
}
@media (max-width: 900px) {
  .search-input::placeholder {
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .search-input::placeholder {
    font-size: 0.92rem;
  }
}
@media (max-width: 700px) {
  .logo-header .logo {
    width: 90px;
    height: 41px;
    min-width: 32px;
    margin-left: 0;
    margin-right: 8px;
    display: block;
    object-fit: contain;
    padding: 10px;
  }
  .topbar {
    padding-left: 0;
  }
}
