/* ============================================================
   ITCORE — Super modern futuristic 2026
   Verde: #16a34a | #22c55e | Cyan accent | Glass & glow
   ============================================================ */

.theme_color { color: var(--green-light); font-weight: 700; }

:root {
  --green: #16a34a;
  --green-light: #22c55e;
  --green-dark: #15803d;
  --cyan: #06b6d4;
  --cyan-dim: rgba(6, 182, 212, 0.15);
  --blue: #0284c7;
  --dark: #0a0f1a;
  --dark-soft: #0f172a;
  --slate: #475569;
  --slate-light: #94a3b8;
  --bg: #f0f4f8;
  --bg-card: #ffffff;
  --radius: 14px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --radius-3xl: 36px;
  --shadow: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 56px -12px rgba(0,0,0,0.14);
  --shadow-green: 0 12px 40px -8px rgba(22, 163, 74, 0.4);
  --glow-green: 0 0 40px -5px rgba(22, 163, 74, 0.35);
  --glass: rgba(255,255,255,0.7);
  --glass-border: rgba(255,255,255,0.15);
  --font: 'Exo 2', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Orbitron', 'Exo 2', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(22, 163, 74, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 50%, rgba(6, 182, 212, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse 60% 80% at 0% 80%, rgba(22, 163, 74, 0.04) 0%, transparent 45%);
  line-height: 1.65;
  padding-top: 112px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}
@media (max-width: 991.98px) {
  body { padding-top: 72px; }
}
.container { max-width: 1200px; }

/* Acessibilidade: foco visível */
a:focus-visible,
button:focus-visible,
.itcore-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ========== HEADER 2026 — Top bar + Navbar ========== */
.itcore-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* Top bar: faixa superior escura — futuristic */
.itcore-topbar {
  background: linear-gradient(90deg, var(--dark) 0%, #0f172a 50%, #1e293b 100%);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.itcore-topbar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--green) 30%, var(--cyan) 50%, var(--green) 70%, transparent 100%);
  opacity: 0.5;
}
.itcore-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.itcore-topbar-slogan {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  opacity: 0.95;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.itcore-topbar-right {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
}
.itcore-topbar-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.itcore-topbar-link:hover {
  color: var(--green-light);
}
.itcore-topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.itcore-topbar-hours {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* Navbar principal — glass futuristic */
.itcore-nav {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}
.itcore-nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02);
  padding: 0.5rem 0;
}
.itcore-nav-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--green) 35%, var(--cyan) 50%, var(--green) 65%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
}
.itcore-nav.scrolled .itcore-nav-accent {
  opacity: 1;
}

/* Logo */
.itcore-brand {
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  transition: transform 0.25s var(--ease);
}
.itcore-brand:hover { transform: scale(1.02); }
.itcore-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: filter 0.25s var(--ease);
}
.itcore-brand:hover .itcore-logo { filter: brightness(1.05); }

/* Links do menu — mais espaço e leitura clara */
.itcore-nav-list {
  gap: 0.5rem;
}
.itcore-nav-list .nav-link {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.025em;
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
}
.itcore-nav-list .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: width 0.25s var(--ease);
  transform: translateX(-50%);
}
.itcore-nav-list .nav-link:hover { color: var(--green); background: rgba(22, 163, 74, 0.06); }
.itcore-nav-list .nav-link:hover::after { width: 70%; }
.itcore-nav-list .nav-link.active {
  color: var(--green);
  background: rgba(22, 163, 74, 0.08);
}
.itcore-nav-list .nav-link.active::after { width: 70%; }

/* CTA Área do Cliente — destaque 2026 */
.itcore-nav-cta-wrap { margin-left: 0.75rem; }
.itcore-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff !important;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.itcore-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
  color: #fff !important;
}

/* Dropdown */
.itcore-dropdown {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.15);
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.itcore-dropdown .dropdown-item {
  border-radius: 10px;
  padding: 0.7rem 1.15rem;
  font-weight: 500;
  transition: background 0.2s var(--ease), color 0.2s;
}
.itcore-dropdown .dropdown-item:hover {
  background: rgba(22, 163, 74, 0.08);
  color: var(--green);
}

