/*
Theme Name: Triunfante Premium
*/

:root {
  --bg: #f8fafc;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-strong: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.85);
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --primary: #dc2626;
  --primary-hover: #b91c1c;
  --primary-light: #fecaca;
  --secondary: #f59e0b;
  --secondary-hover: #d97706;
  --accent: #f1f5f9;
  --accent-soft: #fef2f2;
  --border: rgba(226, 232, 240, 0.8);
  --border-hover: rgba(203, 213, 225, 0.9);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(220, 38, 38, 0.15);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(220, 38, 38, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(245, 158, 11, 0.06), transparent),
    linear-gradient(135deg, #fefefe 0%, #f8fafc 50%, #fef2f2 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 0 1rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 80px;
  padding: 1rem 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  transition: var(--transition-fast);
}

.brand:hover {
  transform: scale(1.02);
}

.brand__logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand a,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand__logo,
.custom-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 82px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-menu a:hover::before {
  left: 100%;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a,
.nav-menu .current_page_item a,
.nav-menu .current-menu-ancestor a {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.header-badges {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.header-badges span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c8c8c8;
}

.social-links {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--primary);
  transition: transform 0.25s ease, color 0.25s ease;
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--primary-strong);
  transform: translateY(-2px);
  background: rgba(214, 0, 3, 0.08);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(214, 0, 3, 0.18);
  border-radius: 14px;
  background: rgba(214, 0, 3, 0.04);
  cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.hero {
  position: relative;
  padding: 28px 0 48px;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  min-height: 680px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 36px 70px rgba(80, 24, 24, 0.2);
}

.hero-carousel__track {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.eyebrow,
.section-tag,
.hero-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.eyebrow,
.section-tag {
  color: var(--primary);
}

.hero h1,
.section h2 {
  margin: 16px 0 0;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  max-width: 9ch;
  color: #fff;
}

.hero p {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-banner__image,
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-banner__image {
  object-fit: cover;
}

.hero-banner__overlay {
  background:
    linear-gradient(90deg, rgba(18, 9, 9, 0.72) 0%, rgba(18, 9, 9, 0.28) 42%, rgba(18, 9, 9, 0.18) 100%),
    linear-gradient(180deg, rgba(214, 0, 3, 0.08), rgba(214, 0, 3, 0.2));
}

.hero-banner__content {
  position: absolute;
  left: 48px;
  bottom: 138px;
  z-index: 2;
  max-width: 620px;
}

.hero-banner__content .eyebrow {
  color: var(--accent);
}

.hero-banner__content strong {
  color: var(--accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-carousel__control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(18, 9, 9, 0.36);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.hero-carousel__control:hover {
  background: rgba(220, 38, 38, 0.82);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-carousel__control--prev {
  left: 20px;
}

.hero-carousel__control--next {
  right: 20px;
}

.hero-carousel__control span {
  font-size: 1.35rem;
  line-height: 1;
}

.hero-carousel__dots {
  position: absolute;
  left: 48px;
  bottom: 108px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-carousel__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-carousel__dot.is-active {
  width: 34px;
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  outline: none;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button:active {
  transform: translateY(0);
  transition: var(--transition-fast);
}

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  box-shadow: var(--shadow), var(--shadow-glow);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(220, 38, 38, 0.25);
}

.button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.button--outline {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  box-shadow: none;
}

.button--outline:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.hero__metrics {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-strong);
}

.metric span {
  color: var(--muted);
  font-size: 0.96rem;
}

.section {
  padding: 42px 0 96px;
}

.contact-page {
  padding: 30px 0 80px;
}

.ethics-page {
  padding: 44px 0 84px;
}

.ethics-section {
  padding: 26px 0 72px;
}

.ethics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 40px;
  align-items: start;
}

.ethics-content {
  display: grid;
  gap: 28px;
  padding-top: 14px;
}

.ethics-content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.ethics-content p,
.ethics-card p,
.ethics-card li {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.6;
}

.ethics-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.ethics-link:hover {
  color: var(--primary-hover);
}

.ethics-card {
  display: grid;
  gap: 42px;
  padding: 40px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(220, 38, 38, 0.08), rgba(255, 255, 255, 0.95)),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 38, 38, 0.12);
  box-shadow: var(--shadow-lg);
}

.ethics-card__block {
  display: grid;
  gap: 18px;
}

.ethics-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.ethics-card ul {
  margin: 0;
  padding-left: 28px;
  display: grid;
  gap: 14px;
}

.ethics-card li::marker {
  color: var(--primary);
}

.suppliers-page {
  padding: 30px 0 90px;
}

.suppliers-hero {
  padding: 12px 0 18px;
}

.suppliers-hero__content {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px;
  text-align: center;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(214, 0, 3, 0.08), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.suppliers-hero__image {
  width: min(100%, 520px);
  height: auto;
}

.suppliers-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.suppliers-hero__copy {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.suppliers-section {
  padding-top: 8px;
}

.products-services-page {
  padding: 30px 0 90px;
}

.products-hero {
  padding: 12px 0 18px;
}

.products-hero__content {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px;
  text-align: center;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(214, 0, 3, 0.08), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.products-hero__image {
  width: min(100%, 520px);
  height: auto;
}

.products-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.products-hero__copy {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.products-section {
  padding-top: 18px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.1);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.units-page {
  padding: 30px 0 90px;
}

.units-hero {
  padding: 12px 0 18px;
}

.units-hero__content {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 34px;
  text-align: center;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(214, 0, 3, 0.08), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.units-hero__image {
  width: min(100%, 520px);
  height: auto;
}

.units-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.units-hero__copy {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.units-section {
  padding-top: 18px;
}

.units-layout {
  display: grid;
  align-items: start;
  width: 100%;
}

.units-list {
  display: grid;
  width: 100%;
  gap: 24px;
  align-items: start;
}

.unit-card {
  width: 100%;
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.unit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.unit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.1);
}

.unit-card:hover::before {
  opacity: 1;
}

.unit-card__body {
  position: relative;
  z-index: 2;
}

.unit-card h2 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.unit-card__description {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.unit-card__map {
  margin-top: 1.5rem;
  width: 100%;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.unit-card__map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.unit-card__map-link {
  margin: 0.75rem 0 0;
}

.unit-card__map-link a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.unit-card--clickable {
  cursor: pointer;
}

.unit-card--clickable:hover {
  transform: translateY(-8px);
}

.units-map__frame {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.units-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 860px) {
  .units-layout {
    grid-template-columns: 1fr;
  }

  .units-list {
    grid-template-columns: 1fr;
  }
}

.suppliers-branch-nav {
  position: sticky;
  top: 122px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(214, 0, 3, 0.06);
  box-shadow: 0 10px 24px rgba(77, 16, 17, 0.05);
}

.suppliers-branch-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(214, 0, 3, 0.04);
  color: rgba(143, 0, 2, 0.86);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.suppliers-branch-nav a:hover {
  transform: translateY(-1px);
  background: rgba(214, 0, 3, 0.08);
  color: var(--primary);
}

.suppliers-list {
  display: grid;
  gap: 24px;
}

.supplier-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: var(--transition);
  scroll-margin-top: 200px;
  position: relative;
  overflow: hidden;
}

.supplier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.supplier-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.1);
}

.supplier-card:hover::before {
  opacity: 1;
}

.supplier-card__content h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
}

.supplier-card__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.supplier-card__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(214, 0, 3, 0.04);
  min-height: 260px;
  transition: transform 0.3s ease;
}

.supplier-card:hover .supplier-card__media {
  transform: scale(1.02);
}

.supplier-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.supplier-card:hover .supplier-card__media img {
  transform: scale(1.05);
}

.contact-hero {
  padding: 42px 0;
  text-align: center;
}

.contact-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.contact-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.contact-hero__copy {
  max-width: 58ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-hero__card,
.contact-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-hero__card::before,
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-hero__card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 0, 0, 0.1);
}

.contact-hero__card:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.contact-hero__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(160deg, rgba(214, 0, 3, 0.96), rgba(159, 0, 2, 0.92));
  color: #fff;
}

.contact-hero__card strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-hero__card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.contact-hero__card .button--primary {
  align-self: flex-start;
  background: #fff;
  color: var(--primary);
  box-shadow: none;
}

.page-hero {
  padding: 42px 0;
  text-align: center;
}

.page-hero__image {
  width: min(100%, 1200px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 30px;
}

.contact-section {
  padding: 42px 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-card h2 {
  margin: 14px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1), var(--shadow);
  background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .button--primary {
  justify-self: flex-start;
  margin-top: 0.5rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-strong);
}

.contact-list p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card--accent {
  background:
    linear-gradient(135deg, rgba(214, 0, 3, 0.07), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.82);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button--outline {
  color: var(--primary);
  background: rgba(214, 0, 3, 0.06);
  border: 1px solid rgba(214, 0, 3, 0.14);
}

.section--intro {
  padding-top: 36px;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.section-copy,
.section-heading p,
.highlight p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 64ch;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 0, 3, 0.26);
  background: var(--surface-strong);
}

.service-card__number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.section--highlight {
  padding-top: 0;
}

.highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(214, 0, 3, 0.07), rgba(241, 241, 241, 0.8)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.section--partners {
  padding-top: 12px;
}

.section--news {
  padding-top: 12px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-list {
  display: grid;
  gap: 24px;
}

.partner-card,
.news-card,
.partners-empty {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.partner-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: stretch;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(124, 12, 15, 0.18);
}

.partner-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(214, 0, 3, 0.06);
}

.partner-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card__media {
  height: 100%;
  min-height: 180px;
  overflow: hidden;
  background: rgba(214, 0, 3, 0.06);
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card:hover .partner-card__image {
  transform: scale(1.04);
}

.partner-card__body {
  padding: 24px;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 24px 28px;
}

.partner-card__meta {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.partner-card h3 a {
  text-decoration: none;
}

.partner-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.news-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.news-card p {
  margin: 0;
  color: var(--text-muted);
}

.partner-card__link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.partners-empty {
  padding: 30px;
}

.partners-empty strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-strong);
}

.partners-empty p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 48px;
  color: rgba(255, 232, 232, 0.82);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 24%),
    linear-gradient(180deg, #8f0002 0%, #5f0001 100%);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 46px 0 36px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.site-footer__brand-row {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.site-footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
}

.site-footer__brand-mark .custom-logo-link,
.site-footer__brand-mark a {
  display: inline-flex;
  align-items: center;
}

.site-footer__brand-mark .custom-logo,
.site-footer__brand-mark .brand__logo {
  max-width: 180px;
  max-height: 82px;
}

.site-footer__brand-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.site-footer__description,
.site-footer__bottom p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 232, 232, 0.82);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 196, 196, 0.32);
  border-radius: 999px;
  color: #ffd4d4;
  background: transparent;
}

.site-footer__social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 215, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__nav-area {
  display: grid;
  gap: 22px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 220, 220, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer__nav-heading {
  display: grid;
  gap: 8px;
}

.site-footer__eyebrow {
  color: rgba(255, 214, 214, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer__nav-title {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.2;
}

.site-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.site-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 228, 228, 0.08);
}

.site-footer__title {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer__menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  width: 100%;
  padding: 0.2rem 0;
  color: rgba(255, 232, 232, 0.88);
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer__menu a:hover {
  color: #fff;
  transform: translateX(4px);
}

.site-footer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-top: 2px;
  min-width: 0;
}

.site-footer__cta p {
  margin: 0;
  max-width: 240px;
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(255, 232, 232, 0.82);
}

.site-footer__subscribe {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}

.site-footer__subscribe input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 232, 232, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  outline: none;
}

.site-footer__subscribe input::placeholder {
  color: rgba(255, 232, 232, 0.62);
}

.site-footer__subscribe input:focus {
  border-color: rgba(255, 232, 232, 0.28);
  background: rgba(255, 255, 255, 0.16);
}

.site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  min-width: 54px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f6c2c2 0%, #e88f8f 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(110, 0, 1, 0.28);
}

