/* ============================================
   THURSAN - CSS Principal
   Design: Verde moderno + Navy profissional
   ============================================ */

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

/* ---- VARIÁVEIS DE DESIGN ---- */
:root {
  --green-900: #14532d;
  --green-700: #166534;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --navy: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy-800);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--green-600); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-700); }

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

ul { list-style: none; }

p { line-height: 1.75; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-fluid { width: 100%; padding: 0 24px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-green { color: var(--green-600); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-100);
  color: var(--green-700);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.badge svg { width: 14px; height: 14px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}
.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-dark {
  background: #148416;
  color: var(--white);
  border-color:#22d894;
}
.btn-dark:hover {
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ---- TOP BAR ---- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 51;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.topbar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.92);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.topbar-phone:hover { color: var(--green-500); }
.topbar-phone svg { width: 14px; height: 14px; color: var(--green-500); flex-shrink: 0; }

.topbar-langs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-langs-label {
  color: rgba(255,255,255,.6);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .03em;
  margin-right: 4px;
}
.topbar-lang {
  display: inline-flex;
  width: 26px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  opacity: .65;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.topbar-lang svg { width: 100%; height: 100%; display: block; }
.topbar-lang:hover { opacity: 1; transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,255,255,.35); }
.topbar-lang.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--green-500); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 50;
  transition: top 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  padding: 14px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
}
.navbar.scrolled {
  top: 0;
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(15,23,42,.08);
  border-bottom-color: transparent;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo img { height: 48px; width: auto; }
.navbar-logo { display: flex; align-items: center; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-nav a {
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.navbar-nav a:hover { color: var(--green-700); background: var(--green-50); }
.navbar-nav a.active { color: var(--green-700); background: var(--green-50); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown > a svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 230px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--navy-800) !important;
  font-size: 0.875rem;
  border-radius: var(--radius);
}
.dropdown-menu a:hover { background: var(--green-50) !important; color: var(--green-700) !important; }
.dropdown-menu a svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; }

.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-mobile-open .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,23,42,0.82) 0%,
    rgba(15,23,42,0.55) 60%,
    rgba(15,23,42,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0;
  width: 100%;
  text-align: left;
}
.hero-content-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: var(--green-500);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 1;
  max-width: 100%;
}
.hero-tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green-500);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-align: left;
}
.hero h1 span { color: var(--green-500); }

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 540px;
  text-align: left;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  display: block;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 90px;
  right: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--green-500); height: 24px; border-radius: 4px; }

/* ---- SECTION STYLES ---- */
section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.section-header p { color: var(--gray-600); margin-top: 12px; max-width: 620px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 12px auto 0; }

/* ---- PRODUCTS SECTION ---- */
.section-produtos { background: var(--gray-100); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.product-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.product-card-icon svg { width: 22px; height: 22px; color: var(--green-600); }
.product-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.product-card-body p { font-size: 0.9rem; color: var(--gray-600); flex: 1; margin-bottom: 16px; }
.product-card-body a { margin-top: auto; }

/* ---- WHY US SECTION ---- */
.section-why { background: #102966; }
.section-why h2 { color: var(--white); }
.section-why .section-header p { color: rgba(255,255,255,.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(52, 108, 214, 0.13);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(48, 77, 188, 0.5);
  border-color: rgba(34,197,94,.2);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(34, 128, 197, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card-icon svg { width: 26px; height: 26px; color: #71aae7; }
.why-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.77); }

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-grid img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}
.about-content h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; }
.about-features { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--green-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-icon svg { width: 16px; height: 16px; color: var(--green-600); }
.about-feature-text strong { display: block; font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--navy); }
.about-feature-text span { font-size: 0.85rem; color: var(--gray-600); }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, #161765 0%, #165aa3 100%);
  padding: 60px 0;
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--white); }
.cta-band p { color: rgba(255,255,255,.8); margin-top: 8px; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; justify-content: center; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,.6); margin-top: 16px; line-height: 1.8; }
.footer-logo img { height: 45px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.6);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--green-500); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--green-500); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.875rem; color: rgba(255,255,255,.65); }
.footer-contact-item a { color: rgba(255,255,255,.65); font-size: 0.875rem; }
.footer-contact-item a:hover { color: var(--green-500); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.4); }
.webformas-credit { display: inline-flex; line-height: 0; opacity: 1; transition: transform 0.2s ease; }
.webformas-credit:hover { transform: translateY(-2px); }
.webformas-credit img { width: 100%; max-width: 160px; height: auto; display: block; opacity: 1; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0c2768 0%, #000f27 100%);
  padding: 130px 0 26px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,.15) 0%, transparent 70%);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 1.8rem); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,.7); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--green-600); }
.breadcrumb-sep { color: var(--gray-300); }
.breadcrumb-current { color: var(--green-600); font-weight: 500; }
.breadcrumb-bar { background: var(--gray-100); border-bottom: 1px solid var(--gray-300); }

