/* ============================================================
   MicroCiclo Clean — CSS (estilo FlexStart adaptado)
   Light theme · Bootstrap 5 · Verde MicroCiclo
   ============================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --background-color:   #ffffff;
  --default-color:      #444444;
  --heading-color:      #012e25;
  --accent-color:       #1a9e7e;
  --accent-dark:        #127a60;
  --accent-light:       #e8f7f3;
  --surface-color:      #ffffff;
  --contrast-color:     #ffffff;

  --nav-color:          #012e25;
  --nav-hover-color:    #1a9e7e;
  --nav-bg:             rgba(255,255,255,0.97);

  --font-default:       'Roboto', sans-serif;
  --font-heading:       'Nunito', sans-serif;
  --font-nav:           'Poppins', sans-serif;

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);

  --radius:     5px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-default);
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  background: var(--background-color);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
}

a { color: var(--accent-color); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

p { color: var(--default-color); }

.section { padding: 60px 0; }
.light-background { background: #f5fbf9; }
.dark-background { background: #012e25; }

/* ── Typography helpers ─────────────────────────────────────── */
.pre-title,
.section-pre-title {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  background: var(--accent-light);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.25;
}

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

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.sub-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light);
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 18px rgba(0,0,0,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header .container-fluid {
  max-width: 1320px;
  padding: 0 1.5rem;
}

/* Logo: branco no topo (fundo escuro), verde-escuro ao scrollar (fundo branco) */
.logo-img {
  transition: filter 0.35s ease;
  filter: none;
}
.header.scrolled .logo-img {
  filter: brightness(0) saturate(100%)
          invert(11%) sepia(68%) saturate(700%)
          hue-rotate(134deg) brightness(90%) contrast(105%);
}

.logo-text {
  font-family: var(--heading-font, 'Nunito', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.35s ease;
  white-space: nowrap;
}
.header.scrolled .logo-text {
  color: var(--heading-color, #012e25);
}

/* Nav links: branco no topo, cor normal após scroll */
.header:not(.scrolled) .navmenu a {
  color: rgba(255,255,255,0.9);
}
.header:not(.scrolled) .navmenu a:hover,
.header:not(.scrolled) .navmenu a.active {
  color: #fff;
  background: rgba(255,255,255,0.15);
}
.header:not(.scrolled) .navmenu a.nav-catalog {
  color: #7fffd4;
}
.header:not(.scrolled) .lang-switcher {
  border-left-color: rgba(255,255,255,0.2);
}
.header:not(.scrolled) .lang-switcher > span { color: rgba(255,255,255,0.3); }
.header:not(.scrolled) .lang-btn { color: rgba(255,255,255,0.65); }
.header:not(.scrolled) .lang-btn.active,
.header:not(.scrolled) .lang-btn:hover { color: #fff; }
.header:not(.scrolled) .btn-getstarted {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
}
.header:not(.scrolled) .btn-getstarted:hover {
  background: rgba(255,255,255,0.25);
  box-shadow: none;
}
.header:not(.scrolled) .mobile-nav-toggle { color: #fff; }

/* Nav */
.navmenu ul {
  display: flex;
  gap: 0.15rem;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}

.navmenu a {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-color);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.3s, background 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--nav-hover-color);
  background: var(--accent-light);
}

.navmenu a.nav-catalog {
  color: var(--accent-color);
  font-weight: 600;
}

.navmenu a.nav-catalog i { font-size: 0.75rem; }

.mobile-nav-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--heading-color); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #aaa;
  border-left: 1px solid #e0e0e0;
  padding-left: 1rem;
  margin-left: 0.25rem;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #999;
  cursor: pointer;
  padding: 3px 5px;
  border-radius: 3px;
  transition: color 0.3s;
}

.lang-btn.active,
.lang-btn:hover { color: var(--accent-color); }

/* Get started button */
.btn-getstarted {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  color: var(--contrast-color) !important;
  background: var(--accent-color);
  padding: 7px 20px;
  border-radius: 50px;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-getstarted:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Imagem de fundo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(1,46,37,0.88) 0%,
    rgba(1,46,37,0.68) 50%,
    rgba(0,0,0,0.45) 100%
  );
}

/* Orbs fluidos */
.hero-orbs { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: orb-float 20s ease-in-out infinite alternate;
}
.orb-1 { width: 500px; height: 500px; background: var(--accent-color); top: -150px; left: -100px; animation-duration: 22s; }
.orb-2 { width: 350px; height: 350px; background: #20c997; bottom: -80px; right: -60px; animation-duration: 28s; animation-delay: -10s; }
.orb-3 { width: 250px; height: 250px; background: #5ce0c6; top: 40%; right: 20%; opacity: 0.1; animation-duration: 35s; animation-delay: -18s; }

@keyframes orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, 25px) scale(1.04); }
  100% { transform: translate(-15px, 40px) scale(0.97); }
}