.site-footer__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(110, 0, 1, 0.34);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 232, 232, 0.12);
}

.site-footer__bottom-copy {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  flex: 1 1 0;
}

.site-footer__copyright-icon {
  color: rgba(255, 232, 232, 0.72);
  font-size: 1rem;
}

.site-footer__bottom-copy span {
  color: #fff;
  font-size: 0.95rem;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  flex: 1 1 0;
}

.site-footer__legal a {
  color: rgba(255, 232, 232, 0.84);
  font-size: 0.95rem;
}

.site-footer__legal a:hover {
  color: #fff;
}

.site-footer__badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  flex: 1 1 0;
}

.site-footer__badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 232, 232, 0.84);
  font-size: 0.95rem;
}

.site-footer__badges svg {
  color: #f3b1b1;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top span {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: var(--shadow-xl), 0 0 30px rgba(220, 38, 38, 0.28);
  transform: translateY(-2px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(220, 38, 38, 0.22);
  outline-offset: 3px;
}

/* Trabalhe Conosco Page Styles */
.trabalhe-hero {
  padding: 42px 0;
  text-align: center;
}

.trabalhe-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.trabalhe-posts {
  padding: 42px 0 96px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.post-card {
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.post-card h3 {
  margin: 0 0 16px 0;
  color: var(--text);
}

.post-card p {
  margin: 0 0 24px 0;
  color: var(--muted);
}

.diversidade-section {
  padding: 42px 0 96px;
  text-align: center;
  background: var(--accent-soft);
}

.diversidade-section h2 {
  margin-bottom: 32px;
  color: var(--primary);
}

.diversidade-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Sobre Nós Page Styles */
.sobre-hero {
  padding: 42px 0;
  text-align: center;
}

.sobre-image {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.sobre-content {
  padding: 42px 0 96px;
}

.sobre-description p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.sobre-video {
  padding: 42px 0 96px;
  background: var(--accent-soft);
}

.sobre-video h2 {
  text-align: center;
  margin-bottom: 32px;
  color: var(--primary);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

.sobre-posts {
  padding: 42px 0 96px;
}

.post-card__inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.post-image {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 0;
}

.post-content {
  flex: 1;
}

.post-content h3 {
  margin-top: 0;
}

.fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .ethics-layout,
  .contact-hero__grid,
  .contact-grid,
  .partners-grid,
  .highlight,
  .supplier-card,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 84px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(214, 0, 3, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-menu a {
    width: 100%;
    justify-content: flex-start;
  }

  .header-badges {
    display: none;
  }

  .social-links {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form .button--primary {
    width: 100%;
    justify-self: stretch;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-banner {
    min-height: 620px;
    border-radius: 24px;
  }

  .hero-carousel__track {
    min-height: 620px;
  }

  .hero-banner__content {
    left: 24px;
    right: 24px;
    bottom: 164px;
    max-width: none;
  }

  .hero-carousel__control {
    top: auto;
    bottom: 124px;
    transform: none;
  }

  .hero-carousel__control--prev {
    left: 24px;
  }

  .hero-carousel__control--next {
    left: 86px;
    right: auto;
  }

  .hero-carousel__dots {
    left: 24px;
    bottom: 88px;
  }

  .contact-page {
    padding-top: 18px;
  }

  .hero__metrics,
  .partners-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card__media {
    min-height: 220px;
  }

  .site-footer__inner {
    padding-top: 48px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .site-footer__nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-footer__subscribe {
    max-width: 360px;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .site-footer__badges {
    justify-content: flex-start;
  }

  .suppliers-branch-nav {
    top: 96px;
  }
}

@media (max-width: 560px) {
  .ethics-card {
    padding: 24px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand__logo,
  .custom-logo {
    max-width: 132px;
    max-height: 64px;
  }

  .hero h1 {
    max-width: none;
  }

  .button {
    width: 100%;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__nav-area {
    padding: 22px;
  }

  .site-footer__nav-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__subscribe {
    max-width: none;
  }

  .site-footer__bottom-copy,
  .site-footer__legal,
  .site-footer__badges {
    gap: 14px;
  }

  .contact-actions .button,
  .contact-hero__card .button--primary {
    width: 100%;
    align-self: stretch;
  }

  .highlight,
  .contact-card,
  .contact-hero__card,
  .news-card__body,
  .partner-card__body,
  .partners-empty,
  .service-card,
  .metric {
    padding: 22px;
  }

  .hero-banner {
    min-height: 560px;
  }

  .hero-carousel__track {
    min-height: 560px;
  }

  .hero-banner__content {
    bottom: 210px;
  }

  .hero-carousel__control {
    width: 46px;
    height: 46px;
    bottom: 124px;
  }

  .hero-carousel__control--next {
    left: 78px;
  }

  .hero__metrics {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

/* Modern enhancements */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loading-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-glow {
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
