/* ============================================================
   EstágioConnect — app.css
   Template visual: Elprime Solution
   Paleta: --blue #004b8d · --green #00c476 · --dark #061a2b
   ============================================================ */

/* ─── GOOGLE FONTS ───────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --blue:       #004b8d;
  --blue-dark:  #002a52;
  --green:      #00c476;
  --green-dark: #00a566;
  --dark:       #061a2b;
  --surface:    #f0f4f8;
  --surface-2:  #f9fafb;
  --white:      #ffffff;
  --border:     #e0e8f0;
  --text:       #333;
  --text-soft:  #555;
  --text-light: #666;
  --text-muted: #888;
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.06);
  --shadow:     0 4px 24px rgba(0,75,141,0.09);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,75,141,0.15);
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ─── CONTAINER ──────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── SECTION HELPERS ────────────────────────── */
.section-label {
  color: var(--green); font-weight: 700; text-align: center;
  display: block; margin-bottom: 6px; font-size: 0.9rem; letter-spacing: 1px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--blue); text-align: center;
}
.section-title span { color: var(--green); }
.section-divider {
  width: 60px; height: 4px; background: var(--green);
  border-radius: 2px; margin: 12px auto 0;
}

/* ─── KEYFRAMES ──────────────────────────────── */
@keyframes bgPulse {
  0%,100% { background-color: rgba(255,255,255,0.88); }
  50%     { background-color: rgba(0,196,118,0.15);   }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(1.4); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── HEADER ─────────────────────────────────── */
#header {
  position: fixed;
  left: 50%; transform: translateX(-50%);
  width: calc(100% - 2rem);
  top: 1rem;
  max-width: 1400px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: all 0.4s ease;
  animation: bgPulse 8s infinite ease-in-out;
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.site-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.site-logo:hover .site-logo-icon { transform: rotate(-8deg) scale(1.05); }
.site-logo-text {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: var(--blue);
}
.site-logo-text span { color: var(--green); }

/* Desktop nav */
nav { display: flex; align-items: center; gap: 24px; }
nav a {
  color: var(--blue); text-decoration: none; font-weight: 600;
  font-size: 0.9rem; transition: color 0.2s;
}
nav a:hover { color: var(--green); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > button {
  background: none; border: none; cursor: pointer;
  color: var(--blue); font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 4px; transition: color 0.2s;
}
.nav-dropdown > button:hover { color: var(--green); }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border-radius: 10px;
  box-shadow: var(--shadow-md); min-width: 220px; z-index: 200; overflow: hidden;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 18px; font-size: 0.88rem;
  color: var(--blue); transition: background 0.15s;
}
.dropdown-menu a:hover { background: #f0f4f8; color: var(--green); }

/* Auth button */
.btn-login {
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff !important;
  border-radius: 999px; padding: 9px 24px; font-weight: 700; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 7px; transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0,196,118,0.22); text-decoration: none; border: none;
}
.btn-login:hover {
  background: linear-gradient(90deg, var(--green), var(--blue));
  box-shadow: 0 4px 18px rgba(0,196,118,0.38); transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: none;
  color: var(--blue); font-size: 1.6rem; cursor: pointer;
}
.mobile-menu {
  display: none;
  background: linear-gradient(180deg, var(--blue), var(--green));
  border-radius: 0 0 16px 16px;
  padding: 14px 24px 20px; flex-direction: column; gap: 10px;
}
.mobile-menu a {
  color: #fff; text-decoration: none; font-weight: 600;
  padding: 7px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ─── HERO ───────────────────────────────────── */
#inicio {
  position: relative; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0.5;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(6,26,43,0.84); }
#particles-canvas { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  text-align: center; padding: 0 20px;
  animation: fadeUp 0.9s ease;
}
.hero-label-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px;
  background: rgba(0,196,118,0.12); border: 1px solid rgba(0,196,118,0.3);
  border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
}
.hero-label-pill .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: pulseDot 2s infinite;
}
.hero-title {
  font-family: 'Sora', sans-serif;
  color: #fff; font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
}
.hero-title .hero-green {
  background: linear-gradient(90deg, var(--green), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; line-height: 1.7; }

/* CTA button */
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff; font-weight: 700; font-size: 1rem;
  padding: 16px 38px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,196,118,0.3); transition: all 0.4s;
}
.btn-cta:hover { transform: scale(1.05); box-shadow: 0 10px 32px rgba(0,196,118,0.45); }