/* Conteúdo */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding-top: 72px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7fffd4;
  background: rgba(26,158,126,0.18);
  border: 1px solid rgba(127,255,212,0.35);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7fffd4;
  flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* Título */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-accent { color: #7fffd4; }

/* Subtítulo */
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* CTAs */
.btn-primary-mc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: #fff !important;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(26,158,126,0.4);
}
.btn-primary-mc:hover {
  background: #22b88f;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,158,126,0.55);
  color: #fff !important;
}

.btn-ghost-mc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.btn-ghost-mc:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  color: #fff !important;
}

/* Scroll indicator */
.hero-scroll-line {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  z-index: 2;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: translateX(-50%) scaleY(0); transform-origin: top; opacity: 1; }
  100% { transform: translateX(-50%) scaleY(1); transform-origin: top; opacity: 0; }
}

/* Garantir que a section clients não fique embaixo do header */
.clients.section { padding-top: 44px; padding-bottom: 44px; }

/* ── Clients / Partners Strip ───────────────────────────────── */
.clients.section { padding: 40px 0; }

.clients-slider .swiper-wrapper { align-items: center; }
.clients-slider .swiper-slide { text-align: center; }
.clients-slider .swiper-slide img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s;
  margin: 0 auto;
}
.clients-slider .swiper-slide img:hover { filter: grayscale(0%) opacity(1); }

/* ── About ───────────────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.5;
}

.check-list li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.founder-quote {
  background: var(--accent-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  position: relative;
}

.founder-quote p {
  font-style: italic;
  font-size: 14px;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.founder-quote footer {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
}

.floating-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid #eee;
}

.fb-stat { text-align: center; }

.fb-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
}

.fb-label {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}

.fb-divider {
  width: 1px;
  height: 40px;
  background: #eee;
}

/* ── Stats ───────────────────────────────────────────────────── */
.stats.section { padding: 50px 0; }

.stat-item {
  padding: 1rem;
}

.stat-item span,
.stat-item small,
.stat-item sup {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
}

.stat-item small { font-size: 1.1rem; }
.stat-item sup { font-size: 1.2rem; vertical-align: super; }

.stat-item p {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  margin-bottom: 0;
  font-weight: 500;
}

