/* Electricangol - Equipamentos Industriais e Serviços */

:root {
  --color-navy: #1c1c1c;
  --color-navy-light: #2e2e2e;
  --color-steel: #5c5b58;
  --color-steel-light: #f7f5f1;
  --color-accent: #f2b705;
  --color-accent-dark: #cf9a00;
  --color-red: #d62828;
  --color-red-dark: #b31f1f;
  --color-text: #201f1d;
  --color-text-light: #ffffff;
  --max-width: 1180px;
  --radius: 6px;
  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

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

/* Header */
.site-header {
  background: var(--color-navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-light);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo .accent {
  color: var(--color-accent);
}

/* Menu trigger (header) */
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-light);
}

.menu-trigger-label {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  pointer-events: none;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-trigger[aria-expanded="true"] .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-trigger[aria-expanded="true"] .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-trigger[aria-expanded="true"] .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  z-index: 190;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease;
}

/* Drawer panel */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 200;
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s linear 0.55s;
}

.drawer.is-open {
  visibility: visible;
  transition: none;
}

.drawer-layer {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-layer-a {
  background: rgba(28, 28, 28, 0.94);
}

.drawer-layer-b {
  background: rgba(46, 46, 46, 0.85);
  transition-delay: 0.09s;
}

.drawer.is-open .drawer-layer {
  transform: translateX(0);
}

.drawer-content {
  position: relative;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: 0.16s;
}

.drawer.is-open .drawer-content {
  opacity: 1;
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 28px;
  right: 36px;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.drawer-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-content a {
  display: block;
  color: var(--color-text-light);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition);
}

.drawer-content a:hover,
.drawer-content a[aria-current="page"] {
  color: var(--color-accent);
}

body.menu-open {
  overflow: hidden;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: var(--color-text-light);
  padding: 96px 0;
  overflow: hidden;
}

.hero-video {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-video .container {
  max-width: none;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--color-accent);
}

.hero p {
  font-size: 1.15rem;
  color: #d7e0e8;
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.button-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-navy);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--color-text-light);
  color: var(--color-text-light);
}

.btn-outline:hover {
  background: var(--color-text-light);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--color-navy);
  color: var(--color-navy);
}

.btn-outline-dark:hover {
  background: var(--color-navy);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

/* Section generic */
.section {
  padding: 80px 0;
}

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

.section-header {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header .eyebrow {
  display: inline-block;
  color: var(--color-red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-navy);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-steel);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 28px;
}

.card {
  background: #ffffff;
  border: 1px solid #e4e8ec;
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--color-navy);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

.card h3 {
  color: var(--color-navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--color-steel);
  font-size: 0.96rem;
}

/* Why us / stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  justify-content: center;
  gap: 28px;
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-accent-dark);
}

.stat-label {
  color: var(--color-steel);
  font-weight: 600;
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  background: var(--color-navy);
  color: var(--color-text-light);
  padding: 56px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 20px;
}

/* Content pages (Sobre) */
.content-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.content-block h2 {
  color: var(--color-navy);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.content-block p + p {
  margin-top: 14px;
}

.value-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e4e8ec;
}

.value-list li:last-child {
  border-bottom: none;
}

.value-list strong {
  color: var(--color-navy);
  display: block;
}

.value-list p {
  color: var(--color-steel);
  font-size: 0.92rem;
}

.bullet {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Services timeline */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #e4e8ec;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: start;
  margin-bottom: 44px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  grid-column: 2;
  justify-self: center;
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px #ffffff;
}

.timeline-marker svg {
  width: 24px;
  height: 24px;
}

.timeline-content {
  grid-column: 1;
  text-align: right;
  padding-right: 48px;
  padding-top: 11px;
  min-width: 0;
}

.timeline-item-right .timeline-content {
  grid-column: 3;
  text-align: left;
  padding-right: 0;
  padding-left: 48px;
}

.timeline-content h3 {
  color: var(--color-navy);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--color-steel);
  font-size: 0.95rem;
}

