/* ===== FONTS ===== */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/raleway/raleway-variable.woff2') format('woff2');
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10001;
  font-weight: 700;
  border-radius: 0 0 4px 4px;
  font-family: 'Raleway', sans-serif;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: #444;
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== VARIABLES ===== */
:root {
  --primary: #f2a812;
  --dark: #1A202C;
  --black: #000;
  --white: #fff;
  --light-bg: #f9f9f9;
  --gray: #718096;
  --text: #444;
  --max-width: 1200px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top bar (social icons) */
.top-bar {
  background: var(--black);
  padding: 6px 20px;
}

.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.top-bar-social {
  display: flex;
  gap: 14px;
}

.top-bar-social a {
  color: var(--white);
  transition: color 0.3s;
}

.top-bar-social a:hover {
  color: var(--primary);
}

.top-bar-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Main nav bar */
.nav-bar {
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}

.logo {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 2.4rem;
  color: #0a0a0a;
  letter-spacing: 1px;
  line-height: 1;
}

.logo a {
  color: #0a0a0a;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > li {
  position: relative;
}

.nav > li > a {
  display: block;
  padding: 10px 12px;
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav > li > a:hover,
.nav > li > a.active {
  color: var(--primary);
}

/* Dropdown indicator */
.has-dropdown > a::after {
  content: ' \25BE';
  font-size: 0.7em;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  z-index: 100;
  border-top: 3px solid var(--primary);
}

.nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #555;
  font-size: 0.9rem;
  transition: all 0.3s;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown li a:hover {
  color: var(--primary);
  background: #fafafa;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #333;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO CAROUSEL ===== */
.hero {
  position: relative;
  overflow: hidden;
  height: 60vh;
  min-height: 400px;
  max-height: 740px;
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dot.active {
  background: var(--primary);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.hero-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ===== SECTIONS ===== */
.section {
  padding: 80px 20px;
}

.section--alt {
  background: var(--light-bg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

/* ===== ABOUT INTRO ===== */
.about-intro {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.about-intro p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.9;
}

.about-intro strong {
  color: var(--dark);
}

/* ===== ABOUT GRID (2x2 with icons) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fef7e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  stroke: none;
}

.about-item-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.about-item-content p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: -10px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: 10px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card--featured {
  grid-column: 1 / -1;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  fill: var(--primary);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin: 0;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.service-card-extra {
  margin-top: 12px !important;
  font-style: italic;
  font-size: 0.88rem !important;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.service-tags span {
  display: inline-block;
  padding: 5px 14px;
  background: #fef7e6;
  color: var(--dark);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(242, 168, 18, 0.25);
}

/* ===== ELECTROLUX BADGE (overlay on hero) ===== */
.electrolux-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: var(--white);
  padding: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.electrolux-badge img {
  height: 150px;
  width: auto;
}

/* ===== CTA / CONTACT ===== */
.cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cta a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.page-header h1 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 60px 20px;
}

.page-content .container {
  max-width: 900px;
}

.page-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

/* ===== PAGE CTA ===== */
.page-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, #2D3748 100%);
  text-align: center;
  color: var(--white);
}

.page-cta .container {
  max-width: 700px;
}

.page-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.page-cta p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 28px;
}

.page-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.page-cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-cta-buttons .btn-primary {
  background: var(--primary);
  color: var(--dark);
}

.page-cta-buttons .btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.page-cta-buttons .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.page-cta-buttons .btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ===== GALLERY / CAROUSEL ===== */
.gallery {
  padding: 40px 20px 80px;
}

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  aspect-ratio: 4/3;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(242, 168, 18, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: #ccc;
  padding: 50px 20px 20px;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col a {
  color: var(--primary);
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 0.8;
}

.footer-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #a0a0a0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: #b0b0b0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 30px 0 12px;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--primary);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  padding: 16px 20px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0,0,0,0.8);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.gallery-item {
  cursor: pointer;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  font-size: 0.9rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  max-width: 700px;
}

.cookie-banner a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-btn {
  padding: 8px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn--accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-btn--reject {
  background: transparent;
  color: #999;
  border: 1px solid #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1000;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
    z-index: 999;
    padding-top: 70px;
  }

  .nav-wrapper.open {
    transform: translateX(0);
  }

  .nav {
    flex-direction: column;
    padding: 20px;
    gap: 0;
    align-items: stretch;
  }

  .nav > li > a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    text-align: center;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    display: none;
    padding-left: 16px;
  }

  .dropdown.open {
    display: block;
  }

  .hero {
    height: 40vh;
    min-height: 450px;
  }

  .electrolux-badge {
    display: none;
  }

  .section {
    padding: 50px 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .page-header {
    height: 280px;
  }

  .page-header h1 {
    font-size: 1.6rem;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-breadcrumb { font-size: 0.75rem; bottom: 12px; left: 16px; }
  .page-faq { padding: 40px 16px; }
  .faq-item summary { font-size: 0.95rem; padding: 16px 32px 16px 0; }
  .page-content h2 { font-size: 1.25rem; }

  .services-grid {
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-col p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .novedades-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 10px 12px;
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .electrolux-badge img {
    height: 70px;
  }

  .page-breadcrumb { display: none; }
  .page-faq h2 { font-size: 1.3rem; }
}

/* ===== NOVEDADES GRID ===== */
.novedades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.novedad-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.novedad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.novedad-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.novedad-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.novedad-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.novedad-card-body p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

.novedad-card-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.novedad-card:hover .novedad-card-cta {
  text-decoration: underline;
}

/* ===== ARTICLE PAGE ===== */
.article-content {
  padding: 60px 20px;
}

.article-content .container {
  max-width: 800px;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

.article-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 16px;
}

.article-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin: 30px 0 12px;
}

.article-content ul {
  margin: 0 0 20px 20px;
  color: var(--text);
  line-height: 1.8;
}

.article-content li {
  margin-bottom: 6px;
}

.article-content img {
  width: 100%;
  border-radius: 8px;
  margin: 20px 0;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 30px;
}

.article-back:hover {
  text-decoration: underline;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-slides {
    transition: none;
  }
}

/* ===== PRINT ===== */
@media print {
  .header, .footer, .cookie-banner, .hero-arrow, .hero-nav, .lightbox, .skip-link, .electrolux-badge {
    display: none !important;
  }

  .hero {
    height: auto;
    max-height: 300px;
  }

  .page-header {
    height: auto;
  }

  body {
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    padding: 20px 0;
  }
}

/* ===== FASE 1: HERO OVERLAY ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,32,44,0.85) 0%, rgba(26,32,44,0.45) 55%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 6;
  padding: 0 48px 0 72px;
  max-width: 600px;
}

.hero-supertitle {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: all;
  cursor: pointer;
}

.hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-cta--whatsapp {
  background: #25D366;
  color: var(--white);
}

.hero-cta--phone {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 24px;
    left: 0;
    right: 0;
    max-width: 100%;
    text-align: center;
  }
  .hero-overlay {
    background: rgba(26,32,44,0.65);
  }
  .hero-ctas {
    justify-content: center;
  }
}

/* ===== FASE 1: WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 75px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-fab__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}

.whatsapp-fab__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,0.55);
}

.whatsapp-fab__btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.whatsapp-fab__tooltip {
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  position: relative;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.whatsapp-fab__tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid var(--dark);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.whatsapp-fab__tooltip.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 480px) {
  .whatsapp-fab {
    bottom: 70px;
    right: 16px;
  }
}

@media print {
  .whatsapp-fab { display: none !important; }
}

/* ===== FASE 1: TOP-BAR PHONE ===== */
.top-bar-phone {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
  text-decoration: none;
}

.top-bar-phone:hover {
  color: var(--primary);
}

.top-bar-phone svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar-inner {
  justify-content: space-between;
}

@media (max-width: 480px) {
  .top-bar-phone span {
    display: none;
  }
}

/* ===== FASE 1: STATS SECTION ===== */
.stats-section {
  background: var(--dark);
  padding: 60px 20px;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 20px;
  }
}

/* ===== FASE 1: BRANDS MARQUEE ===== */
.brands-section {
  background: var(--light-bg);
  padding: 40px 0;
  overflow: hidden;
}

.brands-section__title {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.brands-marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: brands-scroll 30s linear infinite;
}

.brands-marquee__inner {
  display: flex;
  gap: 16px;
}

.brand-pill {
  background: var(--white);
  color: #4a5568;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 40px;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}

@keyframes brands-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee {
    animation-play-state: paused;
  }
}

/* ===== FASE 1: SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 500ms; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== FASE 1: NEW FOOTER ===== */
/* Replace existing footer styles — new 4-column layout */
.footer {
  background: var(--dark);
  color: #a0aec0;
  padding: 56px 20px 0;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand__logo {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.footer-brand__logo span {
  color: var(--primary);
}

.footer-brand__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social-icon:hover {
  background: var(--primary);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-col__title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: #a0aec0;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-contact__item svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact__item a {
  color: var(--primary);
  transition: opacity 0.2s;
}

.footer-contact__item a:hover {
  opacity: 0.8;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #718096;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #718096;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media print {
  .footer { display: none !important; }
}

/* ===== FASE 2 — BREADCRUMB ===== */
.page-breadcrumb {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 3;
  font-size: 0.85rem;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.page-breadcrumb a:hover {
  text-decoration: underline;
  color: #fff;
}
.page-breadcrumb .breadcrumb-sep {
  color: rgba(255,255,255,0.5);
  margin: 0 6px;
}
.page-breadcrumb .breadcrumb-current {
  color: #fff;
}

/* ===== FASE 2 — CONTENT STRUCTURE ===== */
.page-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 16px;
  position: relative;
  padding-bottom: 12px;
}
.page-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}
.page-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.7;
}
.page-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
}

/* ===== FASE 2 — FAQ ACCORDION ===== */
.page-faq {
  padding: 60px 20px;
  background: var(--light-bg, #f7f8fa);
}
.page-faq .container {
  max-width: 900px;
  margin: 0 auto;
}
.page-faq h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 32px;
  color: var(--dark);
}
.faq-item {
  border-bottom: 1px solid #e2e8f0;
}
.faq-item:first-of-type {
  border-top: 1px solid #e2e8f0;
}
.faq-item summary {
  padding: 20px 40px 20px 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--dark);
  line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item .faq-answer {
  padding: 0 40px 20px 0;
  line-height: 1.7;
  color: var(--text, #4a5568);
}
.faq-item .faq-answer p {
  margin: 0;
}

/* ===== VIDEO EMBED ===== */
.video-embed {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  aspect-ratio: 16 / 9;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