/* ── Feature Boxes (Technology) ─────────────────────────────── */
.feature-box {
  padding: 36px 24px;
  background: var(--surface-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  cursor: default;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-box i {
  font-size: 2rem;
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin: 0 auto 1.25rem;
  transition: all 0.3s;
}

.feature-box h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 13.5px;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

/* Feature color variants */
.fc-cyan i  { background: rgba(13,202,240,0.1); color: #0dcaf0; }
.fc-green i { background: rgba(26,158,126,0.1); color: var(--accent-color); }
.fc-teal i  { background: rgba(32,201,151,0.1); color: #20c997; }
.fc-blue i  { background: rgba(13,110,253,0.1); color: #0d6efd; }

.fc-cyan:hover  i { background: #0dcaf0; color: #fff; }
.fc-green:hover i { background: var(--accent-color); color: #fff; }
.fc-teal:hover  i { background: #20c997; color: #fff; }
.fc-blue:hover  i { background: #0d6efd; color: #fff; }

/* Tech tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tech-tags span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-color);
  background: var(--accent-light);
  border: 1px solid rgba(26,158,126,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  transition: all 0.3s;
}

.tech-tags span:hover {
  background: var(--accent-color);
  color: #fff;
}

/* ── Service Cards (Catalog) ─────────────────────────────────── */
.service-card {
  background: var(--surface-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.border-green { border-bottom-color: var(--accent-color); }
.border-teal  { border-bottom-color: #20c997; }
.border-blue  { border-bottom-color: #0d6efd; }

.sc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sc-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 1.4rem;
  color: #fff;
}

.bg-green { background: var(--accent-color); }
.bg-teal  { background: #20c997; }
.bg-blue  { background: #0d6efd; }

.sc-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 3px 10px;
  border-radius: 50px;
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.sc-subtitle {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
}

.service-card > p { font-size: 13.5px; color: #666; line-height: 1.65; margin: 0; }

.sc-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sc-features li {
  font-size: 13px;
  color: var(--default-color);
  padding-left: 1.2rem;
  position: relative;
}

.sc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
}

.sc-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sc-sectors span {
  font-size: 11.5px;
  font-weight: 600;
  color: #666;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  padding: 3px 10px;
  border-radius: 50px;
}

.sc-btn {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color) !important;
  border: 1.5px solid var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s;
  margin-top: auto;
}

.sc-btn:hover {
  background: var(--accent-color);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── SDG Row ─────────────────────────────────────────────────── */
.sdg-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sdg-row img {
  height: 72px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s;
  box-shadow: var(--shadow-sm);
}

.sdg-row img:hover { transform: scale(1.08) translateY(-3px); }

/* ── Value Cards ─────────────────────────────────────────────── */
.value-card {
  background: var(--surface-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.vc-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius);
  font-size: 1.6rem;
  color: var(--accent-color);
  margin: 0 auto 1.25rem;
  transition: all 0.3s;
}

.value-card:hover .vc-icon {
  background: var(--accent-color);
  color: #fff;
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.value-card p { font-size: 13.5px; color: #666; line-height: 1.65; margin: 0; }

/* ── Awards + Partners ───────────────────────────────────────── */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.award-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.award-row:last-child { border-bottom: none; }

.award-row:hover { background: var(--accent-light); border-radius: var(--radius); padding-left: 8px; }

.award-row.highlight .ay { color: var(--accent-color); font-weight: 800; }
.award-row.highlight p { font-weight: 700; color: var(--heading-color); }

.ay {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-align: right;
  line-height: 1.2;
}

.award-row p {
  font-size: 13.5px;
  color: var(--default-color);
  margin: 0;
  line-height: 1.45;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}

.partners-grid img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(80%) opacity(0.65);
  transition: filter 0.3s;
  margin: 0 auto;
}

.partners-grid img:hover { filter: grayscale(0%) opacity(1); }

/* ── Team ────────────────────────────────────────────────────── */
.team-card {
  background: var(--surface-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
  display: block;
}

.team-card:hover .team-img-wrap img { transform: scale(1.05); }

.tc-info {
  padding: 1rem;
  text-align: center;
}

.tc-info h5 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 4px;
  line-height: 1.3;
}

.tc-info span {
  font-size: 11.5px;
  color: #888;
  line-height: 1.4;
  display: block;
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius);
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-item h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 3px;
}

.ci-item a,
.ci-item span {
  font-size: 14px;
  color: var(--default-color);
  transition: color 0.3s;
}

.ci-item a:hover { color: var(--accent-color); }

.contact-social {
  display: flex;
  gap: 10px;
}

.contact-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  color: #888;
  font-size: 1rem;
  transition: all 0.3s;
}

.contact-social a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: var(--accent-light);
}

.contact-form .form-control {
  border: 1.5px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 14px;
  color: var(--default-color);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(26,158,126,0.15);
  outline: none;
}

.contact-form .form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
}

.contact-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.btn-submit {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent-color);
  border: none;
  padding: 11px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(26,158,126,0.3);
}

.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,158,126,0.4);
}

.form-sent {
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid rgba(26,158,126,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #012e25;
  color: rgba(255,255,255,0.7);
}

.footer h6 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer p { color: rgba(255,255,255,0.6); font-size: 13.5px; }

.footer-location { font-size: 12.5px; color: rgba(255,255,255,0.5); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

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

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

.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.btn-footer-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color) !important;
  border: 1.5px solid rgba(26,158,126,0.5);
  padding: 6px 16px;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-footer-cta:hover {
  background: var(--accent-color);
  color: #fff !important;
  border-color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
}

.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 12.5px; margin: 0; }

/* ── WhatsApp Float ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* ── Scroll to top ───────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 38px; height: 38px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top-btn:hover { background: var(--accent-dark); color: #fff; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .navmenu { display: none; }
  .navmenu.mobile-open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid #eee;
    z-index: 999;
  }
  .navmenu.mobile-open ul { flex-direction: column; gap: 4px; }
  .navmenu.mobile-open a { padding: 0.75rem 1rem; font-size: 15px; }
  .mobile-nav-toggle { display: block; }
}

@media (max-width: 768px) {
  .hero.section { padding: 80px 0 40px; min-height: auto; }
  .floating-badge { left: 0; bottom: -1rem; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .about-visual img { height: 300px; }
  .lang-switcher { display: none; }
}

@media (max-width: 576px) {
  .sdg-row img { height: 56px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .btn-primary-mc,
  .btn-ghost-mc { justify-content: center; }
}

/* ── Accessibility ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.1ms !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .header, .whatsapp-float, .scroll-top-btn { display: none; }
  .section { padding: 2rem 0; }
}