/* Hero stats bar */
.hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; overflow: hidden; backdrop-filter: blur(12px);
}
.hero-stat { flex: 1; padding: 18px 32px; text-align: center; position: relative; }
.hero-stat + .hero-stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.hero-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 30px; right: 40px; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ─── SOBRE / ABOUT ──────────────────────────── */
#sobre {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff 60%, #f0fdf8);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; height: 460px; }
.about-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 14px;
  box-shadow: var(--shadow-lg); transition: transform 0.4s;
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-label { color: var(--green); font-weight: 700; letter-spacing: 1px; font-size: 0.88rem; text-transform: uppercase; }
.about-title { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue); margin: 10px 0 18px; line-height: 1.2; }
.about-title span { color: var(--green); }
.about-text { color: var(--text-soft); line-height: 1.85; text-align: justify; font-size: 0.95rem; }

.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.check-item {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 10px; padding: 14px 16px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s;
  border: 1px solid var(--border);
}
.check-item:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.10); }
.check-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,196,118,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
}
.check-item span { color: #444; font-weight: 500; font-size: 0.9rem; }

.btn-more {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; margin-top: 28px;
  border-bottom: 2px solid transparent; transition: all 0.3s;
}
.btn-more:hover { color: var(--green); border-color: var(--green); }
.btn-more svg { transition: transform 0.3s; }
.btn-more:hover svg { transform: translateX(6px); }

/* ─── RECURSOS / FEATURES ────────────────────── */
#recursos { padding: 90px 0; background: var(--surface-2); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.feature-card {
  background: #fff; border-left: 4px solid var(--blue);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: all 0.3s; border-radius: 0 12px 12px 0;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--green); transform: translateY(-3px); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(0,75,141,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 18px; transition: all 0.3s;
}
.feature-card:hover .feature-icon-wrap { background: rgba(0,196,118,0.12); color: var(--green); }
.feature-card h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; transition: color 0.3s; }
.feature-card:hover h3 { color: var(--green); }
.feature-card p { color: var(--text-light); font-size: 0.85rem; line-height: 1.65; margin-bottom: 14px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.feature-list li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-soft); }
.feature-list li svg { flex-shrink: 0; color: var(--green); }

/* ─── DEPOIMENTOS ────────────────────────────── */
#depoimentos { padding: 90px 0; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 52px; }
.testimonial-featured {
  grid-column: 1 / -1; display: flex; gap: 40px; align-items: center;
  position: relative; padding-left: 24px;
}
.testimonial-featured::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--green);
}
.testimonial-featured-img {
  flex-shrink: 0; width: 200px; height: 200px; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--green);
  box-shadow: 0 8px 32px rgba(0,75,141,0.15);
}
.testimonial-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-featured-content { flex: 1; }
.quote-mark { font-family: 'Sora', sans-serif; font-size: 5rem; line-height: 0.7; font-weight: 800; color: var(--blue); display: block; margin-bottom: 12px; }
.testimonial-text { font-size: 1.2rem; font-weight: 500; color: var(--blue); line-height: 1.6; margin-bottom: 20px; }
.testimonial-name { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--blue); font-size: 1rem; }
.testimonial-role { color: var(--green); font-size: 0.85rem; margin-top: 2px; }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 6px; }
.verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600; color: var(--green);
  background: rgba(0,196,118,0.1); border: 1px solid rgba(0,196,118,0.25);
  padding: 3px 10px; border-radius: 999px; margin-top: 8px;
}