/* Seletor de idioma */
.itcore-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.65rem;
  background: rgba(0,0,0,0.04);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.itcore-lang a {
  color: var(--slate);
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s var(--ease);
}
.itcore-lang a:hover,
.itcore-lang a.active {
  color: var(--green);
  background: rgba(22, 163, 74, 0.1);
}
.itcore-lang-sep {
  color: var(--slate-light);
  font-weight: 400;
  user-select: none;
}

/* Mobile: hamburger 2026 */
.itcore-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.25s var(--ease);
}
.itcore-toggler:hover { background: rgba(22, 163, 74, 0.08); }
.itcore-toggler:focus { box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.3); }
.itcore-toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.navbar-expand-lg .navbar-toggler[aria-expanded="true"] .itcore-toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-expand-lg .navbar-toggler[aria-expanded="true"] .itcore-toggler-bar:nth-child(2) {
  opacity: 0;
}
.navbar-expand-lg .navbar-toggler[aria-expanded="true"] .itcore-toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu aberto */
@media (max-width: 991.98px) {
  .itcore-topbar { display: none; }
  body { padding-top: 72px; }
  .itcore-nav-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
    margin: 0 1rem;
    border: 1px solid rgba(0,0,0,0.06);
    border-top: none;
  }
  .itcore-nav-list .nav-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 0.15rem;
  }
  .itcore-nav-list .nav-item:last-child { border-bottom: none; margin-bottom: 0; }
  .itcore-nav-list .nav-link {
    padding: 1rem 0.75rem;
    font-size: 1rem;
  }
  .itcore-nav-cta-wrap { margin-left: 0; margin-top: 0.5rem; }
  .itcore-nav-cta { justify-content: center; width: 100%; }
  .itcore-lang { justify-content: center; margin-top: 0.75rem; padding: 0.5rem; }
}

/* ========== BOTÕES ========== */
.itcore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, border-color 0.2s;
}
.itcore-btn:hover,
.itcore-btn:focus {
  text-decoration: none;
}
.itcore-btn-primary {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.itcore-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-green), var(--glow-green);
  color: #fff;
}
.itcore-btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(0,0,0,0.12);
}
.itcore-btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(22, 163, 74, 0.06);
  box-shadow: 0 0 24px rgba(22, 163, 74, 0.15);
}

/* ========== HERO — impacto visual ========== */
.itcore-hero {
  padding: 4.5rem 0 5.5rem;
  background: 
    radial-gradient(ellipse 100% 80% at 20% 0%, rgba(22, 163, 74, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(2, 132, 199, 0.05) 0%, transparent 45%),
    var(--bg);
}
@media (min-width: 992px) {
  .itcore-hero { padding: 5.5rem 0 6.5rem; }
}
.itcore-hero .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(22, 163, 74, 0.12);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.itcore-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.itcore-hero .lead {
  font-size: 1.125rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 32rem;
}
.itcore-hero .img-wrap {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.itcore-hero .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  pointer-events: none;
}
.itcore-hero .img-wrap img { width: 100%; height: auto; display: block; vertical-align: middle; }

/* ========== HOME PAGE REDESIGN ========== */
@keyframes heroBgZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes heroFadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroBadgeGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(22, 163, 74, 0.25), 0 0 0 1px rgba(22, 163, 74, 0.35); }
  50% { box-shadow: 0 0 45px rgba(22, 163, 74, 0.4), 0 0 0 1px rgba(22, 163, 74, 0.5); }
}
@keyframes heroLineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