@media (max-width: 780px) {
  .timeline::before {
    left: 26px;
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 52px 1fr;
    column-gap: 20px;
  }

  .timeline-marker {
    grid-column: 1;
    justify-self: start;
  }

  .timeline-content,
  .timeline-item-right .timeline-content {
    grid-column: 2;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #e4e8ec;
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-list strong {
  display: block;
  color: var(--color-navy);
}

.contact-info-list span {
  color: var(--color-steel);
  font-size: 0.95rem;
}

.placeholder {
  color: var(--color-accent-dark);
  font-style: italic;
}

form.contact-form {
  display: grid;
  gap: 18px;
  background: var(--color-steel-light);
  padding: 32px;
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.form-row input,
.form-row textarea {
  padding: 12px 14px;
  border: 1px solid #cfd7dd;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-steel);
}

/* Footer */
.site-footer {
  background: var(--color-navy);
  color: #c7d1da;
  padding: 36px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-grid h4 {
  color: var(--color-text-light);
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-logo {
  height: 72px;
  width: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-grid ul li {
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #8fa0ac;
}

/* Org chart */
.orgchart {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 12px 4px 4px;
}

.orgchart-inner {
  display: block;
  width: fit-content;
  flex-shrink: 0;
}

.orgchart ul {
  display: flex;
  justify-content: center;
  padding-top: 28px;
  position: relative;
  list-style: none;
  margin: 0;
}

.orgchart > ul {
  padding-top: 0;
}

.orgchart li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 14px 0;
  position: relative;
  list-style: none;
}

.orgchart li::before,
.orgchart li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  width: 50%;
  height: 28px;
  border-top: 2px solid #d7d2c8;
}

.orgchart li::after {
  right: auto;
  left: 50%;
  border-left: 2px solid #d7d2c8;
}

.orgchart li:only-child::before,
.orgchart li:only-child::after {
  display: none;
}

.orgchart li:only-child {
  padding-top: 0;
}

.orgchart li:first-child::before,
.orgchart li:last-child::after {
  border: none;
}

.orgchart li:last-child::before {
  border-right: 2px solid #d7d2c8;
  border-radius: 0 6px 0 0;
}

.orgchart li:first-child::after {
  border-radius: 6px 0 0 0;
}

.orgchart ul ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 28px;
  border-left: 2px solid #d7d2c8;
}

.orgchart-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 148px;
  background: #ffffff;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius);
  padding: 10px 16px;
  color: var(--color-navy);
}

.orgchart-node strong {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.orgchart-node small {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-steel);
  white-space: nowrap;
}

.orgchart-node-top {
  background: var(--color-navy);
  color: var(--color-text-light);
  border-color: var(--color-navy);
}

.orgchart-node-top small {
  color: #c7d1da;
}

.orgchart-node-accent {
  border-color: var(--color-accent-dark);
}

@media (max-width: 720px) {
  .orgchart-node {
    min-width: 122px;
    padding: 8px 12px;
  }

  .orgchart-node strong {
    font-size: 0.8rem;
  }

  .orgchart-node small {
    font-size: 0.66rem;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-navy);
  color: var(--color-text-light);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.3);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, background var(--transition), visibility 0s linear 0.35s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease, background var(--transition);
}

.back-to-top:hover {
  background: var(--color-accent);
  color: var(--color-navy);
}

/* Partners */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 30px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.partner-logo img {
  max-height: 52px;
  width: auto;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Articles carousel */
.carousel {
  position: relative;
  margin: 0 auto 64px;
}

.carousel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  width: 68%;
  height: 42px;
  background: radial-gradient(ellipse at center, rgba(28, 28, 28, 0.5) 0%, rgba(28, 28, 28, 0.26) 45%, rgba(28, 28, 28, 0) 75%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.carousel-track-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 14px 18px -12px rgba(28, 28, 28, 0.4);
}

.carousel-track {
  display: flex;
  list-style: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
  touch-action: pan-y;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide {
  flex: 0 0 100%;
  max-width: 100%;
  user-select: none;
}

.article-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  background: #ffffff;
  border: 1px solid #e4e8ec;
}

.article-image {
  overflow: hidden;
  background: var(--color-steel-light);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.article-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-date {
  display: inline-block;
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.article-body h3 {
  color: var(--color-navy);
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 14px;
}

.article-body p {
  color: var(--color-steel);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-text-light);
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background var(--transition), transform var(--transition);
}

.carousel-arrow:hover {
  background: var(--color-accent);
  color: var(--color-navy);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow-prev {
  left: -22px;
}

.carousel-arrow-next {
  right: -22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #d8d3cb;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.carousel-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.3);
}

.carousel-footer {
  text-align: center;
  margin-top: 12px;
}

/* Blog listing page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e4e8ec;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: 0 12px 28px rgba(28, 28, 28, 0.12);
  transform: translateY(-4px);
}

.blog-card-image {
  height: 190px;
  background: var(--color-steel-light);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.blog-card-body h3 {
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body p {
  color: var(--color-steel);
  font-size: 0.94rem;
}

/* Products page */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 280px));
  justify-content: center;
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e4e8ec;
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: 0 12px 28px rgba(28, 28, 28, 0.12);
  transform: translateY(-4px);
}

.product-card-image {
  height: 280px;
  background: var(--color-steel-light);
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.product-card-body h3 {
  color: var(--color-navy);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.product-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.product-card-link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 720px) {
  .article-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .article-image {
    height: 200px;
  }

  .article-body {
    padding: 28px 24px;
  }

  .carousel-arrow-prev {
    left: 4px;
  }

  .carousel-arrow-next {
    right: 4px;
  }
}

/* Responsive */
@media (max-width: 860px) {
  .content-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-trigger-label {
    display: none;
  }
}