/* Card de depoimento menor */
.testimonial-card {
  background: var(--surface-2); border-radius: 14px;
  padding: 28px; border: 1px solid var(--border);
  position: relative; padding-left: 32px;
  transition: box-shadow 0.3s;
}
.testimonial-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: rgba(0,75,141,0.2); border-radius: 2px 0 0 2px; transition: background 0.3s;
}
.testimonial-card:hover::before { background: var(--green); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.tc-quote { font-size: 2.5rem; font-weight: 800; color: var(--blue); line-height: 0.7; margin-bottom: 10px; display: block; }
.tc-text { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 16px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.tc-name { font-weight: 700; font-size: 0.88rem; color: var(--blue); }
.tc-role { font-size: 0.76rem; color: var(--text-muted); }

/* ─── OPORTUNIDADES ──────────────────────────── */
#oportunidades { padding: 90px 0; background: var(--surface-2); }
.opp-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.opp-see-all { color: var(--blue); font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; gap: 6px; border-bottom: 1.5px solid rgba(0,75,141,0.2); padding-bottom: 2px; transition: all 0.3s; }
.opp-see-all:hover { color: var(--green); border-color: var(--green); gap: 10px; }

/* Filter tabs */
.opp-filters { display: flex; gap: 8px; margin-bottom: 36px; flex-wrap: wrap; }
.opp-filter {
  padding: 7px 18px; border-radius: 999px;
  border: 1.5px solid var(--border); background: transparent;
  color: #5a6a7a; font-weight: 600; font-size: 0.82rem; cursor: pointer; transition: all 0.25s;
}
.opp-filter.active, .opp-filter:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.opps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 20px; margin-bottom: 40px; }
.opp-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; transition: all 0.3s; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.opp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(0,75,141,0.2); }
.opp-card-hd { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.opp-logo {
  width: 52px; height: 52px; border-radius: 12px; background: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0; font-weight: 700; color: var(--green);
  font-family: 'Sora', sans-serif; font-size: 1rem;
}
.opp-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.opp-save {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1.5px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: #8a9ab0; cursor: pointer; transition: all 0.25s;
}
.opp-save:hover { background: var(--blue); border-color: var(--blue); color: var(--green); }
.opp-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.opp-tag { padding: 3px 9px; border-radius: 999px; font-size: 0.7rem; font-weight: 700; }
.ot-blue  { background: rgba(0,75,141,0.09);  color: var(--blue);  border: 1px solid rgba(0,75,141,0.18); }
.ot-green { background: rgba(0,196,118,0.1);  color: var(--green-dark); border: 1px solid rgba(0,196,118,0.25); }
.ot-amber { background: rgba(245,158,11,0.1); color: #b45309; border: 1px solid rgba(245,158,11,0.2); }
.ot-sky   { background: rgba(14,165,233,0.1); color: #0369a1; border: 1px solid rgba(14,165,233,0.2); }
.ot-gray  { background: rgba(90,106,122,0.08);color: #5a6a7a; border: 1px solid rgba(90,106,122,0.15); }
.opp-name { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 3px; }
.opp-company { font-size: 0.82rem; color: #5a6a7a; margin-bottom: 16px; }
.opp-meta { display: flex; flex-direction: column; gap: 7px; padding-top: 16px; border-top: 1px solid var(--surface); }
.opp-meta-row { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: #8a9ab0; }
.opp-meta-row.salary { color: var(--green-dark); font-weight: 600; }
.opp-urgent { position: absolute; top: 0; right: 18px; background: #ef4444; color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 0 0 7px 7px; }
.opps-cta { text-align: center; }
.btn-opps { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; background: linear-gradient(90deg,var(--blue),var(--green)); color: #fff; border: none; border-radius: 999px; font-family: 'Sora',sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.3s; }
.btn-opps:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,75,141,0.25); }
.opps-cta-sub { display: block; margin-top: 10px; font-size: 0.78rem; color: #8a9ab0; }

/* ─── GALERIA ────────────────────────────────── */
#galeria { padding: 90px 0; background: var(--surface-2); }
.gallery-layout { display: flex; gap: 32px; margin-top: 40px; }
.gallery-slider { flex: 1; position: relative; }
.slider-viewport { position: relative; height: 460px; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,75,141,0.88));
  padding: 30px 26px 22px; color: #fff;
}
.slide-caption h3 { font-family: 'Sora',sans-serif; font-size: 1.3rem; font-weight: 700; }
.slide-caption p { font-size: 0.88rem; opacity: 0.85; margin-top: 4px; }
.slide-caption .cap-line { width: 44px; height: 3px; background: var(--green); border-radius: 2px; margin-top: 10px; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.85); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); z-index: 10; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: background 0.2s;
}
.slider-btn:hover { background: #fff; }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.ep-dot { width: 12px; height: 12px; border-radius: 999px; background: #ccc; cursor: pointer; transition: all 0.3s; border: none; }
.ep-dot.active { background: var(--green); width: 24px; }
.gallery-grid { flex: 1; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.thumb-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.thumb-item:hover img { transform: scale(1.12); }
.thumb-overlay { position: absolute; inset: 0; background: rgba(0,75,141,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.thumb-item:hover .thumb-overlay { background: rgba(0,75,141,0.8); }
.thumb-overlay span { color: transparent; font-weight: 600; font-size: 0.82rem; transition: color 0.3s; text-align: center; padding: 8px; }
.thumb-item:hover .thumb-overlay span { color: #fff; }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--blue), var(--green));
  color: #fff; padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 36px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.3); }
.footer-logo-name { font-family: 'Sora',sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; }
.footer-logo-name span { color: rgba(255,255,255,0.7); }
.footer-tagline { font-size: 0.88rem; opacity: 0.88; margin-bottom: 18px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 9px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; opacity: 0.88; }
.footer-contact-item i { margin-top: 2px; flex-shrink: 0; }
.footer-col-title { font-family: 'Sora',sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 8px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.82); font-size: 0.86rem; text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #fff; }
.newsletter-box { background: linear-gradient(135deg, var(--blue), #002a52); border-radius: 14px; padding: 24px; }
.newsletter-title { font-family: 'Sora',sans-serif; font-size: 1.1rem; font-weight: 700; text-align: center; margin-bottom: 14px; }
.newsletter-input-wrap { position: relative; margin-bottom: 10px; }
.newsletter-input { width: 100%; padding: 11px 42px 11px 16px; border-radius: 999px; border: none; outline: none; font-size: 0.87rem; color: #333; }
.newsletter-input-wrap i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #888; }
.newsletter-btn { width: 100%; padding: 11px; border-radius: 999px; background: var(--green); color: #fff; border: none; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; }
.newsletter-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.social-icons { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.social-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 1rem; transition: all 0.3s; }
.social-icon:hover { background: rgba(255,255,255,0.25); transform: scale(1.12); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); margin-top: 44px; padding-top: 18px; text-align: center; font-size: 0.82rem; opacity: 0.78; }

/* ─── SCROLL TOP ─────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0; pointer-events: none; transition: opacity 0.3s; z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { flex-direction: column; text-align: center; }
  .testimonial-featured::before { display: none; }
  .testimonial-featured-img { width: 160px; height: 160px; margin: 0 auto; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { height: 280px; }
  .features-grid { grid-template-columns: 1fr; }
  .opps-grid { grid-template-columns: 1fr; }
  .gallery-layout { flex-direction: column; }
  .slider-viewport { height: 300px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hero-stat + .hero-stat::before { left: 20%; right: 20%; top: 0; bottom: auto; width: auto; height: 1px; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .header-inner { padding: 12px 18px; }
  .about-checks { grid-template-columns: 1fr; }
}