.home-hero {
  padding: 5rem 0 5rem;
  background: linear-gradient(145deg, var(--dark) 0%, #0f172a 40%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .home-hero {
    padding: 5rem 0 5rem;
    display: flex;
    align-items: center;
  }
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: -5%;
  background: var(--home-hero-bg, none) center/cover no-repeat;
  opacity: 0.32;
  animation: heroBgZoom 25s ease-out forwards;
  transform-origin: center center;
}
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(22, 163, 74, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,15,26,0.5) 0%, rgba(15,23,42,0.88) 60%, var(--dark) 100%);
}
.home-hero .container { position: relative; z-index: 1; }
.home-hero-content {
  color: #fff;
  max-width: 600px;
  text-align: left;
}
.home-hero-content > * {
  animation: heroFadeInUp 0.9s var(--ease-out) backwards;
}
.home-hero-badge {
  animation-delay: 0.15s;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.5rem;
  padding: 0.55rem 1.15rem;
  background: rgba(22, 163, 74, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(22, 163, 74, 0.4);
  border-radius: 100px;
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.25);
  animation: heroFadeInUp 0.9s var(--ease-out) 0.15s backwards, heroBadgeGlow 4s ease-in-out 1.2s infinite;
}
.home-hero-title {
  animation-delay: 0.3s;
  font-size: clamp(2.5rem, 6.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  font-family: var(--font-display);
  text-shadow: 0 2px 24px rgba(0,0,0,0.4), 0 0 60px rgba(22, 163, 74, 0.08);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.home-hero-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-light), transparent);
  border-radius: 2px;
  animation: heroLineGrow 0.8s var(--ease-out) 0.6s backwards;
  transform-origin: left;
}
.home-hero-title .highlight { color: var(--green-light); text-shadow: 0 0 40px rgba(22, 163, 74, 0.3); }
.home-hero-lead {
  animation-delay: 0.45s;
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}
.home-hero-actions {
  animation-delay: 0.6s;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.home-hero-actions .itcore-btn {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.home-hero-actions .itcore-btn-primary {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.45), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.home-hero-actions .itcore-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(22, 163, 74, 0.5), 0 0 50px rgba(22, 163, 74, 0.25);
}
.home-hero-actions .itcore-btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.home-hero-actions .itcore-btn-outline:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: 0 0 30px rgba(255,255,255,0.1);
}
@media (max-width: 991.98px) {
  .home-hero { padding: 5rem 0 5rem; }
  .home-hero .container { display: flex; justify-content: center; }
  .home-hero-content { max-width: 100%; text-align: center; }
  .home-hero-actions { justify-content: center; }
  .home-hero-title::after { left: 50%; margin-left: -40px; transform-origin: center; background: linear-gradient(90deg, transparent, var(--green-light), transparent); }
}

.home-section {
  padding: 4.75rem 0;
}
@media (min-width: 992px) {
  .home-section { padding: 6rem 0; }
}
.home-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(22, 163, 74, 0.04);
}
.home-section-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 2rem;
}
.home-section a,
.itcore-section a,
.itcore-section-alt a,
.itcore-section-gray a {
  text-decoration: none;
}
.home-section a:hover,
.itcore-section a:hover,
.itcore-section-alt a:hover,
.itcore-section-gray a:hover {
  text-decoration: none;
}

.home-featured-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease), border-color 0.35s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.home-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--cyan) 50%, var(--green-light) 100%);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
  transform-origin: left;
}
.home-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.14), 0 0 0 1px rgba(22, 163, 74, 0.1), 0 0 40px -10px rgba(22, 163, 74, 0.15);
  border-color: rgba(22, 163, 74, 0.2);
}
.home-featured-card:hover::before { transform: scaleX(1); }
.home-featured-card .card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, var(--cyan-dim) 100%);
  border: 1px solid rgba(22, 163, 74, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.home-featured-card:hover .card-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
}
.home-featured-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.home-featured-card h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.home-featured-card h3 a:hover { color: var(--green); }
.home-featured-card p {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.home-featured-card .card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s var(--ease);
}
.home-featured-card .card-link:hover { gap: 0.5rem; color: var(--green-dark); }

/* Trust strip — light minimal bar, dividers (ITCORE own style) */
.itcore-trust {
  padding: 3rem 0;
  background: linear-gradient(180deg, #fafbfc 0%, var(--bg-card) 50%, #f8fafc 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  border-top: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.itcore-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--green) 20%, var(--cyan) 50%, var(--green) 80%, transparent 100%);
  opacity: 0.6;
}
.itcore-trust .container {
  max-width: 1200px;
  margin: 0 auto;
}
.itcore-trust .row {
  align-items: stretch;
}
.itcore-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.itcore-trust-item:hover {
  transform: translateY(-2px);
}
.itcore-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(22, 163, 74, 0.15) 20%, rgba(22, 163, 74, 0.15) 80%, transparent);
}
@media (max-width: 767.98px) {
  .itcore-trust-item:not(:last-child)::after {
    display: none;
  }
  .itcore-trust-item:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 1.25rem;
    margin-bottom: 0.35rem;
  }
  .itcore-trust { padding: 2.5rem 0; }
}
.itcore-trust-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.itcore-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.itcore-trust-item:hover .itcore-trust-icon {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.2);
}
.itcore-trust-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

