/* ==========================================================================
   MACHADO CONSULTORIA E PERÍCIAS AGRONÔMICAS
   Design System & Landing Page Styles
   Palette: Forest Green (#0F382C), Gold (#C59B27, #D4AF37), Cream Beige (#FDFBF7, #F5EFEC)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-green: #0f382c;
  --primary-green-dark: #09261e;
  --primary-green-light: #164f3e;
  --accent-gold: #c59b27;
  --accent-gold-light: #e6c568;
  --accent-gold-dark: #9e7a1b;
  --bg-cream: #fdfbf7;
  --bg-cream-alt: #f4efe6;
  --bg-card: #ffffff;
  --text-main: #1c2a26;
  --text-muted: #53645f;
  --text-light: #839790;
  --border-color: #e5ded2;
  --border-gold-light: rgba(197, 155, 39, 0.3);
  --shadow-sm: 0 4px 12px rgba(15, 56, 44, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 56, 44, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 56, 44, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography Helpers */
.font-heading {
  font-family: var(--font-heading);
}

/* Top Navigation Bar */
.top-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 2rem;
  transition: var(--transition);
}

.navbar-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Social Buttons Left */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-green);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-pill:hover {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.social-pill svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Logo Center */
.nav-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  padding: 0.2rem 0;
}

.nav-logo-link:hover {
  transform: scale(1.03);
}

.nav-logo-img {
  height: 75px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav-logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Search Right */
.nav-search-container {
  position: relative;
  min-width: 280px;
}

.nav-search-input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.6rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.nav-search-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.18);
}

.search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

/* Hero Presentation Section */
.hero-section {
  position: relative;
  padding: 6rem 3rem 7rem;
  background: linear-gradient(135deg, #fdfbf7 0%, #f4efe6 100%);
  overflow: hidden;
}

.hero-curve-bg {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.12) 0%, rgba(15, 56, 44, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

/* Hero Left Profile Card */
.hero-profile-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3.2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  border-left: 7px solid var(--accent-gold);
  overflow: hidden;
  transition: var(--transition);
}

.hero-profile-card:hover {
  box-shadow: 0 24px 54px rgba(15, 56, 44, 0.16);
}

.hero-profile-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at bottom right, rgba(197, 155, 39, 0.14), transparent 70%);
  border-radius: 50%;
}

.profile-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.3rem;
  background: rgba(15, 56, 44, 0.08);
  border: 1px solid rgba(15, 56, 44, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.8rem;
}

.profile-badge-top svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold-dark);
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.12;
  margin-bottom: 0.8rem;
}

.profile-crea {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  letter-spacing: 0.06em;
  margin-bottom: 2.2rem;
  display: inline-block;
  background: rgba(197, 155, 39, 0.14);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(197, 155, 39, 0.25);
}

.profile-credentials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.8rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.12rem;
  color: var(--text-main);
  line-height: 1.55;
}

.cred-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  margin-top: 3px;
  color: var(--accent-gold-dark);
}

.profile-footer-bar {
  padding-top: 2rem;
  border-top: 2px dashed var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.location-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
}

.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(15, 56, 44, 0.28);
  transition: var(--transition);
}

.cta-btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 56, 44, 0.38);
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green-dark) 100%);
}

.cta-btn-main svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hero Right Presentation Text */
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.12;
  margin-bottom: 2rem;
}

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

.hero-text {
  font-size: 1.18rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}

.stat-card {
  background: #ffffff;
  padding: 1.6rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Dividers with Curves */
.curve-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.curve-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

/* Sumário Section */
.sumario-section {
  padding: 4rem 2rem;
  background: var(--bg-cream);
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(197, 155, 39, 0.12);
  color: var(--accent-gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-pill);
  margin-bottom: 0.8rem;
}

.section-title-large {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
}

/* Sumário Grid 2 columns like sketch */
.sumario-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.sumario-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sumario-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-gold);
  opacity: 0;
  transition: var(--transition);
}

.sumario-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold-light);
}

.sumario-card:hover::before {
  opacity: 1;
}

.sumario-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.area-badge-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  background: rgba(197, 155, 39, 0.1);
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-info {
  display: flex;
  flex-direction: column;
}