/* ---- CONTENT PAGE LAYOUT ---- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.content-main h2 { font-size: 1.4rem; margin-bottom: 16px; }
.content-main p { color: var(--gray-600); margin-bottom: 16px; }
.content-main strong { color: var(--navy); }
.content-img {
  width: 50%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 24px 0;
}

/* Sidebar */
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.sidebar-card-header {
  background: var(--green-700);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-card-header svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }
.sidebar-card-header h3 { font-size: 0.875rem; color: var(--white); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.sidebar-nav { padding: 8px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--navy-800);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.active { background: var(--green-50); color: var(--green-700); }
.sidebar-nav a svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; }

/* ---- COMPANY PAGE ---- */
.company-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.company-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}
.company-gallery img:first-child { grid-column: span 2; height: 260px; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mission-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 4px solid var(--green-600);
}
.mission-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.mission-card p { font-size: 0.875rem; color: var(--gray-600); }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray-600); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--navy-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }

.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control { padding-left: 42px; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  pointer-events: none;
}

/* Loading overlay */
.form-loading {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.form-loading.active { display: flex; }
.form-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255,255,255,.2);
  border-top-color: var(--green-500);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.form-loading p { color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 500; }

.contact-info-card {
  background: #102f79;
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.contact-info-card h3 { font-size: 1.2rem; margin-bottom: 6px; color: #fff;}
.contact-info-card > p { color: rgba(255,255,255,.65); margin-bottom: 28px; font-size: 0.9rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--green-500); }
.contact-info-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1cabe3;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.contact-info-value { color: rgba(255,255,255,.9); font-size: 0.9rem; }
.contact-info-value a { color: rgba(255,255,255,.9); }
.contact-info-value a:hover { color: var(--green-500); }

.recaptcha-wrap { margin: 16px 0; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ---- THANK YOU PAGE ---- */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--gray-100);
}
.thankyou-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--shadow-xl);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-icon svg { width: 40px; height: 40px; color: var(--green-600); }
.thankyou-card h1 { font-size: 2rem; margin-bottom: 12px; }
.thankyou-card p { color: var(--gray-600); margin-bottom: 32px; }
.thankyou-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- MODE DE USO BLOCK ---- */
.modo-uso {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.modo-uso h4 {
  font-size: 0.9rem;
  color: var(--green-700);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modo-uso h4 svg { width: 16px; height: 16px; }
.modo-uso p { font-size: 0.875rem; color: var(--gray-600); }

/* ---- PRODUCT SPECS ---- */
.specs-list { margin: 16px 0; }
.specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
  color: var(--gray-600);
}
.specs-list li:last-child { border-bottom: none; }
.specs-list li svg { width: 16px; height: 16px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeInUp 0.6s ease both; }
.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .mission-grid { grid-template-columns: 1fr; }
  .company-gallery { grid-template-columns: repeat(2, 1fr); }
  .company-gallery img:first-child { grid-column: 1 / -1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .topbar-inner { padding: 6px 16px; }
  .topbar-phone span { font-size: 0.78rem; }
  .topbar-langs-label { display: none; }
  .topbar-lang { width: 22px; height: 15px; }

  .navbar-nav, .navbar-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar-mobile-open .navbar-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 100px 32px 40px;
    gap: 4px;
    z-index: 45;
    overflow-y: auto;
  }
  .navbar-mobile-open .navbar-nav a {
    font-size: 1.1rem;
    padding: 14px 20px;
    color: var(--navy);
  }
  .navbar-mobile-open .navbar-nav a:hover,
  .navbar-mobile-open .navbar-nav a.active {
    color: var(--green-700);
    background: var(--green-50);
  }
  .navbar-mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--gray-100);
    margin-top: 4px;
    padding: 4px 8px;
  }
  .navbar-mobile-open .dropdown-menu a { color: var(--navy) !important; }
  .navbar-mobile-open .dropdown-menu a:hover { color: var(--green-700) !important; background: var(--green-50) !important; }
  .navbar-mobile-open .navbar-cta { display: flex; position: fixed; bottom: 32px; left: 32px; right: 32px; z-index: 46; }
  .navbar-mobile-open .navbar-cta .btn { flex: 1; justify-content: center; }

  .hero-stats-inner { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat span { font-size: 0.7rem; }
  .hero-dots { display: none; }

  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-grid { grid-template-columns: 1fr; }
  .about-img-grid img:first-child { grid-column: 1; }
  .company-gallery { grid-template-columns: 1fr; }
  .company-gallery img:first-child { grid-column: 1; }
  .contact-form-card { padding: 28px 20px; }
  .thankyou-card { padding: 36px 24px; }
  .hero-actions { flex-direction: column; }
  .hero h1 { font-size: 1.75rem; }
  .hero-lead { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-stats-inner { grid-template-columns: 1fr; gap: 12px; }
  .hero-stats { position: relative; }
  .hero { max-height: none; min-height: 600px; }
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--green-600);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  z-index: 100;
  font-size: 0.875rem;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---- SECTION BG VARIANTS ---- */
.bg-gray { background: var(--gray-100); }
.bg-green-light { background: var(--green-50); }
.bg-navy { background: var(--navy); }

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1689a3, #2252c5);
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider.centered { margin: 16px auto 28px; }