/* Presença internacional (sobre-nos) — flags */
.itcore-presence .itcore-section-subtitle {
  margin-bottom: 2.5rem;
}
.itcore-presence-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.itcore-presence-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--slate);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  border: 1px solid transparent;
}
.itcore-presence-item:hover {
  background: rgba(22, 163, 74, 0.06);
  color: var(--green);
  transform: translateY(-2px);
  border-color: rgba(22, 163, 74, 0.15);
}
.itcore-presence-item img,
.itcore-presence-flag-img {
  display: block;
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.itcore-presence-flag-img svg {
  display: block;
  width: 48px;
  height: 32px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Timeline — Sobre Nós */
.itcore-timeline-section .itcore-section-subtitle {
  margin-bottom: 2.5rem;
}
.itcore-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.itcore-timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 3px;
}
@media (min-width: 576px) {
  .itcore-timeline::before { left: 2rem; }
}
.itcore-timeline-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}
.itcore-timeline-item:last-child { margin-bottom: 0; }
@media (min-width: 576px) {
  .itcore-timeline-item { gap: 1.75rem; }
}
.itcore-timeline-marker {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}
@media (min-width: 576px) {
  .itcore-timeline-marker { width: 4rem; height: 4rem; font-size: 1rem; }
}
.itcore-timeline-year {
  display: block;
  line-height: 1.2;
}
.itcore-timeline-content {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.itcore-timeline-content p {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Parceiros e Tecnologias — logo grid */
.itcore-partners-tech .itcore-section-subtitle {
  margin-bottom: 2rem;
}
.itcore-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .itcore-partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .itcore-partners-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
@media (min-width: 992px) {
  .itcore-partners-grid { grid-template-columns: repeat(5, 1fr); max-width: 100%; }
}
.itcore-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 120px;
  height: 56px;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.itcore-partner-logo:hover {
  background: rgba(22, 163, 74, 0.06);
  transform: scale(1.05);
}
.itcore-partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.75);
  transition: filter 0.25s var(--ease);
}
.itcore-partner-logo:hover img {
  filter: grayscale(0) opacity(1);
}

/* ========== SECÇÕES ========== */
.itcore-section { padding: 5rem 0; }
@media (min-width: 992px) { .itcore-section { padding: 6rem 0; } }
.itcore-section-alt {
  background: var(--bg-card);
  box-shadow: 0 -1px 0 rgba(0,0,0,0.04);
}
.itcore-section-gray {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}
.itcore-section .eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  position: relative;
}
.itcore-section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Título de secção com linha (estilo PaloSecurity) */
.itcore-section-title {
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}
.itcore-section-subtitle {
  text-align: center;
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.75rem;
  letter-spacing: 0.01em;
}
.itcore-section .intro {
  font-size: 1.0625rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 640px;
}

/* Padrão sutil de fundo (secção Sobre) */
.itcore-section-pattern {
  position: relative;
}
.itcore-section-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(22, 163, 74, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.itcore-section-pattern .container { position: relative; z-index: 1; }

/* ========== CARDS — futuristic elevated + glow ========== */
.itcore-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease), border-color 0.35s;
  animation: cardFadeIn 0.6s var(--ease) both;
  position: relative;
  overflow: hidden;
}
.itcore-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--cyan) 50%, var(--green-light) 100%);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
  transform-origin: left;
  z-index: 0;
}
.itcore-card:nth-child(1) { animation-delay: 0.05s; }
.itcore-card:nth-child(2) { animation-delay: 0.1s; }
.itcore-card:nth-child(3) { animation-delay: 0.15s; }
.itcore-card:nth-child(4) { animation-delay: 0.2s; }
.itcore-card:nth-child(5) { animation-delay: 0.25s; }
.itcore-card:nth-child(6) { animation-delay: 0.3s; }
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.itcore-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 40px -10px rgba(22, 163, 74, 0.2);
  border-color: rgba(22, 163, 74, 0.15);
}
.itcore-card:hover::before { transform: scaleX(1); }
.itcore-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.14) 0%, var(--cyan-dim) 100%);
  border: 1px solid rgba(22, 163, 74, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.itcore-card:hover .icon {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.18);
}
.itcore-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.itcore-card h3 a {
  color: var(--dark);
  transition: color 0.2s;
}
.itcore-card h3 a:hover { color: var(--green); }
.itcore-card p,
.itcore-card .text {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.itcore-card .link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s var(--ease), color 0.2s;
}
.itcore-card .link:hover { color: var(--green-dark); gap: 0.6rem; }