.area-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
}

.area-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.sumario-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-cream-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  transition: var(--transition);
}

.sumario-card:hover .sumario-arrow {
  background: var(--primary-green);
  color: #ffffff;
  transform: translateX(4px);
}

/* Featured Search Section (Between Sumário and Area 01) */
.featured-search-section {
  padding: 6.5rem 2rem 7rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.featured-search-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold) 100%);
}

.featured-search-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.featured-search-tag {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  background: rgba(197, 155, 39, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.featured-search-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-search-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.featured-search-box {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.featured-search-icon {
  position: absolute;
  left: 1.8rem;
  width: 26px;
  height: 26px;
  color: var(--primary-green);
  pointer-events: none;
  z-index: 2;
}

.featured-search-input {
  width: 100%;
  padding: 1.4rem 7rem 1.4rem 4.2rem;
  background: #ffffff;
  border: 3px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1.18rem;
  color: var(--text-main);
  outline: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition: var(--transition);
}

.featured-search-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 50px rgba(197, 155, 39, 0.4);
}

.featured-clear-btn {
  position: absolute;
  right: 1.4rem;
  padding: 0.55rem 1.3rem;
  background: var(--bg-cream-alt);
  color: var(--primary-green);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.featured-clear-btn:hover {
  background: var(--accent-gold);
  color: #ffffff;
}

/* Detailed Area Sections */
.area-section {
  padding: 8rem 2rem 6rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.area-section:nth-child(even) {
  background: #ffffff;
}

.area-section:nth-child(odd) {
  background: var(--bg-cream);
}

.area-header-container {
  max-width: 1250px;
  margin: 0 auto 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.area-header-left {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.area-section-num {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 16px rgba(15, 56, 44, 0.18);
  white-space: nowrap;
}

.area-section-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
}

.area-section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.area-badge-total {
  padding: 0.5rem 1.2rem;
  background: rgba(197, 155, 39, 0.14);
  border: 1px solid var(--border-gold-light);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  white-space: nowrap;
}

/* Products Grid */
.products-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
  gap: 2.2rem;
}

/* Product Card Styling */
.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.product-card-header {
  padding: 1.4rem 1.6rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

.product-num-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  background: rgba(197, 155, 39, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  height: fit-content;
  white-space: nowrap;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.25;
}

.product-card-body {
  padding: 0 1.6rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-block-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-block-label svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.product-block-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.55;
}

.legal-basis-box {
  background: var(--bg-cream-alt);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-gold);
  font-size: 0.83rem;
  color: var(--text-muted);
}

.legal-basis-box strong {
  color: var(--primary-green);
  font-weight: 700;
}

.product-card-footer {
  padding: 1rem 1.6rem 1.4rem;
  border-top: 1px dashed var(--border-color);
  margin-top: auto;
}

.btn-consultar-wa {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: #ffffff;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-consultar-wa:hover {
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 56, 44, 0.2);
}

.btn-consultar-wa svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: #ffffff;
  padding: 0.8rem 1.3rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  animation: pulseWa 2s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.05);
  background: #20ba5a;
}

.floating-wa-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Search Overlay / Results Banner */
.search-results-bar {
  background: var(--primary-green);
  color: #ffffff;
  padding: 0.8rem 2rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 72px;
  z-index: 990;
}

.search-results-bar.active {
  display: flex;
}

.clear-search-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Footer Section */
.footer-section {
  background: var(--primary-green);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-top-curve {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.footer-top-curve svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-sub {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--accent-gold);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Highlight search match */
mark.search-highlight {
  background-color: var(--accent-gold);
  color: #000000;
  padding: 0 3px;
  border-radius: 2px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-navbar {
    padding: 0.8rem 1rem;
  }

  .navbar-container {
    flex-wrap: wrap;
  }

  .nav-socials {
    order: 1;
  }

  .nav-search-container {
    order: 3;
    width: 100%;
    min-width: 100%;
  }

  .nav-logo-link {
    order: 2;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .area-header-container {
    flex-direction: column;
    align-items: flex-start;
  }

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