/* Whole card as link (Nossos Serviços) */
a.itcore-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.itcore-card-link h3 {
  color: var(--dark);
  transition: color 0.2s;
}
a.itcore-card-link:hover h3 { color: var(--green); }
a.itcore-card-link .text { margin-bottom: 0; }

/* Cards "Por que escolher" — futuristic */
.itcore-feature-card {
  background: var(--bg-card);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-xl);
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.03);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease);
  border-top: 4px solid var(--green);
}
.itcore-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.12), 0 0 40px -10px rgba(22, 163, 74, 0.2);
}
.itcore-feature-card .itcore-feature-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, var(--cyan-dim) 100%);
  border: 1px solid rgba(22, 163, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.itcore-feature-card:hover .itcore-feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.25);
}
.itcore-feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.itcore-feature-card p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Card com imagem */
.itcore-card-img {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.itcore-card-img .img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.itcore-card-img .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.itcore-card-img:hover .img-wrap img { transform: scale(1.06); }
.itcore-card-img .body { padding: 1.75rem; }

/* ========== CTA STRIP — futuristic ========== */
.itcore-cta {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, rgba(6, 182, 212, 0.25) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.itcore-cta.itcore-cta-image {
  background-size: cover;
  background-position: center;
}
.itcore-cta.itcore-cta-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.9) 0%, rgba(15, 23, 42, 0.92) 100%);
}
.itcore-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 768px) { .itcore-cta { padding: 5.5rem 0; } }
.itcore-cta .container { position: relative; z-index: 1; }
.itcore-cta h2 {
  color: #fff !important;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3), 0 0 40px rgba(255,255,255,0.05);
}
.itcore-cta p,
.itcore-cta .phone {
  color: rgba(255,255,255,0.96);
  font-size: 1.125rem;
}
.itcore-cta .itcore-btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.itcore-cta .itcore-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
}
.itcore-cta .itcore-btn-primary {
  background: #fff;
  color: var(--green);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.itcore-cta .itcore-btn-primary:hover {
  background: #f1f5f9;
  color: var(--green-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 40px rgba(255,255,255,0.1);
}

/* ========== PAGE HEADER (internas) ========== */
.itcore-page-header {
  padding: 2.5rem 0 2rem;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.itcore-page-header h1 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.itcore-breadcrumb {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.itcore-breadcrumb a { color: var(--slate-light); }
.itcore-breadcrumb a:hover { color: var(--green); }
.itcore-breadcrumb span { margin: 0 0.5rem; opacity: 0.7; }

/* ========== PÁGINAS SERVIÇOS — futuristic ========== */
/* Page header escuro */
.itcore-page-header-dark {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(145deg, var(--dark) 0%, #0f172a 40%, #1e293b 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.itcore-page-header-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="0.5" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  pointer-events: none;
}
.itcore-page-header-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--green) 35%, var(--cyan) 50%, var(--green) 65%, transparent 100%);
  box-shadow: 0 0 24px rgba(22, 163, 74, 0.4);
}
.itcore-page-header-dark .container { position: relative; z-index: 1; }
.itcore-page-header-dark .itcore-breadcrumb { margin-bottom: 0.75rem; }
.itcore-page-header-dark .itcore-breadcrumb a,
.itcore-page-header-dark .itcore-breadcrumb span { color: rgba(255,255,255,0.75); }
.itcore-page-header-dark .itcore-breadcrumb a:hover { color: var(--green-light); }
.itcore-page-header-dark .itcore-page-header-dark-icon {
  font-size: 3rem;
  color: var(--green-light);
  margin-bottom: 0.75rem;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(22, 163, 74, 0.3));
}
.itcore-page-header-dark h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3), 0 0 40px rgba(22, 163, 74, 0.08);
}
.itcore-page-header-dark .page-header-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Service hero — página individual do serviço */
.itcore-service-hero {
  padding: 3.5rem 0;
  background: linear-gradient(145deg, var(--dark) 0%, #0f172a 50%, #1e293b 100%);
  color: #fff;
  text-align: center;
  position: relative;
}
.itcore-service-hero .service-icon-hero {
  font-size: 4rem;
  color: var(--green-light);
  margin-bottom: 1.25rem;
  display: inline-block;
  filter: drop-shadow(0 4px 16px rgba(22, 163, 74, 0.35)) drop-shadow(0 0 30px rgba(22, 163, 74, 0.2));
}
.itcore-service-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.itcore-service-hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Card detalhado (lista de serviços) — futuristic */
.itcore-card-detailed {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.02);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease), border-color 0.35s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.itcore-card-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--cyan) 50%, var(--green-light) 100%);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
  transform-origin: left;
}
.itcore-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 40px -10px rgba(22, 163, 74, 0.2);
  border-color: rgba(22, 163, 74, 0.15);
  color: inherit;
}
.itcore-card-detailed:hover::before { transform: scaleX(1); }
.itcore-card-detailed .card-icon-lg {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.12) 0%, var(--cyan-dim) 100%);
  border: 1px solid rgba(22, 163, 74, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.itcore-card-detailed:hover .card-icon-lg {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.2);
}
.itcore-card-detailed .card-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.itcore-card-detailed h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  flex: 1;
  transition: color 0.2s;
}
.itcore-card-detailed:hover h3 { color: var(--green); }
.itcore-card-detailed p {
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.itcore-card-detailed .itcore-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Feature box — página individual (borda esquerda verde) */
.itcore-feature-box {
  background: var(--bg-card);
  border-left: 4px solid var(--green);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  height: 100%;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.itcore-feature-box:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.itcore-feature-box .feature-icon {
  font-size: 2.25rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.itcore-feature-box h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.itcore-feature-box p {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}
.itcore-feature-box-highlight {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.06) 0%, rgba(22, 163, 74, 0.02) 100%);
  border-left-color: var(--green);
}

.about-story p { margin-bottom: 1rem; }
.about-story p:last-child { margin-bottom: 0; }

/* Benefits section (lista + páginas individuais) */
.itcore-benefits-section {
  padding: 4rem 0;
  background: #f1f5f9;
}
.itcore-benefits-section .section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.itcore-benefits-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 2px;
}
.itcore-benefit-card {
  background: var(--bg-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.03);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease);
  border-top: 4px solid var(--green);
}
.itcore-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.12), 0 0 40px -10px rgba(22, 163, 74, 0.18);
}
.itcore-benefit-card .benefit-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(22, 163, 74, 0.2));
}
.itcore-benefit-card h4,
.itcore-benefit-card h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.itcore-benefit-card p {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Service CTA (final da página individual) */
.itcore-service-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Service CTA with image background (same as itcore-cta-image, e.g. empresa/sobre-nos) */
.itcore-service-cta.itcore-service-cta-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.itcore-service-cta.itcore-service-cta-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.9) 0%, rgba(15, 23, 42, 0.92) 100%);
  z-index: 0;
}
.itcore-service-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
  pointer-events: none;
  z-index: 0;
}
.itcore-service-cta .container { position: relative; z-index: 1; }
.itcore-service-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3), 0 0 40px rgba(255,255,255,0.05);
}
.itcore-service-cta p { color: rgba(255,255,255,0.95); margin-bottom: 1.25rem; font-size: 1.05rem; }
.itcore-service-cta .itcore-btn-primary {
  background: #fff;
  color: var(--green);
}
.itcore-service-cta .itcore-btn-primary:hover {
  background: #f1f5f9;
  color: var(--green-dark);
}

/* Breadcrumb em faixa (acima do hero) */
.itcore-breadcrumb-bar {
  padding: 0.6rem 0;
  background: rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-light);
}
.itcore-breadcrumb-bar a { color: var(--slate); }
.itcore-breadcrumb-bar a:hover { color: var(--green); }
.itcore-breadcrumb-bar span { margin: 0 0.5rem; opacity: 0.7; }

/* ========== CONTEÚDO ========== */
.itcore-content { padding: 3.5rem 0; }
.itcore-content .text,
.itcore-content p { color: var(--slate); line-height: 1.75; }

/* ========== FORMULÁRIO ========== */
.itcore-form .form-control {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.itcore-form .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
  outline: none;
}
.itcore-form .form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
}
.itcore-form textarea.form-control { min-height: 120px; resize: vertical; }

/* ========== PÁGINA CONTACTO ========== */
/* Secção 1: Cartões de contacto */
.itcore-contact-cards-section {
  padding: 3rem 0;
  background: #f1f5f9;
}
.itcore-contact-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.5rem;
}
.itcore-contact-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.itcore-contact-section-lead {
  text-align: center;
  color: var(--slate);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.itcore-contact-card {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border-top: 4px solid var(--green);
}
.itcore-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.12);
}
.itcore-contact-card .contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.itcore-contact-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.itcore-contact-card p {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.itcore-contact-card p.small { font-size: 0.8125rem; }
.itcore-contact-card a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.itcore-contact-card a:hover { color: var(--green-dark); }
.itcore-contact-card .text-muted { font-size: 0.8125rem; font-weight: 400; }

/* Secção 2: Formulário */
.itcore-contact-form-section {
  padding: 3.5rem 0;
  background: var(--bg-card);
}
.itcore-contact-form-wrap {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.itcore-contact-form-wrap .form-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.itcore-contact-form-wrap .form-section-lead {
  font-size: 0.9375rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.contact-response-time {
  font-size: 0.9375rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}
.contact-response-time i { color: var(--green); }
/* Sidebar: horário + CTA */
.itcore-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .itcore-contact-sidebar { position: sticky; top: 110px; }
}
.itcore-contact-hours {
  background: #f8fafc;
  padding: 1.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  border-top: 4px solid var(--green);
}
.itcore-contact-hours h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.itcore-contact-hours h5 i { color: var(--green); }
.itcore-contact-hours .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9375rem;
}
.itcore-contact-hours .hours-row:last-child { border-bottom: none; }
.itcore-contact-hours .hours-day { font-weight: 600; color: var(--dark); }
.itcore-contact-hours .hours-time { color: var(--slate); }
.itcore-contact-cta-box {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.08) 0%, rgba(2, 132, 199, 0.05) 100%);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(22, 163, 74, 0.15);
}
.itcore-contact-cta-box p {
  font-size: 0.9375rem;
  color: var(--slate);
  margin-bottom: 0;
  line-height: 1.5;
}
.itcore-contact-social-box {
  background: #f8fafc;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}
.itcore-contact-social-box h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}
.itcore-contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--slate);
  border: 1px solid rgba(0,0,0,0.08);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.itcore-contact-social-link:hover {
  color: var(--green);
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.2);
}

/* FAQ — contacto */
.itcore-contact-faq-section {
  padding: 4rem 0;
  background: var(--bg);
}
.itcore-contact-faq-section .itcore-section-title {
  text-align: center;
}
.itcore-faq-accordion .accordion-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.itcore-faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--dark);
  background: var(--bg-card);
  box-shadow: none;
  padding: 1rem 1.25rem;
  font-size: 1rem;
}
.itcore-faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(22, 163, 74, 0.06);
  color: var(--green-dark);
}
.itcore-faq-accordion .accordion-body {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--slate);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Onde estamos — endereços em texto (sem mapa embutido) */
.itcore-contact-address-section {
  padding: 4rem 0;
  background: var(--bg);
}
.itcore-contact-address-section .itcore-section-title {
  text-align: center;
}
.itcore-contact-address-section .itcore-section-subtitle {
  text-align: center;
  margin-bottom: 0;
}
.itcore-address-card {
  background: var(--bg-card);
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  height: 100%;
}
.itcore-address-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.itcore-address-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.itcore-address-text {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0;
}
.itcore-address-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
.itcore-address-link:hover {
  color: var(--green-dark);
}
.itcore-address-hours {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--slate);
}
.itcore-address-hours i {
  color: var(--green);
}
.itcore-address-office-hours {
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.itcore-address-office-hours i {
  color: var(--green);
  margin-top: 0.2rem;
}

/* ========== FEATURE BOXES ========== */
.itcore-feature {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.itcore-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.itcore-feature .icon { font-size: 1.75rem; color: var(--green); margin-bottom: 0.75rem; }
.itcore-feature h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--dark); }
.itcore-feature p { font-size: 0.9rem; color: var(--slate); margin: 0; line-height: 1.6; }

/* ========== FOOTER — futuristic ========== */
.itcore-footer {
  background: linear-gradient(165deg, #0a0f1a 0%, #0f172a 40%, #020617 100%);
  color: #94a3b8;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}
.itcore-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--green) 25%, var(--cyan) 50%, var(--green) 75%, transparent 100%);
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.3);
}
.itcore-footer .top {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* Column titles: no underline — use color + letter-spacing only */
.itcore-footer .col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cbd5e1;
  margin-bottom: 1rem;
  padding-bottom: 0;
  display: block;
}
.itcore-footer .logo {
  transition: opacity 0.2s;
}
.itcore-footer .logo:hover { opacity: 0.9; }
.itcore-footer .logo img { height: 42px; width: auto; opacity: 0.95; display: block; }
.itcore-footer .footer-email i,
.itcore-footer .footer-address i {
  color: var(--green-light);
  opacity: 0.9;
  margin-right: 0.5rem;
}
.itcore-footer .slogan {
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.9375rem;
  margin: 0.4rem 0 0.75rem;
  letter-spacing: 0.02em;
}
.itcore-footer ul { list-style: none; padding: 0; margin: 0; }
.itcore-footer ul li { margin-bottom: 0.6rem; }
.itcore-footer a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.itcore-footer a:hover { color: #fff; }
.itcore-footer span { color: #94a3b8; font-size: 0.9rem; }
.itcore-footer .social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.itcore-footer .social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s, transform 0.25s var(--ease);
}
.itcore-footer .social a:hover {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}
.itcore-footer .footer-links a,
.itcore-footer .footer-contact a {
  text-decoration: none;
}
.itcore-footer .footer-links li i,
.itcore-footer .footer-contact li i {
  width: 1.25em;
  margin-right: 0.5rem;
  color: var(--green-light);
  opacity: 0.9;
}
.itcore-footer .bottom {
  padding: 1.25rem 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.footer-presence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-presence-label {
  font-weight: 600;
  color: #94a3b8;
  margin-right: 0.25rem;
}
.footer-presence-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-presence-link:hover {
  color: var(--green-light);
}
.footer-presence-link .footer-presence-flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.footer-presence-link .footer-presence-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer-presence-link .footer-presence-flag svg {
  display: block;
  width: 20px;
  height: 14px;
  vertical-align: middle;
}
.footer-presence-sep {
  color: #64748b;
  font-weight: 700;
  user-select: none;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.footer-copy {
  margin: 0;
  color: #64748b;
  font-size: 0.9375rem;
}
.footer-contact-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-contact-link:hover {
  color: var(--green-light);
}
@media (max-width: 767px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== PRELOADER & SCROLL ========== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid rgba(22, 163, 74, 0.2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, background 0.2s, color 0.2s, transform 0.2s;
  z-index: 100;
}
.scroll-to-top:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* Compatibilidade (páginas antigas) */
.page-header-simple { padding: 2.5rem 0 2rem; background: var(--bg-card); border-bottom: 1px solid rgba(0,0,0,0.06); }
.page-header-simple h1 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 800; color: var(--dark); margin-bottom: 0.25rem; }
.page-breadcrumb { list-style: none; padding: 0; margin: 0; font-size: 0.75rem; font-weight: 600; color: var(--slate-light); }
.page-breadcrumb li { display: inline; }
.page-breadcrumb li + li::before { content: "/"; margin: 0 0.5rem; opacity: 0.7; }
.page-breadcrumb a { color: var(--slate-light); }
.page-breadcrumb a:hover { color: var(--green); }
.service-content { padding: 3.5rem 0; }
.service-content .text,
.service-content p { color: var(--slate); line-height: 1.75; }

/* 404 */
.itcore-error,
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.itcore-error::before,
.error-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,163,74,0.9) 0%, rgba(15,23,42,0.95) 100%);
}
.itcore-error .inner,
.itcore-error .content,
.error-section .content,
.error-section .auto-container { position: relative; z-index: 1; }
.itcore-error h1,
.error-section h1 { font-size: 4rem; font-weight: 800; color: #fff !important; margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.itcore-error h2,
.error-section h2 { font-size: 1.35rem; color: #fff !important; margin-bottom: 1rem; font-weight: 600; }
.itcore-error p,
.itcore-error .text,
.error-section p,
.error-section .text { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 1rem; }
.error-section .btn-style-two,
.error-section .theme-btn {
  border: 2px solid rgba(255,255,255,0.6) !important;
  color: #fff !important;
  background: transparent !important;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.error-section .btn-style-two:hover,
.error-section .theme-btn:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-color: #fff !important;
}
