@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@fontsource-variable/geist/index.css');

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style-type: none;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  box-sizing: border-box;
}

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Menu */

.logo {
  line-height: 50px;
  padding: 0 10px;
  text-align: center;
  margin: 0;
}

.logo2 {
  line-height: 100px;
  padding: 0 50px;
  float: right;
}


/* Menu */

.navbar {
  position: fixed;
  z-index: 100;
  height: 80px;
  overflow: visible;
  top: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #056bf6, #1bc7fb);
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.logo {
  background: url(img/logo.png) no-repeat 50% 50%;
  background-size: contain;
  width: 130px;
  height: 100px;
  float: left;
  margin-left: 20px;
}

.menu {
  position: fixed;
  right: 50px;
}

.menu a {
  color: #2a375f;
  text-decoration: none;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-weight: 700;
  margin-left: 24px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  position: relative;
}

.menu a:hover {
  color: #ffffff;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.menu a:hover::after { width: 100%; }

.header {
  width: 100%;
  height: 100px;
  background: url(bg.png) no-repeat 50% 50%;
  background-size: cover;
  margin-top: 80px;
}

.btn {
  display: none;
  position: absolute;
  right: 20px;
}

.btn:hover>span {
  background: #ffffff;
}

.btn span {
  display: block;
  margin: 6px;
  width: 40px;
  height: 3px;
  background: #333;
}

p {
  padding: 20px;
  font-size: 20px;
  text-align: justify;

}

@media only screen and (max-width : 600px) {
  .navbar {
    overflow: visible;
  }

  .menu {
    width: 100%;
    right: 0;
    top: 80px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    overflow: hidden;
    max-height: 0;
  }

  .menu a {
    display: block;
    text-align: center;
    padding: 10px;
    margin: 0;
  }

  .btn {
    display: block;
    cursor: pointer;
  }

.show {
  max-height: 500px;
}

@media (min-width: 801px) {
  .btn { display: none; }
  .navbar .menu {
    top: 20px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #ffffff !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 16px;
    border-radius: 9999px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    z-index: 200;
  }
  html.dark .navbar .menu {
    background: #0f172a !important;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.5);
  }
  .navbar .menu a {
    margin: 0;
    padding: 6px 10px;
    color: #1f2937;
    border-radius: 10px;
    transition: background 0.25s ease, color 0.25s ease;
  }
  .navbar .menu a:hover { background: rgba(255, 255, 255, 0.22); color: #ffffff; }
  html.dark .navbar .menu a { color: #e5e7eb; }
  html.dark .navbar .menu a:hover { background: rgba(255, 255, 255, 0.08); }
}
}

.navbar.scrolled { box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
html.dark .navbar.scrolled { box-shadow: 0 12px 30px rgba(2,6,23,0.55); }

@media only screen and (max-width : 600px) {
  .menu.show { position: fixed; left: 50%; transform: translateX(-50%); width: min(640px, calc(100% - 32px)); top: 80px; z-index: 1000; background: linear-gradient(to right, #056bf6, #1bc7fb); border: 1px solid rgba(255,255,255,0.4); border-radius: 18px; padding: 14px 0 30px; overflow: hidden; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
  .menu.show::before { content: none; }
  .menu.show a { color: #ffffff; }
  html.dark .menu { background: rgba(11, 18, 32, 0.72); border: 1px solid rgba(148, 163, 184, 0.28); box-shadow: 0 10px 28px rgba(2, 6, 23, 0.45); }
  html.dark .menu.show { background: linear-gradient(90deg, rgba(11, 18, 32, 0.96) 0%, rgba(15, 23, 42, 0.96) 100%) !important; border-color: rgba(148,163,184,0.35); backdrop-filter: none; -webkit-backdrop-filter: none; }
  html.dark .menu.show a { color: #e5e7eb; }
  html.dark .menu.show::before { content: none; }
  .menu .theme-toggle { width: 150px; height: 44px; padding: 0 20px; }
.menu .theme-toggle .icon { font-size: 18px; margin: 0; cursor: pointer; pointer-events: auto; }
.menu .theme-toggle .thumb { top: 4px; width: 64px; height: 36px; pointer-events: none; }
  .menu .theme-toggle.mode-light .thumb { left: 4px; right: auto; }
  .menu .theme-toggle.mode-dark .thumb { right: 4px; left: auto; }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .menu { left: 0; right: 0; width: 100%; top: 80px; z-index: 1000; }
  .menu.show { position: fixed; left: 50%; transform: translateX(-50%); width: min(720px, calc(100% - 48px)); background: linear-gradient(to right, #056bf6, #1bc7fb); border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: 18px; padding: 14px 0 30px; box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
  html.dark .menu.show { background: linear-gradient(90deg, rgba(11, 18, 32, 0.96) 0%, rgba(15, 23, 42, 0.96) 100%) !important; border: 1px solid rgba(148, 163, 184, 0.35); box-shadow: 0 16px 40px rgba(2,6,23,0.48); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu a { display: block; padding: 12px 14px; margin: 0; text-align: center; }
  .menu .theme-toggle { margin: 16px auto 12px; }
}

@media (max-width: 1280px) {
  .menu { left: 0; right: 0; width: 100%; top: 80px; z-index: 1000; }
  .menu.show { position: fixed; left: 50%; transform: translateX(-50%); width: min(860px, calc(100% - 64px)); background: linear-gradient(to right, #056bf6, #1bc7fb); border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: 18px; padding: 14px 0 30px; box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
  html.dark .menu.show { background: linear-gradient(90deg, rgba(11, 18, 32, 0.96) 0%, rgba(15, 23, 42, 0.96) 100%) !important; border: 1px solid rgba(148, 163, 184, 0.35); box-shadow: 0 16px 40px rgba(2,6,23,0.48); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu a { display: block; padding: 12px 14px; margin: 0; text-align: center; }
  .menu .theme-toggle { margin: 16px auto 12px; }
}

@media (max-width: 768px) {
  .menu.show { padding: 12px 0 28px; border-radius: 16px; }
  .menu a { padding: 12px 14px; }
  .menu .theme-toggle { margin: 16px auto 12px; width: 110px; height: 38px; }
}

/* Botão de alternância de tema no menu */
.menu .theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-left: 20px;
  width: 150px;
  height: 40px;
  padding: 0 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #1f2937;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.menu .theme-toggle:hover { background: rgba(255, 255, 255, 0.28); border-color: rgba(255, 255, 255, 0.6); }
@media only screen and (max-width: 768px) { .menu .theme-toggle { display: block; margin: 12px auto; width: 160px; height: 44px; } }

/* Tema Escuro global */
html.dark body { background-color: #0b1220; color: #e2e8f0; }
html.dark { scrollbar-color: #2563eb #0b1220; }
html.dark body::-webkit-scrollbar { width: 12px; height: 12px; }
html.dark body::-webkit-scrollbar-track { background: linear-gradient(180deg, rgba(11,18,32,0.95) 0%, rgba(15,23,42,0.95) 100%); border-radius: 9999px; }
html.dark body::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #1e3a8a 0%, #2563eb 60%, #38bdf8 100%); border-radius: 9999px; border: 2px solid rgba(11,18,32,0.9); }
html.dark body::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #2563eb 0%, #38bdf8 60%, #93c5fd 100%); }
html.dark .navbar { background: linear-gradient(90deg, rgba(11, 18, 32, 0.7) 0%, rgba(15, 23, 42, 0.7) 100%); border-bottom: 1px solid rgba(148, 163, 184, 0.18); box-shadow: 0 10px 28px rgba(2, 6, 23, 0.35); }
html.dark .menu a { color: #cbd5e1; }
html.dark .menu a:hover { color: #ffffff; }
html.dark .menu:not(.show) { background: transparent !important; border: none; }
@media (max-width: 768px) { html.dark .menu.show { background: linear-gradient(90deg, rgba(11, 18, 32, 0.96) 0%, rgba(15, 23, 42, 0.96) 100%) !important; border: 1px solid rgba(148,163,184,0.25); backdrop-filter: none; -webkit-backdrop-filter: none; } }
html.dark .container { background: transparent; color: #e5e7eb; border: none; box-shadow: none; }
html.dark .text { color: #cbd5e1; }
html.dark .fundo { background: linear-gradient(180deg, rgba(11, 18, 32, 0.98) 0%, rgba(11, 18, 32, 0.96) 100%) !important; }

html.dark .menu a::after { background: #38bdf8; }
html.dark .theme-toggle { border-color: rgba(148,163,184,0.28); background: rgba(11,18,32,0.6); color: #e5e7eb; }
html.dark .theme-toggle:hover { background: rgba(11,18,32,0.7); border-color: rgba(148,163,184,0.4); }

/* Integrando Tecnologias (dark) */
html.dark .integrations-showcase { background: rgba(11, 18, 32, 0.6); box-shadow: 0 20px 40px rgba(2,6,23,0.6); }
html.dark .integrations-showcase .azul { background: linear-gradient(135deg, #0b1220 0%, #0f172a 100%) !important; box-shadow: 0 20px 40px rgba(2,6,23,0.6) !important; }
html.dark .tech-card {
  background: rgba(18, 26, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
html.dark .tech-card:hover { border-color: rgba(56, 189, 248, 0.5); box-shadow: 0 12px 32px rgba(2, 6, 23, 0.5); }
html.dark .tech-card h3 { color: #eaf2ff; font-weight: 600; }
html.dark .tech-card .tech-icon { color: #ffffff !important; filter: none; }

/* Automation Card (dark) */
html.dark .automation-card { background: linear-gradient(135deg, rgba(16,24,40,0.92) 0%, rgba(16,24,40,0.88) 100%); border: 1px solid rgba(148,163,184,0.25); box-shadow: 0 20px 40px rgba(2,6,23,0.55); }
html.dark .card-icon { background: linear-gradient(135deg, #1e40af, #1d4ed8); box-shadow: 0 10px 30px rgba(30,64,175,0.35); }
html.dark .card-title { color: #e5e7eb; -webkit-text-fill-color: initial; }
html.dark .card-divider { background: linear-gradient(90deg, #1d4ed8, #38bdf8, #1d4ed8); }
html.dark .automation-card .text { color: #cbd5e1; }

/* Projetos Banner (dark) */
html.dark .projects-banner { background: linear-gradient(135deg, #0b1220 0%, #0f172a 100%) !important; box-shadow: 0 20px 40px rgba(2,6,23,0.6); }
html.dark .banner-title { color: #e5e7eb; }
html.dark .banner-description { color: #cbd5e1; }
html.dark .highlight-item { background: rgba(17,24,39,0.6); color: #e5e7eb; border: 1px solid rgba(148,163,184,0.25); }
html.dark .banner-btn { background: #e5e7eb; color: #0f172a; }
html.dark .banner-btn:hover { background: #f3f4f6; }

/* Seção Azul (dark) */
html.dark .azul { background: linear-gradient(270deg, #0b1220, #0f172a, #0f172a) !important; box-shadow: 0 20px 40px rgba(2,6,23,0.6) !important; }
html.dark .titulo3 { color: #e5e7eb; }

/* Dev page – buscador, seletor e cards no tema escuro */
html.dark #buscaProjetos { background: rgba(17, 24, 39, 0.7); border: 1px solid rgba(148, 163, 184, 0.25); color: #e5e7eb; }
html.dark #buscaProjetos::placeholder { color: rgba(203, 213, 225, 0.8); }
html.dark #buscaProjetos:focus { background: rgba(17, 24, 39, 0.85); border: 1px solid #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }
html.dark #categoriaFiltro { background: rgba(17, 24, 39, 0.7); border: 1px solid rgba(148, 163, 184, 0.25); color: #e5e7eb; }
html.dark .filtro-categorias::after { color: rgba(229, 231, 235, 0.8); }
html.dark .icone2 { background: rgba(16, 24, 40, 0.6); border: 1px solid rgba(148, 163, 184, 0.25); box-shadow: 0 8px 32px rgba(2, 6, 23, 0.5); }
html.dark .icone2 .paragrafo { color: #e5e7eb; }

/* Formulário no dark */
html.dark .form-orcamento { background: rgba(16, 24, 40, 0.92); border: 1px solid rgba(148, 163, 184, 0.25); box-shadow: 0 20px 40px rgba(2, 6, 23, 0.5); }
html.dark .form-orcamento label { -webkit-text-fill-color: initial; color: #e5e7eb; }
html.dark .form-orcamento input[type="text"],
html.dark .form-orcamento input[type="email"],
html.dark .form-orcamento input[type="tel"],
html.dark .form-orcamento input[type="date"],
html.dark .form-orcamento input[type="number"],
html.dark .form-orcamento textarea { background: rgba(17, 24, 39, 0.7); border: 1px solid rgba(148, 163, 184, 0.25); color: #e5e7eb; }
html.dark .form-orcamento input[type="text"]::placeholder,
html.dark .form-orcamento input[type="email"]::placeholder,
html.dark .form-orcamento input[type="tel"]::placeholder,
html.dark .form-orcamento input[type="date"]::placeholder,
html.dark .form-orcamento input[type="number"]::placeholder,
html.dark .form-orcamento textarea::placeholder { color: rgba(203, 213, 225, 0.8); }
html.dark .form-orcamento input[type="text"]:focus,
html.dark .form-orcamento input[type="email"]:focus,
html.dark .form-orcamento input[type="tel"]:focus,
html.dark .form-orcamento input[type="date"]:focus,
html.dark .form-orcamento input[type="number"]:focus,
html.dark .form-orcamento textarea:focus { background: rgba(17, 24, 39, 0.85); border: 1px solid #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }
html.dark .form-orcamento select { background: rgba(17, 24, 39, 0.7); border: 1px solid rgba(148, 163, 184, 0.25); color: #e5e7eb; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e7eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 15px center; background-size: 16px; padding-right: 50px; }
html.dark .form-orcamento select option { background: #111827; color: #e5e7eb; }
html.dark .form-orcamento input[type="date"]::-webkit-calendar-picker-indicator { background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e7eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e") no-repeat; filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.25)); }
html.dark .btn-submit { box-shadow: 0 7px 15px rgba(59, 130, 246, 0.35); }

/* Seção de Demonstração (global override) */
html.dark .demo-section { background: linear-gradient(180deg, rgba(11, 18, 32, 0.98) 0%, rgba(11, 18, 32, 0.96) 100%) !important; }
html.dark .demo-video { background: rgba(16, 24, 40, 0.88) !important; border: 1px solid rgba(148, 163, 184, 0.25) !important; box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6) !important; }
html.dark .demo-video iframe { background: #0b1220 !important; box-shadow: none !important; }
html.dark .demo-section .text { color: #cbd5e1 !important; }

/* Feature cards (dark) */
html.dark .feature-card { background: rgba(16, 24, 40, 0.9); border-left-color: #38bdf8; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35); }
html.dark .feature-title { color: #e5e7eb; }
html.dark .feature-description { color: #cbd5e1; }
html.dark .feature-icon { color: #60a5fa; }
html.dark .feature-card:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); }

/* Modal (dark) */
html.dark #tech-modal .modal-content {
  background: rgba(16, 24, 40, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.6);
  color: #e5e7eb;
}
html.dark #tech-modal .modal-title { color: #e5e7eb; }
html.dark #tech-modal .modal-description { color: #cbd5e1; }
html.dark #tech-modal .modal-features h4 { color: #e5e7eb; }
html.dark #tech-modal .features-list li { color: #cbd5e1; }
html.dark #tech-modal .modal-close { color: #cbd5e1; }
html.dark #tech-modal .modal-close:hover { color: #e5e7eb; }

#WzBoDy {
  background: linear-gradient(135deg, rgba(27,199,251,0.15), rgba(59,130,246,0.12)) !important;
  border: 1px solid rgba(148,163,184,0.28) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 12px 32px rgba(2,6,23,0.45) !important;
  overflow: hidden !important;
}
#WzBoDy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d4ed8, #38bdf8, #1d4ed8);
}
#WzBoDyI {
  color: #0f172a !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  text-align: left !important;
}
html.dark #WzBoDy {
  background: linear-gradient(135deg, rgba(16,24,40,0.85), rgba(16,24,40,0.82)) !important;
  border: 1px solid rgba(148,163,184,0.28) !important;
  box-shadow: 0 16px 40px rgba(2,6,23,0.55) !important;
}
html.dark #WzBoDyI { color: #e5e7eb !important; }

/* Reconhecimentos – tema escuro com glass */
html.dark .recognition-card { background: linear-gradient(145deg, rgba(16, 24, 40, 0.85) 0%, rgba(16, 24, 40, 0.8) 100%); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(148, 163, 184, 0.25); box-shadow: 0 12px 32px rgba(2, 6, 23, 0.5); }
html.dark .company-logo { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35); }
html.dark .recognition-title { color: #e5e7eb; }
html.dark .company-name { color: #93c5fd; }
html.dark .recognition-description { color: #cbd5e1; }
html.dark .recognition-year { background: rgba(17, 24, 39, 0.6); border: 1px solid rgba(148, 163, 184, 0.25); color: #e5e7eb; }
html.dark .tag { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 70%, #38bdf8 100%); box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35); }

/* Modern CTA Card – dark legibilidade */
html.dark .modern-cta-card .feature-item span { color: #eaf2ff; font-weight: 600; }
html.dark .modern-cta-card .feature-item i { color: #7dd3fc; }
html.dark .modern-cta-card .cta-subtitle { color: #e0e7ff; }

/* Rodapé no tema escuro */
html.dark .rodapé { background: rgba(16, 24, 40, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid rgba(148, 163, 184, 0.25); box-shadow: 0 -8px 24px rgba(2, 6, 23, 0.35); padding: 24px 0; }
html.dark .rod { color: #e5e7eb; text-shadow: 0 1px 12px rgba(59, 130, 246, 0.15); }

/* Integrations card – contenção */
.integrations-showcase { padding: 30px 20px; clip-path: inset(0 round 15px); }
.tech-grid { padding: 8px; box-sizing: border-box; }
@media (min-width: 769px) { .integrations-showcase { padding: 50px 35px; clip-path: inset(0 round 20px); } }


@media screen and (max-width: 768px) {
  .navbar {
    letter-spacing: 2px;
  }

  .navbar {
    overflow: visible;
  }

  .menu {
    width: 100%;
    right: 0;
    top: 80px;
    background: linear-gradient(to right, #056bf6, #1bc7fb);
    overflow: hidden;
    max-height: 0;
  }

  .menu a {
    display: block;
    text-align: center;
    padding: 10px;
    margin: 0;
  }

  .btn {
    display: block;
    cursor: pointer;
  }

  .show {
    max-height: 500px;
  }
}


@media screen and (max-width: 828px) {
  .navbar {
    letter-spacing: 2px;
  }

  .navbar {
    overflow: visible;
  }

  .menu {
    width: 100%;
    right: 0;
    top: 80px;
    background: linear-gradient(to right, #056bf6, #1bc7fb);
    overflow: hidden;
    max-height: 0;
  }

  .menu a {
    display: block;
    text-align: center;
    padding: 10px;
    margin: 0;
  }

  .btn {
    display: block;
    cursor: pointer;
  }

  .show {
    max-height: 500px;
  }
}


@media screen and (max-width: 1371px) {
  .navbar {
    letter-spacing: 2px;
  }

  .navbar {
    overflow: visible;
  }

  .menu {
    width: 100%;
    right: 0;
    top: 80px;
    background: linear-gradient(to right, #056bf6, #1bc7fb);
    overflow: hidden;
    max-height: 0;
  }

  .menu a {
    display: block;
    text-align: center;
    padding: 10px;
    margin: 0;
  }

  .btn {
    display: block;
    cursor: pointer;
  }

  .show {
    max-height: 500px;
  }
}

/* fim do menu  */

/*Imagem Inicial do INDEX  */

.inicial {
  width: 900px;
  height: 900px;
  max-width: 100%;
  height: auto;
  position: initial;
}


.inicial {
  animation: moveUpDown 3s infinite alternate ease-in-out; /* Ajuste a duração conforme necessário */
}

iframe {
  width: 80%;  
  height: 600px; 
  display: block; 
  margin: 0 auto; 
  border: none; 
}

/* 📱 Ajuste para telas menores */
@media (max-width: 1024px) {
  iframe {
      width: 90%; 
      height: 500px; 
  }
}

@media (max-width: 768px) {
  iframe {
      width: 95%; 
      height: 400px; 
  }
}

@media (max-width: 480px) {
  iframe {
      width: 100%; 
      height: 300px; 
  }
}

@keyframes moveUpDown {
  from {
      transform: translateY(0);
  }
  to {
      transform: translateY(-30px); 
  }
}

h1 {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.2s both;
}

h2 {
  animation: fadeInUp 1s ease-out 0.4s both;
}

h3 {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.terminal-simulado {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.container {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.azul {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.icone2 {
  animation: fadeInUp 1s ease-out 0.7s both;
}

.form-orcamento {
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Fim da imagem do INDEX  */

.inicial2 {
  width: 2000px;
  height: 2000px;
  max-width: 100%;
  height: auto;
  position: center;
}


/* Seção de Redes Sociais Moderna */
.social-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(5, 107, 246, 0.3);
  min-width: 140px;
  justify-content: center;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(5, 107, 246, 0.4);
  background: linear-gradient(135deg, #0056d6, #00b4d8);
}

.social-btn i {
  font-size: 18px;
}

.social-btn span {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* Cores específicas para cada rede social (opcional) */
.social-btn.github:hover {
  background: linear-gradient(135deg, #333, #555);
}

.social-btn.linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-btn.behance:hover {
  background: linear-gradient(135deg, #1769ff, #4285f4);
}

.social-btn.artstation:hover {
  background: linear-gradient(135deg, #13aff0, #1cbcf0);
}

.social-btn.fivehundredpx:hover {
  background: linear-gradient(135deg, #0099e5, #00aaff);
}

.social-btn.hackaday:hover {
  background: linear-gradient(135deg, #ff6600, #ff8533);
}

/* Responsividade */
@media (max-width: 768px) {
  .social-container {
    gap: 15px;
    padding: 15px;
  }
  
  .social-btn {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 120px;
  }
  
  .social-btn i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .social-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .social-btn {
    width: 200px;
  }
}

/* Fundo */

.fundo {
  background-color: rgb(255, 255, 255);
  text-align: center;
  padding: 10em 0;
}

.fundo .glass1 {
  position: relative;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: block;
  pointer-events: none;
  padding: 10px;
}


/* Fundo  */
.fundo {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.924));
  text-align: center;
  padding: 1em 0;
  position: relative;
  overflow: hidden;
}

/* Sistema de Partículas Flutuantes */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: particleFloat 8s infinite linear;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0); /* Força aceleração de hardware */
}

.particle.circle {
  border-radius: 50%;
  background: rgba(5, 107, 246, 0.3);
}

.particle.square {
  background: rgba(27, 199, 251, 0.2);
}

.particle.triangle {
  width: 0;
  height: 0;
  background: transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid rgba(88, 166, 255, 0.2);
}

/* Animações das partículas */
@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 100vh, 0) rotate(0deg) scale(0.5);
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--random-x), -100px, 0) rotate(360deg) scale(1.2);
  }
}

@keyframes particleFloatReverse {
  0% {
    opacity: 0;
    transform: translate3d(0, -100px, 0) rotate(0deg) scale(0.8);
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--random-x), 100vh, 0) rotate(-360deg) scale(1.5);
  }
}

@keyframes particleFloatDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0) rotate(0deg) scale(0.8);
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--random-x), 100vh, 0) rotate(360deg) scale(1.5);
  }
}

@keyframes particlePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 0.5;
  }
}

/* Responsividade para partículas em dispositivos móveis */
@media screen and (max-width: 768px) {
  .particles-container {
    /* Mantém partículas visíveis em mobile com performance otimizada */
  }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .particle {
    width: 3px;
    height: 3px;
  }
  
  .particle.square {
    width: 3px;
    height: 3px;
  }
  
  .particle.triangle {
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  }
}

/* Títulos, Textos e Parágrafos*/

.text {
  font-size: 16px; 
  color: #2d2d2d; 
  hyphens: auto;
  text-align:justify;
  text-justify: inter-word; 
  margin-top: 10px;
  max-width: 900px; 
  margin: 0 auto; 
  line-height: 1.5; 	
  white-space: normal;
  word-spacing: normal;
  letter-spacing: normal;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 500px) {
  .text {
      font-size: 15px; 
      color: #2d2d2d; 
      text-align:left;
      margin: 0 auto; 
      padding: 5px;
      line-height: 1.5;
      margin-top: 10px;
      white-space: normal;
      word-spacing: normal;
      letter-spacing: normal;
      hyphens: auto;
      animation: fadeInUp 1s ease-out;
  }
}

/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 768px) {
  .text {
      font-size: 15px;
      color: #2d2d2d; 
      text-align:left;
      margin: 0 auto; 
      padding: 5px;
      line-height: 1.5; 
      margin-top: 10px;
      white-space: normal;
      word-spacing: normal;
      letter-spacing: normal;
      hyphens: auto;
  }
}

/* Banner Moderno para Projetos */
.projects-banner {
  background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 100%);
  padding: 40px 0;
  margin: 40px auto;
  max-width: 1200px;
  width: calc(100% - 40px);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(5, 107, 246, 0.3);
  display: block;
  left: 0;
  right: 0;
}

.projects-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
  opacity: 0.4;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner-text {
  flex: 1;
  color: white;
}

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: fadeInLeft 1s ease-out;
}

.banner-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
  text-align: left; /* MUDANÇA PRINCIPAL: de justify para left */
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.banner-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  animation: fadeInLeft 1s ease-out 0.4s both;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.3);
}

.banner-action {
  animation: fadeInRight 1s ease-out 0.6s both;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #056bf6;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.banner-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.banner-btn:hover::before {
  left: 100%;
}

.banner-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: #f8f9fa;
}

.banner-btn i {
  transition: transform 0.3s ease;
}

.banner-btn:hover i {
  transform: translateX(5px);
}

.banner-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.element-3 {
  width: 40px;
  height: 40px;
  top: 80%;
  right: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsividade do Banner */
@media (max-width: 768px) {
  .projects-banner {
    padding: 60px 0;
    margin: 40px auto;
    width: calc(100% - 20px);
    border-radius: 15px;
    display: block;
    left: 0;
    right: 0;
  }
  
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .banner-title {
    font-size: 2.2rem;
  }
  
  .banner-description {
    font-size: 1.1rem;
  }
  
  .banner-highlights {
    justify-content: center;
  }
  
  .highlight-item {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .banner-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.8rem;
  }
  
  .banner-description {
    font-size: 1rem;
  }
  
  .banner-highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .highlight-item {
    width: fit-content;
  }
}



.bloco {
  flex: 50%;
  width: 800px;
  display: inline-block;
  top: 50%;
  left: 50%;
}

.titulo3 {
  background: linear-gradient(270deg, #ffffff, #53d4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
  text-align: center;
  text-indent: 2px;
  padding-right: 1.0em;
  margin: 0 auto;
  line-height: 1.5;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

.titulo4 {
  background: linear-gradient(270deg, #056bf6, #1bc7fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 42px;
  text-align: center;
  text-indent: 2px;
  padding-right: 1.0em;
  margin: 0 auto;
  line-height: 1.5;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buscador, .filtro-categorias {
  animation: slideInFromTop 0.6s ease-out;
}

.filtro-categorias {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* Container para os controles de busca */
.controles-busca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Responsividade aprimorada */
@media screen and (max-width: 768px) {
  .filtro-categorias::after {
    transform: translate(50%, -50%) translateX(80px);
  }
  
  #buscaProjetos {
    width: 90%;
    max-width: 350px;
    padding: 12px 15px;
  }
  
  #categoriaFiltro {
    min-width: 200px;
    padding: 10px 15px;
  }
}

@media screen and (max-width: 480px) {
  .controles-busca {
    padding: 20px 15px;
    margin: 0 10px 30px;
  }
  
  .filtro-categorias::after {
    transform: translate(50%, -50%) translateX(60px);
  }
  
  #buscaProjetos {
    width: 95%;
    padding: 10px 12px;
    font-size: 14px;
  }
  
  #categoriaFiltro {
    min-width: 180px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Container para os controles de busca */
.controles-busca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Responsividade aprimorada */
@media screen and (max-width: 768px) {
  .buscador::before {
    transform: translate(-50%, -50%) translateX(-150px);
  }
  
  .filtro-categorias::before {
    transform: translate(-50%, -50%) translateX(-100px);
  }
  
  .filtro-categorias::after {
    transform: translate(50%, -50%) translateX(80px);
  }
  
  #buscaProjetos {
    width: 90%;
    max-width: 350px;
    padding: 12px 15px 12px 40px;
  }
  
  #categoriaFiltro {
    min-width: 200px;
    padding: 10px 15px 10px 35px;
  }
}

@media screen and (max-width: 480px) {
  .controles-busca {
    padding: 20px 15px;
    margin: 0 10px 30px;
  }
  
  .buscador::before {
    transform: translate(-50%, -50%) translateX(-130px);
    font-size: 16px;
  }
  
  .filtro-categorias::before {
    transform: translate(-50%, -50%) translateX(-80px);
    font-size: 14px;
  }
  
  .filtro-categorias::after {
    transform: translate(50%, -50%) translateX(60px);
  }
  
  #buscaProjetos {
    width: 95%;
    padding: 10px 12px 10px 35px;
    font-size: 14px;
  }
  
  #categoriaFiltro {
    min-width: 180px;
    padding: 8px 12px 8px 30px;
    font-size: 14px;
  }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 20px rgba(5, 107, 246, 0.3);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(27, 199, 251, 0.5);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Indicador de carregamento */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  border: 4px solid #056bf6;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.titulo5 {
  background: linear-gradient(270deg, #056bf6, #1bc7fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 100px;
  text-align: center;
  text-indent: 2px;
  padding-right: 0.0em;
  margin-top: 0%;
  overflow-wrap: break-word;
  font-family: 'Roboto', sans-serif;
  position: relative;
  z-index: 1;
  -webkit-animation: titulo5 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both, fadeInUp 1s ease-out;
  animation: titulo5 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both, fadeInUp 1s ease-out;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-7-11 23:8:43
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation focus-in-expand
 * ----------------------------------------
 */
 @-webkit-keyframes titulo5 {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes titulo5 {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}



/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 600px) {
  .titulo5 {
    font-size: 32px;
    line-height: 1.15;
    margin-top: 6px;
  }
}

@media screen and (max-width: 960px) {
  .titulo5 {
    font-size: 42px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 600px) {
  .titulo4 {
    font-size: 25px;
    text-align: center;
    text-indent: 2px;
    padding-right: 1.0em;
    margin: 0 auto;
    line-height: 1.0;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

strong {
  font-style: normal;
  color: #464747;
  white-space: normal;
  word-spacing: normal;
  letter-spacing: normal;
	
}

/* --- Final Títulos, Textos e Parágrafos---*/

/* -- Galeria  */

.gallery-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
}

.photo {
  width: calc(33.33% - 20px);
  /* 33.33% para mostrar 3 fotos por linha, 20px para a margem */
  height: 50px;
  background-size: cover;
  margin: 10px;
  transition: transform 0.3s ease-out;
}

.photo:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .photo {
    width: calc(50% - 20px);
    /* 50% para mostrar 2 fotos por linha em telas menores */
  }
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 49.99999%;
  }
}



/* -- Galeria Learn  */

.larguradoicone2 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.bordadoicone2 {
  width: 100%;
  height: 4px;
  margin: 0 auto 15px;
  background: linear-gradient(90deg, 
    #056bf6 0%, 
    #1bc7fb 100%);
  border-radius: 2px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.icone2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(33.333% - 20px);
  min-width: 280px;
  max-width: 350px;
  padding: 20px;
  margin: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
  box-sizing: border-box;
}

.icone2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(5, 107, 246, 0.1) 0%, 
    rgba(27, 199, 251, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.icone2:hover::before {
  opacity: 1;
}

.icone2 img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9) contrast(1.1);
  background: linear-gradient(90deg, 
    rgba(240, 240, 240, 0.8) 25%, 
    rgba(255, 255, 255, 0.8) 50%, 
    rgba(240, 240, 240, 0.8) 75%);
  background-size: 200% 100%;
  box-sizing: border-box;
}

.icone2:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icone2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.icone2:hover .bordadoicone2 {
  opacity: 1;
  box-shadow: 0 0 10px rgba(27, 199, 251, 0.5);
}

.icone2 .paragrafo {
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin: 15px 0 0 0;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.icone2:hover .paragrafo {
  color: #056bf6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Container para organizar os cards .icone2 */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Responsividade Mobile Aprimorada */
@media (max-width: 960px) {
  .cards-container {
    gap: 15px;
    padding: 15px;
  }
  
  .icone2 {
    width: calc(50% - 15px);
    min-width: 250px;
    padding: 15px;
    margin: 8px;
  }
}

@media screen and (max-width:812px) {
  .icone2 .bordadoicone2 {
    flex: 100%;
  }
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
  }
  
  .icone2 {
    width: 100%;
    max-width: 400px;
    min-width: unset;
    margin: 0;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .cards-container {
    padding: 15px 10px;
    gap: 15px;
  }
  
  .icone2 {
    width: 100%;
    max-width: 100%;
    padding: 15px;
  }
  
  .larguradoicone2 {
    width: 100%;
    max-width: 100%;
  }
  
  .icone2 img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }
  
  .icone2 .paragrafo {
    font-size: 0.85rem;
    margin: 6px 0 0 0;
  }
}

@media (max-width: 375px) {
  .cards-container {
    padding: 10px 8px;
  }
  
  .icone2 {
    padding: 12px;
  }
  
  .icone2 .paragrafo {
    font-size: 0.8rem;
    margin: 4px 0 0 0;
  }
}

@media (max-width: 320px) {
  .cards-container {
    gap: 4px;
    padding: 0 2px;
  }
  
  .icone2 {
    padding: 10px;
  }
  
  .icone2 .paragrafo {
    font-size: 0.75rem;
    margin: 2px 0 0 0;
  }
}

.link {
  color: rgb(255, 255, 255);
}

body::-webkit-scrollbar {
  width: 12px;
  /* largura de toda a barra de rolagem */
}

body::-webkit-scrollbar-track {
  background: rgb(255, 255, 255);
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #1bc7fb;
  /* cor da área de rastreamento */
  border-radius: 20px;
  /* arredondamento do polegar de rolagem */
  border: 3px solid #1bc7fb;
  /* cria preenchimento em torno do polegar de rolagem */
}


html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.25;
  background-color: #ffffff;
  overflow-x: hidden; /* Previne scroll horizontal */
  box-sizing: border-box;
}

/* Box sizing global */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Container principal para evitar overflow */
.main-content {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}


/* -- Galeria  */


.largura {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.borda {
  width: 100px;
  height: 50px;
  margin: 20px auto;
}

.galeria .gallery {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.galeria .imagem {
  margin: 50px;
  flex: 40%;
  overflow: hidden;
  cursor: pointer;
}

.galeria .imagem img {
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.galeria .imagem:hover img {
  transform: scale(1.4);
}

@media screen and (max-width:960px) {
  .galeria .imagem {
    flex: 33.33%;
  }
}

@media screen and (max-width:812px) {
  .galeria .imagem {
    flex: 100%;
  }
}

@media screen and (max-width:768px) {
  .galeria .imagem {
    flex: 50%;
  }
}

@media screen and (max-width:480px) {
  .galeria .imagem {
    flex: 100%;
  }
}


@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

/* ---Final Galeria ---*/


/* -- Galeria  */

/* icones da página inicial*/

.larguradoicone {
  width: 100%;
  max-width: 100px;
  margin: 5% auto;
  display: block;
}


.bordadoicone {
  width: 100px;
  height: 2px;
  margin: 5% auto;
}

.icone {
  flex: 25%;
  width: 150px;
  display: inline-block;
  top: 50%;
  left: 50%;
}

.icone img {
  width: 100%;
  height: 100%;
  border-radius: 80px;
  transition: 0.4s;
}

.icone img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  /* IE */
}

.icone img:hover {
  -webkit-filter: none;
  filter: none;
}

.icone:hover img {
  transform: scale(1.2);
  box-shadow: 0 12px 12px 0 rgb(255, 255, 255), 0 17px 50px 0 rgb(255, 255, 255);
}


@media screen and (max-width:960px) {
  .icone .bordadoicone {
    flex: 33.33%;
  }
}

@media screen and (max-width:812px) {
  .icone .bordadoicone {
    flex: 100%;
  }
}

@media screen and (max-width:768px) {
  .icone .bordadoicone {
    flex: 50%;
  }
}

@media screen and (max-width:480px) {
  .icone .bordadoicone {
    flex: 100%;
  }
}

/* -- Galeria Learn  */

.larguradoicone2 {
  width: 200%;
  max-width: 300px;
  margin: auto;
  display: block;
}


.bordadoicone2 {
  width: 100px;
  height: 10px;
  margin: auto;
}

/* Definir o estilo do elemento com o ID "Topo". */
#Topo {
  position: fixed;
  z-index: 9999;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  text-indent: -9999px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  transition: background .22s ease, box-shadow .22s ease, transform .08s ease, border-color .22s ease;
}
#Topo::before {
  content: "↑";
  text-indent: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}
#Topo:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.40);
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}
html.dark #Topo {
  background: rgba(17,24,39,0.55);
  border-color: rgba(148,163,184,0.28);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
html.dark #Topo::before { color: #e5e7eb; }
@media (max-width: 480px) {
  #Topo { width: 40px; height: 40px; right: 12px; bottom: 12px; }
  #Topo::before { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  #Topo { transition: none; }
}


@media screen and (max-width: 600px) {
  #texto-animado {
    font-size: 20px;
    text-align: center;
    text-indent: 2px;
    padding-right: 0.2em;
    margin: 0 auto;
    line-height: 1.0;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}


/* Fundo animado */
.azul {
  background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 100%);
  background-size: 600% 600%;
  max-width: 1200px;
  width: calc(100% - 40px);
  animation: GradientAnimation 15s ease infinite;
  text-align: center;
  padding: 40px 0;
  margin: 40px auto;
  border-radius: 20px;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(88, 166, 255, 0.3);
  position: relative;
  overflow: hidden;
  display: block;
  left: 0;
  right: 0;
}

.azul .glass1 {
  position: relative;
  top: 0;
  left: 0;
  width: 100%; /* Largura total como o banner */
  height: 100%;
  display: block;
  pointer-events: none;
  padding: 20px;
  z-index: 2;
}

/* Responsividade para a seção azul */
@media (max-width: 768px) {
  .azul {
    padding: 60px 0;
    margin: 40px auto;
    width: calc(100% - 20px);
    border-radius: 15px;
    display: block;
    left: 0;
    right: 0;
  }
}

@media (max-width: 480px) {
  .azul {
    padding: 40px 0;
    margin: 30px auto;
    width: calc(100% - 10px);
  }
  
  .projects-banner {
    margin: 30px auto;
    width: calc(100% - 10px);
  }
}
/* ---Final do Fundo --- */

/* === RECONHECIMENTOS MELHORADOS === */
.recognition-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 0 15px;
  justify-items: center;
}

.recognition-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 
    0 4px 20px rgba(5, 107, 246, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(5, 107, 246, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 450px;
}

.recognition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #056bf6 0%, #1bc7fb 50%, #056bf6 100%);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

.recognition-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(5, 107, 246, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(5, 107, 246, 0.2);
}

.recognition-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(5, 107, 246, 0.1);
}

.company-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(5, 107, 246, 0.3);
}

.placeholder-logo {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #64748b;
  box-shadow: 0 8px 25px rgba(100, 116, 139, 0.2);
}

.recognition-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recognition-year {
  font-size: 1.1rem;
  font-weight: 700;
  color: #056bf6;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(5, 107, 246, 0.2);
}

.recognition-info {
  flex: 1;
  min-width: 0;
}

.company-name {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
}

.recognition-content {
  text-align: left;
}

.recognition-title {
  font-size: 1.4rem;
  text-align: left;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
  word-wrap: break-word;
  hyphens: auto;
}

.recognition-subtitle {
  font-size: 1rem;
  text-align: left;
  color: #056bf6;
  font-weight: 600;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recognition-date {
  font-size: 0.9rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 500;
}

.recognition-body {
  margin-top: 20px;
}

.recognition-description {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
  text-align: justify;
}

.recognition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.tag {
  background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(5, 107, 246, 0.3);
  transition: all 0.3s ease;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 107, 246, 0.4);
}

.recognition-placeholder {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px dashed #cbd5e1;
  opacity: 0.8;
}

.recognition-placeholder:hover {
  opacity: 1;
  border-color: #94a3b8;
  transform: translateY(-8px) scale(1.01);
}

.recognition-placeholder .recognition-title,
.recognition-placeholder .recognition-subtitle,
.recognition-placeholder .recognition-description {
  color: #64748b;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Responsividade Melhorada */
@media (max-width: 768px) {
  .recognition-container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 10px;
    margin: 30px 0;
  }
  
  .recognition-card {
    padding: 24px;
    max-width: none;
  }
  
  .recognition-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .recognition-meta {
    text-align: center;
  }
  
  .company-logo {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .recognition-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .recognition-subtitle {
    text-align: center;
  }
  
  .recognition-tags {
    justify-content: center;
  }
}

/* === ESTILOS PARA PÁGINA DE AGRADECIMENTO === */
.thank-you-section {
  background: linear-gradient(135deg, #056bf6 0%, #1bc7fb 50%, #58a6ff 100%);
  min-height: 100vh;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.thank-you-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(27, 199, 251, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(88, 166, 255, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.thank-you-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.thank-you-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.thank-you-title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffffff, #e3f2fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-message {
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.process-section {
  margin: 4rem 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.process-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
              0 8px 32px rgba(5, 107, 246, 0.2);
  transition: all 0.3s ease;
  width: 90%;
  margin: 0 auto;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15),
              0 12px 40px rgba(5, 107, 246, 0.3);
}

.process-title {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.process-steps {
  display: grid;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease-out;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffffff, #e3f2fd);
  color: #056bf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.step-text {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.back-button-section {
  text-align: center;
  margin-top: 4rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.modern-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  color: #056bf6;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3),
              0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4),
              0 6px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Animações para página de agradecimento */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsividade para página de agradecimento */
@media (max-width: 768px) {
  .thank-you-section {
    padding: 2rem 0;
  }
  
  .thank-you-container {
    padding: 0 1rem;
  }
  
  .thank-you-title {
    font-size: 2.5rem;
  }
  
  .thank-you-message {
    font-size: 1.1rem;
  }
  
  .process-card {
    padding: 2rem;
    width: 95%;
  }
  
  .process-title {
    font-size: 2.2rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .step-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .thank-you-title {
    font-size: 2rem;
  }
  
  .process-title {
    font-size: 1.8rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .recognition-card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .recognition-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  
  .company-logo {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .recognition-title {
    font-size: 1.1rem;
  }
  
  .recognition-year {
    font-size: 1rem;
    padding: 6px 12px;
  }
  
  .recognition-info {
    text-align: center;
  }
  
  .tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@keyframes GradientAnimation {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

@keyframes glass1 {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

@media screen and (max-width: 600px) {
  .titulo3 {
    font-size: 25px;
    text-align: center;
    text-indent: 2px;
    padding-right: 1.0em;
    margin: 0 auto;
    line-height: 1.0;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

body::-webkit-scrollbar {
  width: 12px;
}

.image2{
  float: right;
  margin-top: -23em;
  position: initial;

}


@media only screen and (max-width: 700px) {
  .image2 {
    padding: 100px;
  }
}

@media only screen and (max-width: 500px) {
  .image2 {
    width: 50%;
  }
}


.rod {
  color: rgb(74, 74, 74);
  height: 5vh;
  text-align: center;
  font-size: 20px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  padding: 15px;

}


/* Showcase de Cases */
.cases-showcase {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 26px;
  padding: 34px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(27,199,251,0.10));
  border: 1px solid rgba(148,163,184,0.18);
  box-shadow: 0 24px 56px rgba(2,6,23,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cases-showcase::before { content:""; position:absolute; inset:auto -60px -80px auto; width:260px; height:260px; border-radius:50%; background:radial-gradient(circle, rgba(27,199,251,0.28), transparent 65%); }
.cases-showcase__content { position: relative; z-index: 1; display:grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items:center; }
.cases-showcase__copy { text-align:left; }
.cases-showcase__badge { display:inline-flex; align-items:center; gap:10px; padding:10px 16px; border-radius:999px; background:rgba(255,255,255,0.88); color:#0f172a; font-weight:800; border:1px solid rgba(148,163,184,0.16); box-shadow:0 10px 26px rgba(2,6,23,0.08); }
.cases-showcase__title { margin-top: 18px; margin-bottom: 16px; text-align:left; }
.cases-showcase__title::after { left: 0; transform: none; width: 92px; bottom: -12px; }
.cases-showcase__text { max-width: 640px; text-align: left; margin: 0 0 24px; font-size: 1.02rem; line-height: 1.7; color: #334155; }
.cases-showcase__meta { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:22px; }
.cases-showcase__meta span { display:inline-flex; align-items:center; justify-content:center; padding:10px 16px; border-radius:999px; background:rgba(255,255,255,0.72); color:#0f172a; font-weight:700; border:1px solid rgba(148,163,184,0.16); box-shadow:0 6px 18px rgba(2,6,23,0.06); }
.cases-showcase__stats { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-bottom:24px; }
.cases-showcase__stats div { padding:14px 16px; border-radius:18px; background:rgba(255,255,255,0.58); border:1px solid rgba(148,163,184,0.16); }
.cases-showcase__stats strong { display:block; font-size:1.15rem; color:#056bf6; margin-bottom:4px; }
.cases-showcase__stats span { color:#334155; font-size:.92rem; }
.cases-showcase__actions { display:flex; justify-content:flex-start; }
.cases-showcase__cta { box-shadow: 0 18px 40px rgba(5,107,246,0.22); }
.cases-showcase__visual { position:relative; min-height: 320px; }
.cases-preview-card { position:relative; height:100%; min-height:320px; border-radius:26px; overflow:hidden; border:1px solid rgba(148,163,184,0.18); box-shadow:0 24px 50px rgba(2,6,23,0.16); }
.cases-preview-card img { width:100%; height:100%; object-fit:cover; display:block; }
.cases-preview-card__overlay { position:absolute; left:18px; right:18px; bottom:18px; padding:18px; border-radius:18px; background:linear-gradient(180deg, rgba(15,23,42,0.18), rgba(15,23,42,0.82)); color:#fff; backdrop-filter:blur(12px); }
.cases-preview-card__overlay span { display:inline-block; margin-bottom:8px; font-size:.82rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; color:#93c5fd; }
.cases-preview-card__overlay strong { font-size:1.15rem; line-height:1.4; }
.cases-floating-chip { position:absolute; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,0.92); color:#0f172a; font-weight:800; box-shadow:0 12px 28px rgba(2,6,23,0.12); }
.cases-floating-chip.chip-one { top:18px; left:-10px; }
.cases-floating-chip.chip-two { right:8px; bottom:22px; }
.cases-swiper-shell { margin-top: 6px; }
html.dark .cases-showcase { background: linear-gradient(135deg, rgba(15,23,42,0.88), rgba(15,23,42,0.78)); border: 1px solid rgba(148,163,184,0.20); box-shadow: 0 28px 60px rgba(2,6,23,0.42); }
html.dark .cases-showcase__badge,
html.dark .cases-showcase__meta span,
html.dark .cases-showcase__stats div,
html.dark .cases-floating-chip { background: rgba(15,23,42,0.84); color: #e5e7eb; border-color: rgba(148,163,184,0.22); }
html.dark .cases-showcase__text,
html.dark .cases-showcase__stats span { color: #cbd5e1; }
@media (max-width: 900px) {
  .cases-showcase__content { grid-template-columns: 1fr; }
  .cases-showcase__copy, .cases-showcase__title, .cases-showcase__text { text-align:center; }
  .cases-showcase__title::after { left:50%; transform:translateX(-50%); }
  .cases-showcase__meta, .cases-showcase__actions { justify-content:center; }
}
@media (max-width: 768px) {
  .cases-showcase { width: calc(100% - 20px); padding: 24px 18px; border-radius: 24px; }
  .cases-showcase__stats { grid-template-columns: 1fr; }
  .cases-showcase__visual { min-height: 260px; }
  .cases-preview-card { min-height:260px; }
  .cases-floating-chip { font-size:.82rem; }
}

/* Modernização da Galeria Swiper - Glassmorphism */
.swiper-container {
  width: 85%;
  max-width: 900px;
  height: 450px;
  margin: 40px auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 20px 60px rgba(5, 107, 246, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  display: block;
}

.swiper-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(5, 107, 246, 0.03) 0%, 
    rgba(27, 199, 251, 0.03) 100%);
  pointer-events: none;
  z-index: 1;
}

.swiper-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 45px rgba(0, 0, 0, 0.15),
    0 25px 80px rgba(5, 107, 246, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Slides modernizados */
.swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.95) contrast(1.05);
}

.swiper-slide:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1);
}

/* Overlay sutil nos slides */
.swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(5, 107, 246, 0.1) 0%, 
    rgba(27, 199, 251, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
  z-index: 3;
}

.swiper-slide:hover::after {
  opacity: 1;
}

/* Paginação modernizada */
.swiper-pagination {
  bottom: 15px !important;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 12px;
  height: 12px;
  margin: 0 6px;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(5, 107, 246, 0.3);
}

.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}

/* Navegação modernizada */
.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  color: #056bf6;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
  outline: 2px solid #056bf6;
  outline-offset: 2px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(5, 107, 246, 0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* Título da galeria modernizado */
.titulo4 {
  position: relative;
  margin-bottom: 30px;
}

.titulo4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #056bf6, #1bc7fb);
  border-radius: 2px;
  opacity: 0.8;
}

.titulo4--spotlight {
  background: linear-gradient(90deg, #93c5fd 0%, #38bdf8 20%, #ffffff 50%, #38bdf8 80%, #056bf6 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleSpotlight 6s ease-in-out infinite, titleFloatSoft 4.5s ease-in-out infinite;
  will-change: background-position, transform;
}

.titulo4--spotlight::after {
  width: 110px;
  background: linear-gradient(90deg, rgba(5,107,246,0.4), #38bdf8, rgba(5,107,246,0.4));
  box-shadow: 0 0 20px rgba(56,189,248,0.35);
  animation: titleLinePulse 3.2s ease-in-out infinite;
}

@keyframes titleSpotlight {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes titleFloatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes titleLinePulse {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scaleX(0.96); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .titulo4--spotlight,
  .titulo4--spotlight::after {
    animation: none;
  }
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
  .swiper-container {
    width: 95%;
    height: 300px; /* Altura mais adequada */
    padding: 15px;
    margin: 20px auto;
  }
  
  /* Botões maiores e mais acessíveis */
  .swiper-button-next,
  .swiper-button-prev {
    width: 45px;
    height: 45px;
    margin-top: -22px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
  }
  
  /* Paginação mais visível */
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .swiper-container {
    width: 100%;
    height: 250px;
    padding: 10px;
    margin: 15px auto;
    border-radius: 15px;
  }
  
  /* Slides com melhor proporção */
  .swiper-slide {
    border-radius: 12px;
  }
  
  .swiper-slide img {
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
  }
  
  /* Título mais compacto */
  .titulo4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

@media (max-width: 360px) {
  .swiper-container {
    height: 220px;
    padding: 8px;
  }
  
  /* Botões menores em telas muito pequenas */
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
    margin-top: -17px;
  }
}

/* Animação de entrada */
@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.swiper-container {
  animation: slideInFromBottom 0.8s ease-out;
}

.profile-pic {
  width: 250px; 
  height: 250px;
  border-radius: 50%;
  overflow: hidden; 
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.profile-pic::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 3px solid #056bf6;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out infinite;
}

.profile-pic img {
  width: 100%;  
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
}


.terminal-simulado {
  background: linear-gradient(135deg, rgba(16,24,40,0.95) 0%, rgba(15,23,42,0.92) 50%, rgba(16,24,40,0.95) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 15px;
  padding: 2.5em 2em 2em 2em;
  color: #e5e7eb;
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  width: 75%;
  max-width: 800px;
  margin: 30px auto;
  box-shadow:
    0 20px 40px rgba(56, 189, 248, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(148, 163, 184, 0.18);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.terminal-header {
  position: absolute;
  top: 15px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.terminal-header::after {
  content: 'anderson@dev:~';
  color: rgba(148, 163, 184, 0.85);
  font-size: 12px;
  margin-left: 15px;
  font-family: 'JetBrains Mono', monospace;
}

.terminal-simulado::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(56, 189, 248, 0.06) 50%, transparent 70%);
  pointer-events: none;
}

.terminal-simulado:hover {
  transform: translateY(-2px);
  box-shadow:
    0 25px 50px rgba(56, 189, 248, 0.18),
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(148, 163, 184, 0.22);
}

.terminal-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}

.terminal-dot:hover {
  transform: scale(1.2);
  filter: brightness(1.3);
}

.dot-red {
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.dot-yellow {
  background: linear-gradient(135deg, #ffd93d, #ffb300);
  box-shadow: 0 2px 8px rgba(255, 217, 61, 0.4);
}

.dot-green {
  background: linear-gradient(135deg, #6bcf7f, #4caf50);
  box-shadow: 0 2px 8px rgba(107, 207, 127, 0.4);
}

.terminal-content {
  white-space: pre-line;
  position: relative;
  z-index: 2;
  line-height: 1.6;
  font-size: 14px;
  padding-top: 10px;
}

.terminal-content .command { color: #38bdf8; font-weight: 600; }

.terminal-content .output { color: #93c5fd; margin-left: 20px; }

.terminal-content .python-keyword { color: #7dd3fc; font-weight: 600; }

.terminal-content .string { color: #a7f3d0; }

.terminal-content .comment { color: #94a3b8; font-style: italic; }

/* Cursor piscando */
.terminal-cursor {
  display: inline-block;
  background-color: #38bdf8;
  width: 2px;
  height: 1.2em;
  animation: blink 1.2s infinite;
  margin-left: 1px;
  vertical-align: text-bottom;
}

.terminal-cursor::before {
  content: '';
  /* Remove qualquer conteúdo de texto */
}

@keyframes blink {
  0%, 45% { opacity: 1; box-shadow: 0 0 5px rgba(56, 189, 248, 0.5); }
  46%, 100% { opacity: 0; box-shadow: none; }
}

@media screen and (min-width: 1600px) {
  .terminal-simulado {
    max-width: 700px;
  }
}

@media screen and (max-width: 768px) {
  .terminal-simulado {
    width: 95%;
    margin: 20px auto;
    padding: 2em 1.5em 1.5em 1.5em;
    font-size: 12px;
  }
  
  .terminal-header::after {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .terminal-simulado {
    padding: 2em 1em 1em 1em;
    font-size: 11px;
  }
  
  .terminal-dot {
    width: 12px;
    height: 12px;
  }
}


.github-btn {
  text-align: center;
  margin: 20px 0;
}

.github-btn a {
  display: inline-flex;
  align-items: center;
  background: #056bf6;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s ease;
}

.github-btn a:hover {
  background: #428ffc;
}

.github-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}


.maccode-container {
  background: #2d2d2d;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 700px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-family: 'Courier New', monospace;
  overflow: hidden;
}

.maccode-header {
  background-color: #2d2d2d;
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 30px;
}

.maccode-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.maccode-header .red {
  background-color: #ff5f56;
}
.maccode-header .yellow {
  background-color: #ffbd2e;
}
.maccode-header .green {
  background-color: #27c93f;
}

.maccode-block {
  padding: 20px;
  color: #c0e1ff;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
  text-align: left;
}

/* Modernização do Buscador com Glassmorphism - Versão Limpa */
.buscador {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

#buscaProjetos {
  padding: 15px 20px;
  width: 85%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  font-size: 16px;
  color: #333;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  outline: none;
}

#buscaProjetos::placeholder {
  color: rgba(51, 51, 51, 0.6);
  font-weight: 500;
}

#buscaProjetos:focus {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(5, 107, 246, 0.5);
  box-shadow: 0 12px 40px rgba(5, 107, 246, 0.15),
              0 0 0 3px rgba(5, 107, 246, 0.1);
  transform: translateY(-2px);
}

#buscaProjetos:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}


.container {
  max-width: 900px;
  margin: auto;
  background: #fff; /* Fundo branco para o conteúdo */
  padding: 30px;
  border-radius: 8px; /* Bordas arredondadas */
}

.container2 {
  max-width: 9px;
  margin: auto;
  background: #fff; /* Fundo branco para o conteúdo */
  padding: 30px;
  border-radius: 8px; /* Bordas arredondadas */
}
.main-title {
  color: #007bff; /* Cor azul similar ao site */
  text-align: center;
  margin-bottom: 30px;
}
.profile-section {
  text-align: center;
  margin-bottom: 20px;
}
.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #007bff; /* Borda azul na imagem */
}
h2 {
  color: #0056b3; /* Tom de azul mais escuro para subtítulos */
  border-bottom: none;
  box-shadow: none;
  padding-bottom: 5px;
  margin-top: 30px;
  margin-bottom: 15px;
}
strong {
  color: #0056b3; /* Destacar palavras-chave com azul */
}

@media screen and (max-width: 500px) {
  .profile-section {
  text-align: center;
  margin-bottom: 10px;

  }
}

/* Estilos específicos para dispositivos móveis */
@media screen and (max-width: 768px) {
  .profile-section {
    text-align: center;
    margin-bottom: 10px;
  }
}

/* Modernização do Seletor de Categorias */
.filtro-categorias {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

#categoriaFiltro {
  padding: 12px 20px;
  font-size: 16px;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  color: #333;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#categoriaFiltro:focus {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(27, 199, 251, 0.5);
  box-shadow: 0 12px 40px rgba(27, 199, 251, 0.15),
              0 0 0 3px rgba(27, 199, 251, 0.1);
  transform: translateY(-2px);
}

#categoriaFiltro:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* Seta customizada para o select */
.filtro-categorias::after {
  content: '▼';
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%) translateX(100px);
  font-size: 12px;
  color: rgba(51, 51, 51, 0.7);
  pointer-events: none;
  transition: all 0.3s ease;
}

.filtro-categorias:hover::after {
  color: #056bf6;
  transform: translate(50%, -50%) translateX(100px) scale(1.1);
}

/* Estilos para as opções do select */
#categoriaFiltro option {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #333;
  padding: 10px;
  border: none;
}

#categoriaFiltro option:hover,
#categoriaFiltro option:checked {
  background: linear-gradient(135deg, 
    rgba(5, 107, 246, 0.1) 0%, 
    rgba(27, 199, 251, 0.1) 100%);
  color: #056bf6;
}

/* Animações */
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.buscador, .filtro-categorias {
  animation: slideInFromTop 0.6s ease-out;
}

.filtro-categorias {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* Responsividade Mobile */
@media screen and (max-width: 768px) {
  .filtro-categorias::after {
    transform: translate(50%, -50%) translateX(80px);
  }
  
  #buscaProjetos {
    width: 90%;
    max-width: 350px;
    padding: 12px 15px;
  }
  
  #categoriaFiltro {
    min-width: 200px;
    padding: 10px 15px;
  }
}

@media screen and (max-width: 480px) {
  .filtro-categorias::after {
    transform: translate(50%, -50%) translateX(60px);
  }
  
  #buscaProjetos {
    width: 95%;
    padding: 10px 12px;
    font-size: 14px;
  }
  
  #categoriaFiltro {
    min-width: 180px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Estilos para o formulário de orçamento */
.form-orcamento {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

/* Labels com gradiente */
.form-orcamento label {
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}

/* Modernização dos inputs também para consistência */
.form-orcamento input[type="text"],
.form-orcamento input[type="email"],
.form-orcamento input[type="tel"],
.form-orcamento input[type="date"],
.form-orcamento input[type="number"],
.form-orcamento textarea {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  outline: none;
  width: 100%;
}

.form-orcamento input[type="text"]:focus,
.form-orcamento input[type="email"]:focus,
.form-orcamento input[type="tel"]:focus,
.form-orcamento input[type="date"]:focus,
.form-orcamento input[type="number"]:focus,
.form-orcamento textarea:focus {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(5, 107, 246, 0.5);
  box-shadow: 0 12px 40px rgba(5, 107, 246, 0.15),
              0 0 0 3px rgba(5, 107, 246, 0.1);
  transform: translateY(-2px);
}

.form-orcamento input[type="text"]:hover,
.form-orcamento input[type="email"]:hover,
.form-orcamento input[type="tel"]:hover,
.form-orcamento input[type="date"]:hover,
.form-orcamento input[type="number"]:hover,
.form-orcamento textarea:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Placeholder styling */
.form-orcamento input::placeholder,
.form-orcamento textarea::placeholder {
  color: rgba(51, 51, 51, 0.6);
  font-weight: 500;
}

/* Modernização dos Seletores do Formulário de Orçamento */
.form-orcamento select {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #333;
  cursor: pointer;
  /* Transição específica para evitar animação da seta */
  transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 50px;
}

.form-orcamento select:focus {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(5, 107, 246, 0.5);
  box-shadow: 0 12px 40px rgba(5, 107, 246, 0.15),
              0 0 0 3px rgba(5, 107, 246, 0.1);
  transform: translateY(-2px);
}

.form-orcamento select:hover {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Estilização das opções do select */
.form-orcamento select option {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #333;
  padding: 12px;
  border: none;
}

.form-orcamento select option:hover {
  background: linear-gradient(135deg, rgba(5, 107, 246, 0.1), rgba(27, 199, 251, 0.1));
}

.form-orcamento select option:checked {
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  color: white;
}

.form-orcamento textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(to right, #056bf6, #1bc7fb);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  margin: 30px auto 0;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(5, 107, 246, 0.4);
}

.btn-submit:active {
  transform: translateY(1px);
}

.btn-submit.loading {
  background: #7a7a7a;
  cursor: not-allowed;
  opacity: 0.8;
}

/* Estilos para validação do formulário */
.form-orcamento input.error,
.form-orcamento select.error,
.form-orcamento textarea.error {
  border-color: #ff3860;
  box-shadow: 0 0 0 1px #ff3860;
}

.error-message {
  color: #ff3860;
  font-size: 14px;
  margin-top: 5px;
  font-weight: bold;
}

/* Responsividade aprimorada */
@media (max-width: 768px) {
  .form-orcamento {
    padding: 15px;
    width: 90%;
  }
  
  .form-orcamento select,
  .form-orcamento input,
  .form-orcamento textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .form-orcamento select {
    background-size: 14px;
    padding-right: 45px;
  }
  
  .form-orcamento label {
    font-size: 14px;
  }
  
  .btn-submit {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .form-orcamento select,
  .form-orcamento input,
  .form-orcamento textarea {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 12px;
  }
  
  .form-orcamento select {
    background-size: 12px;
    padding-right: 40px;
  }
}

/* Melhorias de UX para o campo de data */
.form-group[data-field="date"] {
  position: relative;
}

/* Placeholder personalizado para campo de data */
.form-orcamento input[type="date"] {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  outline: none;
  width: 100%;
  /* Forçar aparência nativa em mobile */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Garantir que o campo seja visível */
  min-height: 50px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Texto de ajuda quando campo está vazio */
.form-orcamento input[type="date"]:invalid {
  color: transparent;
}

.form-orcamento input[type="date"]:invalid:before {
  content: "Clique para selecionar uma data";
  color: rgba(51, 51, 51, 0.6);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-weight: 500;
}

/* Dica visual com ícone animado */
.form-group:has(input[type="date"]) {
  position: relative;
}

.form-group:has(input[type="date"]):after {
  content: "📅";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(5, 107, 246, 0.7);
  pointer-events: none;
  opacity: 1;
  transition: all 0.3s ease;
  animation: pulseHint 2s infinite;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group:has(input[type="date"]:focus):after,
.form-group:has(input[type="date"]:valid):after {
  opacity: 0;
  transform: translateY(-50%) scale(0.8);
}

/* Animação de pulso para chamar atenção */
@keyframes pulseHint {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
  }
}

/* Fallback para navegadores que não suportam :has() */
.date-field-container {
  position: relative;
}

.date-field-container .date-hint {
  content: "📅";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: rgba(5, 107, 246, 0.7);
  pointer-events: none;
  opacity: 1;
  transition: all 0.3s ease;
  animation: pulseHint 2s infinite;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Estilo do ícone do calendário melhorado */
.form-orcamento input[type="date"]::-webkit-calendar-picker-indicator {
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23056bf6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e") no-repeat;
  background-size: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(5, 107, 246, 0.2));
}

.form-orcamento input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(5, 107, 246, 0.3));
}

/* Tooltip adicional */
.form-orcamento input[type="date"] {
  position: relative;
}

.form-orcamento input[type="date"]:hover:before {
  content: "Clique no ícone do calendário para selecionar";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 107, 246, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  animation: fadeInTooltip 0.3s ease forwards;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInTooltip {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Correções específicas para mobile */
@media (max-width: 768px) {
  .form-orcamento input[type="date"] {
    padding: 12px 16px;
    font-size: 16px; /* Manter 16px para evitar zoom no iOS */
    min-height: 48px;
    /* Garantir visibilidade total */
    opacity: 1;
    visibility: visible;
    display: block !important;
  }
  
  .form-orcamento input[type="date"]::-webkit-calendar-picker-indicator {
    background-size: 18px;
    width: 18px;
    height: 18px;
  }
  
  .form-group:has(input[type="date"]):after,
  .date-field-container .date-hint {
    font-size: 11px;
    padding: 3px 6px;
    right: 12px;
  }
  
  .form-orcamento input[type="date"]:hover:before {
    font-size: 11px;
    padding: 5px 10px;
    bottom: -30px;
  }
}

@media (max-width: 480px) {
  .form-orcamento input[type="date"] {
    padding: 12px 14px;
    font-size: 16px; /* Importante: manter 16px no mobile */
    border-radius: 12px;
    min-height: 44px;
    /* Forçar exibição */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .form-orcamento input[type="date"]::-webkit-calendar-picker-indicator {
    background-size: 16px;
    width: 16px;
    height: 16px;
  }
  
  .form-group:has(input[type="date"]):after,
  .date-field-container .date-hint {
    content: "📅";
    font-size: 16px;
    padding: 2px 4px;
  }
  
  .form-orcamento input[type="date"]:hover:before {
    content: "Toque no calendário";
    font-size: 10px;
    bottom: -25px;
  }
}

/* Fallback para navegadores que não suportam input date */
.form-orcamento input[type="date"]:valid {
  color: #333;
}

/* Garantir que o label do campo de data seja visível */
.form-orcamento label[for="prazo"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-bottom: 8px;
}

/* === RECONHECIMENTOS === */
.recognition-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin: 30px 0;
  padding: 0 10px;
}

.recognition-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(5, 107, 246, 0.1);
  border: 1px solid rgba(5, 107, 246, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.recognition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #056bf6, #1bc7fb, #056bf6);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.recognition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(5, 107, 246, 0.2);
  border-color: rgba(5, 107, 246, 0.2);
}

.recognition-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.company-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.placeholder-logo {
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  color: #6366f1;
}

.recognition-info {
  flex: 1;
}

.recognition-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.company-name {
  font-size: 1rem;
  color: #056bf6;
  font-weight: 600;
  margin: 0;
}

.recognition-date {
  font-size: 0.9rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 8px;
}

.recognition-body {
  margin-top: 15px;
}

.recognition-description {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
  text-align: left;
}

.recognition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.recognition-placeholder {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 2px dashed #cbd5e1;
  opacity: 0.7;
}

.recognition-placeholder:hover {
  opacity: 1;
  border-color: #94a3b8;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Responsividade */
@media (max-width: 768px) {
  .recognition-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 5px;
  }
  
  .recognition-card {
    padding: 20px;
  }
  
  .company-logo {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .recognition-title {
    font-size: 1.1rem;
  }
  
  .recognition-header {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .recognition-card {
    padding: 15px;
    border-radius: 15px;
  }
  
  .recognition-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .recognition-info {
    text-align: center;
  }
  
  .recognition-tags {
    justify-content: center;
  }
}
.menu .theme-toggle .icon { font-size: 16px; position: relative; z-index: 1; color: #111827; opacity: 0.95; transition: color 0.25s ease, opacity 0.25s ease; display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; cursor: pointer; pointer-events: auto; }
.menu .theme-toggle .icon svg { width: 16px; height: 16px; display: block; fill: currentColor; }
.menu .theme-toggle .thumb { position: absolute; top: 3px; left: 3px; right: auto; width: 48px; height: 34px; border-radius: 9999px; background: rgba(255, 255, 255, 0.55); box-shadow: 0 10px 20px rgba(0,0,0,0.15), inset 0 0 10px rgba(255,255,255,0.45); transition: left 0.25s ease, right 0.25s ease, background 0.25s ease; z-index: 0; pointer-events: none; }
.menu .theme-toggle.mode-light .thumb { left: 3px; right: auto; }
.menu .theme-toggle.mode-dark .thumb { left: auto; right: 3px; }
.menu .theme-toggle.mode-light .icon-sun { color: #111827; opacity: 1; }
.menu .theme-toggle.mode-dark .icon-moon { color: #e5e7eb; opacity: 1; }
.menu .theme-toggle.mode-dark .icon-sun { color: #e5e7eb; opacity: 0.7; }
.menu .theme-toggle.mode-light .icon-moon { color: #1f2937; opacity: 0.7; }
.menu .theme-toggle.mode-dark .icon-sun { color: #e5e7eb; opacity: 0.85; }

/* Controle de paginação de projetos */
.paginacao-projetos { text-align: center; margin: 20px 0 40px; }
#verMaisBtn { padding: 12px 24px; border-radius: 9999px; background: linear-gradient(to right, #056bf6, #1bc7fb); color: #ffffff; font-weight: 700; font-size: 16px; cursor: pointer; border: none; box-shadow: 0 8px 24px rgba(0,0,0,0.15); transition: transform 0.2s ease, box-shadow 0.2s ease; }
#verMaisBtn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

/* Botão de compartilhar */
.btn-share { border: 2px solid #ffffff; color: #ffffff; }
.btn-share:hover { background: #ffffff; color: #056bf6; transform: translateY(-3px); }
.share-fab { position: fixed; right: 18px; bottom: 18px; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(to right,#056bf6,#1bc7fb); color: #fff; border: none; box-shadow: 0 10px 24px rgba(0,0,0,0.18); cursor: pointer; display: inline-flex; align-items:center; justify-content:center; font-size: 18px; z-index: 1000; }
.share-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.22); }
.share-popover { position: fixed; inset: 0; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; z-index: 2000; }
.share-popover .share-options { background: #fff; border-radius: 16px; padding: 20px; width: 320px; box-shadow: 0 20px 45px rgba(0,0,0,0.25); display: grid; gap: 10px; position: relative; }
.share-popover .share-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(0,0,0,0.08); color: #111827; font-size: 18px; cursor: pointer; }
.share-option { display: block; text-align: center; padding: 10px 14px; border-radius: 12px; text-decoration: none; font-weight: 600; color: #fff; background: linear-gradient(135deg,#056bf6,#1bc7fb); border: none; }
.share-option.share-copy { color: #056bf6; background: #f1f5f9; border: 1px solid rgba(5,107,246,0.25); }
html.dark .share-popover .share-options { background: #0f172a; box-shadow: 0 20px 45px rgba(2,6,23,0.6); }
html.dark .share-popover .share-close { background: rgba(148,163,184,0.25); color: #e5e7eb; }
html.dark .share-option.share-copy { color: #e5e7eb; background: rgba(17,24,39,0.7); border: 1px solid rgba(148,163,184,0.25); }
.rodapé {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 24px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.rodapé > article:empty {
  display: none;
}

.footer-social {
  padding: 0;
}

.footer-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(27, 199, 251, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

.footer-shell::before {
  content: "";
  position: absolute;
  inset: auto -110px -120px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 107, 246, 0.14), transparent 70%);
  pointer-events: none;
}

.footer-brand,
.footer-links {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(5, 107, 246, 0.08);
  border: 1px solid rgba(5, 107, 246, 0.12);
  color: #056bf6;
  font-weight: 700;
}

.footer-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.footer-description {
  max-width: 480px;
  color: #475569;
  line-height: 1.75;
  font-size: 1rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #334155;
  font-weight: 600;
}

.footer-links {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.footer-links__head {
  margin-bottom: 18px;
}

.footer-links__head strong {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 1.05rem;
}

.footer-links__head span {
  color: #64748b;
  line-height: 1.6;
}

.footer-links .social-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
  margin: 0;
  padding: 0;
}

.footer-links .social-btn {
  display: grid;
  grid-template-columns: 48px 1fr 18px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 20px;
  color: #0f172a;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.footer-links .social-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 107, 246, 0.22);
  box-shadow: 0 18px 36px rgba(5, 107, 246, 0.14);
  background: rgba(255, 255, 255, 0.96);
}

.social-btn__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px rgba(5, 107, 246, 0.2);
}

.social-btn__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.social-btn__body strong {
  color: inherit;
  font-size: 0.98rem;
  line-height: 1.2;
}

.social-btn__body small {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.35;
}

.social-btn__arrow {
  color: #94a3b8;
  font-size: 0.95rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-links .social-btn:hover .social-btn__arrow {
  color: #056bf6;
  transform: translate(2px, -2px);
}

.social-btn.github .social-btn__icon {
  background: linear-gradient(135deg, #111827, #374151);
}

.social-btn.linkedin .social-btn__icon {
  background: linear-gradient(135deg, #0077b5, #1498d5);
}

.social-btn.instagram .social-btn__icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
}

.social-btn.behance .social-btn__icon {
  background: linear-gradient(135deg, #1769ff, #4f7bff);
}

.social-btn.artstation .social-btn__icon {
  background: linear-gradient(135deg, #13aff0, #1cc8ff);
}

.social-btn.fivehundredpx .social-btn__icon {
  background: linear-gradient(135deg, #0099e5, #00b5f6);
}

.social-btn.hackaday .social-btn__icon {
  background: linear-gradient(135deg, #ff6600, #ff8a3d);
}

.social-btn.workana .social-btn__icon {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.rod {
  margin: 16px 0 0;
  padding: 12px 4px 2px;
  height: auto;
  text-align: center;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

html.dark .rodapé {
  background: transparent;
  border: 0;
  box-shadow: none;
}

html.dark .footer-shell {
  background:
    radial-gradient(circle at top right, rgba(27, 199, 251, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(11, 18, 32, 0.98));
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.42);
}

html.dark .footer-kicker {
  background: rgba(5, 107, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.2);
  color: #7dd3fc;
}

html.dark .footer-title,
html.dark .footer-links__head strong,
html.dark .footer-links .social-btn,
html.dark .social-btn__body strong {
  color: #e5eefc;
}

html.dark .footer-description,
html.dark .footer-links__head span,
html.dark .social-btn__body small,
html.dark .rod {
  color: #cbd5e1;
}

html.dark .footer-badges span,
html.dark .footer-links,
html.dark .footer-links .social-btn {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: none;
}

html.dark .footer-links {
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.05);
}

html.dark .social-btn__arrow {
  color: #94a3b8;
}

@media (max-width: 900px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rodapé {
    width: calc(100% - 20px);
    margin: 22px auto 18px;
  }

  .footer-shell {
    padding: 22px 18px;
    border-radius: 24px;
    gap: 18px;
  }

  .footer-links {
    padding: 18px;
    border-radius: 22px;
  }

  .footer-links .social-container {
    grid-template-columns: 1fr;
  }

  .footer-links .social-btn {
    width: 100%;
    justify-self: stretch;
  }
}

.who-card { max-width: 1100px; width: calc(100% - 32px); margin: 28px auto; padding: 30px; border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08)); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border: 1px solid rgba(148,163,184,0.22); box-shadow: 0 24px 56px rgba(2,6,23,0.16); position: relative; overflow: hidden; }
.who-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at top right, rgba(27,199,251,0.16), transparent 30%); pointer-events:none; }
.who-head { position: relative; z-index: 1; text-align: center; margin-bottom: 22px; }
.who-kicker { display:inline-flex; align-items:center; gap:8px; width: fit-content; padding:10px 16px; border-radius:999px; background: rgba(5,107,246,0.12); border:1px solid rgba(5,107,246,0.18); color:#38bdf8; font-weight:700; margin: 0 auto 14px; }
.who-title { font-size: 2rem; font-weight: 800; background: linear-gradient(270deg, #056bf6, #1bc7fb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }
.who-description { max-width: 640px; margin: 0 auto; color: #475569; line-height: 1.75; text-align: center; word-spacing: normal; letter-spacing: normal; }
.who-list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; }
.who-item { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start; padding: 18px; border-radius: 22px; background: rgba(255,255,255,0.22); border: 1px solid rgba(226,232,240,0.42); box-shadow: 0 12px 28px rgba(15,23,42,0.08); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.who-item::before { content:""; position:absolute; inset:0; background: linear-gradient(135deg, rgba(5,107,246,0.12), transparent 55%); opacity:0; transition: opacity .25s ease; }
.who-item:hover { transform: translateY(-6px); border-color: rgba(56,189,248,0.34); box-shadow: 0 18px 36px rgba(5,107,246,0.14); }
.who-item:hover::before { opacity: 1; }
.who-item i { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, #056bf6, #1bc7fb); color: #fff !important; font-size: 1.1rem; box-shadow: 0 14px 28px rgba(5,107,246,0.22); transition: transform .25s ease, box-shadow .25s ease; }
.who-item:hover i { transform: scale(1.08) translateY(-2px); }
.who-item__content { min-width: 0; }
.who-item__content strong { display:block; color:#0f172a; font-size:1.05rem; margin-bottom:6px; text-align:left; }
.who-item__content span { display:block; color:#475569; line-height:1.6; text-align:left; }
.who-item small { grid-column: 2; justify-self: start; margin-top: 8px; padding:8px 12px; border-radius:999px; background: rgba(255,255,255,0.72); border:1px solid rgba(148,163,184,0.2); color:#056bf6; font-weight:700; letter-spacing:.02em; }
html.dark .who-card { background: linear-gradient(180deg, rgba(15,23,42,0.78), rgba(2,6,23,0.72)); border-color: rgba(148,163,184,0.18); box-shadow: 0 24px 56px rgba(0,0,0,0.42); }
html.dark .who-description, html.dark .who-item__content span { color:#cbd5e1; }
html.dark .who-item { background: rgba(15,23,42,0.72); border-color: rgba(148,163,184,0.16); box-shadow: none; }
html.dark .who-item__content strong { color:#e5eefc; }
html.dark .who-item small { background: rgba(30,41,59,0.9); border-color: rgba(148,163,184,0.16); color:#7dd3fc; }
@media (max-width: 768px) { .who-card { width: calc(100% - 20px); padding: 24px; border-radius: 24px; } .who-head { margin-bottom: 18px; } .who-kicker { margin-bottom: 12px; } .who-title { font-size: 1.7rem; } .who-description { max-width: none; } .who-item { grid-template-columns: 44px 1fr; padding: 16px; } .who-item i { width: 44px; height: 44px; border-radius: 14px; } .who-item small { grid-column: 2; justify-self: start; margin-top: 6px; } }

.feature-card { position: relative; }
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, #056bf6, #1bc7fb);
  opacity: 0;
  transform: scale(0.985);
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.feature-card:hover::before {
  opacity: 1;
  transform: scale(1);
}
html.dark .feature-card::before {
  background: linear-gradient(90deg, #1e3a8a, #38bdf8);
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; }
.reveal.reveal-from-left { transform: translateX(-24px); }
.reveal.reveal-from-right { transform: translateX(24px); }
.reveal-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; } }

h1, h2, h3, h4, h5, h6,
.titulo3, .titulo4,
.feature-title, .who-title, .cta-title {
  font-family: "Geist Variable", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  letter-spacing: -0.01em;
}

/* CTA de orçamento na home */
.budget-cta-home {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.budget-cta-home__intro {
  text-align: center;
  margin-bottom: 26px;
}

.budget-cta-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(5, 107, 246, 0.08);
  border: 1px solid rgba(5, 107, 246, 0.14);
  color: #056bf6;
  font-weight: 700;
}

.budget-cta-home__card {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(27, 199, 251, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.92));
  border: 1px solid rgba(5, 107, 246, 0.12);
  box-shadow: 0 22px 50px rgba(5, 107, 246, 0.12);
  text-align: left;
}

.budget-cta-home__card::before {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 107, 246, 0.12), transparent 68%);
  pointer-events: none;
}

.budget-cta-home__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.budget-cta-home__copy {
  text-align: left;
}

.budget-cta-home__copy > * {
  max-width: 680px;
}

.budget-cta-home__copy h4 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.18;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.budget-cta-home__copy p {
  margin-bottom: 22px;
  line-height: 1.7;
  color: #334155;
}

.budget-cta-home__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.budget-cta-home__benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  min-height: 56px;
  flex: 1 1 calc(50% - 7px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #0f172a;
  font-weight: 600;
}

.budget-cta-home__benefits i {
  color: #056bf6;
}

.budget-cta-home__side {
  display: grid;
  gap: 16px;
  align-content: center;
  align-self: stretch;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  text-align: left;
}

.budget-cta-home__mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.budget-cta-home__mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 1rem;
}

.budget-cta-home__mini-card span {
  display: block;
  line-height: 1.6;
  color: #475569;
}

.budget-cta-home__button {
  width: fit-content;
  margin-top: 4px;
}

html.dark .budget-cta-home__eyebrow {
  background: rgba(27, 199, 251, 0.12);
  border-color: rgba(56, 189, 248, 0.2);
  color: #7dd3fc;
}

html.dark .budget-cta-home__card {
  background:
    radial-gradient(circle at top right, rgba(27, 199, 251, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(11, 18, 32, 0.98));
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.48);
}

html.dark .budget-cta-home__copy h4,
html.dark .budget-cta-home__benefits span,
html.dark .budget-cta-home__mini-card strong {
  color: #e5eefc;
}

html.dark .budget-cta-home__copy p,
html.dark .budget-cta-home__mini-card span {
  color: #cbd5e1;
}

html.dark .budget-cta-home__benefits span,
html.dark .budget-cta-home__mini-card {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: none;
}

html.dark .budget-cta-home__side {
  background: rgba(15, 23, 42, 0.56);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.06);
}

@media (max-width: 960px) {
  .budget-cta-home__content {
    grid-template-columns: 1fr;
  }

  .budget-cta-home__button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .budget-cta-home {
    padding: 0 16px 24px;
  }

  .budget-cta-home__card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .budget-cta-home__benefits {
    display: grid;
    grid-template-columns: 1fr;
  }

  .budget-cta-home__benefits span {
    flex: initial;
  }

  .budget-cta-home__side {
    padding: 18px;
  }
}

/* CTA de reconhecimentos na home */
.recognition-cta-home {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.recognition-cta-home__intro {
  text-align: center;
  margin-bottom: 26px;
}

.recognition-cta-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.18);
  color: #c27a07;
  font-weight: 700;
}

.recognition-cta-home__card {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 235, 0.92));
  border: 1px solid rgba(245, 158, 11, 0.16);
  box-shadow: 0 22px 50px rgba(245, 158, 11, 0.12);
  text-align: left;
}

.recognition-cta-home__card::before {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12), transparent 68%);
  pointer-events: none;
}

.recognition-cta-home__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.recognition-cta-home__copy > * {
  max-width: 700px;
}

.recognition-cta-home__copy h4 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.18;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.recognition-cta-home__copy p {
  margin-bottom: 22px;
  line-height: 1.7;
  color: #334155;
}

.recognition-cta-home__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.recognition-cta-home__chips span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  color: #0f172a;
  font-weight: 600;
}

.recognition-cta-home__chips i {
  color: #c27a07;
}

.recognition-cta-home__side {
  display: grid;
  gap: 16px;
  align-content: center;
  align-self: stretch;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.recognition-cta-home__mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.recognition-cta-home__mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 1rem;
}

.recognition-cta-home__mini-card span {
  display: block;
  line-height: 1.6;
  color: #475569;
}

.recognition-cta-home__button {
  width: fit-content;
  margin-top: 4px;
}

html.dark .recognition-cta-home__eyebrow {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

html.dark .recognition-cta-home__card {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(11, 18, 32, 0.98));
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.48);
}

html.dark .recognition-cta-home__copy h4,
html.dark .recognition-cta-home__chips span,
html.dark .recognition-cta-home__mini-card strong {
  color: #e5eefc;
}

html.dark .recognition-cta-home__copy p,
html.dark .recognition-cta-home__mini-card span {
  color: #cbd5e1;
}

html.dark .recognition-cta-home__chips span,
html.dark .recognition-cta-home__mini-card {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: none;
}

html.dark .recognition-cta-home__side {
  background: rgba(15, 23, 42, 0.56);
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.06);
}

@media (max-width: 960px) {
  .recognition-cta-home__content {
    grid-template-columns: 1fr;
  }

  .recognition-cta-home__button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .recognition-cta-home {
    padding: 0 16px 24px;
  }

  .recognition-cta-home__card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .recognition-cta-home__chips {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recognition-cta-home__side {
    padding: 18px;
  }
}

/* Navbar global no estilo da página de orçamento */
.header .navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 24px));
  margin: 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  letter-spacing: normal;
  overflow: visible;
}

.header .navbar.scrolled {
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.16);
}

.header .navbar .logo {
  width: 130px;
  height: 64px;
  margin: 0;
  padding: 0;
  line-height: normal;
  flex-shrink: 0;
}

.header .navbar .menu {
  position: static;
  right: auto;
  left: auto;
  top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: auto;
  max-height: none;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.header .navbar .menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: #0f172a;
  font-weight: 700;
  text-transform: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header .navbar .menu a::after {
  content: none;
}

.header .navbar .menu a:hover,
.header .navbar .menu a.is-active {
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  color: #ffffff;
  transform: translateY(-1px);
}

.header .navbar .nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header .navbar .btn {
  display: none;
  position: static;
  cursor: pointer;
}

.header .navbar .btn span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: #0f172a;
  transition: background 0.2s ease;
}

.header .navbar #theme-toggle.theme-toggle,
.header .navbar .theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 96px;
  height: 46px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header .navbar #theme-toggle.theme-toggle:hover,
.header .navbar .theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(5, 107, 246, 0.28);
}

.header .navbar #theme-toggle.theme-toggle .icon,
.header .navbar .theme-toggle .icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.95rem;
  color: #0f172a;
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.header .navbar #theme-toggle.theme-toggle .thumb,
.header .navbar .theme-toggle .thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 38px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #056bf6, #1bc7fb);
  box-shadow: 0 12px 22px rgba(5, 107, 246, 0.24);
  transition: left 0.22s ease, right 0.22s ease;
}

.header .navbar #theme-toggle.theme-toggle.mode-dark .thumb,
.header .navbar .theme-toggle.mode-dark .thumb {
  left: calc(100% - 42px);
}

.header .navbar #theme-toggle.theme-toggle.mode-light .icon-sun,
.header .navbar .theme-toggle.mode-light .icon-sun,
.header .navbar #theme-toggle.theme-toggle.mode-dark .icon-moon,
.header .navbar .theme-toggle.mode-dark .icon-moon {
  color: #ffffff;
  opacity: 1;
}

html.dark .header .navbar {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.45);
}

html.dark .header .navbar.scrolled {
  box-shadow: 0 26px 58px rgba(2, 6, 23, 0.52);
}

html.dark .header .navbar .menu a {
  color: #e5eefc;
}

html.dark .header .navbar .menu a:hover,
html.dark .header .navbar .menu a.is-active {
  color: #ffffff;
}

html.dark .header .navbar .btn span {
  background: #e5eefc;
}

html.dark .header .navbar #theme-toggle.theme-toggle,
html.dark .header .navbar .theme-toggle {
  background: rgba(15, 23, 42, 0.92);
  border-color: rgba(148, 163, 184, 0.22);
  color: #e5eefc;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.26);
}

html.dark .header .navbar #theme-toggle.theme-toggle .icon,
html.dark .header .navbar .theme-toggle .icon {
  color: #e5eefc;
}

@media (max-width: 768px) {
  .header .navbar {
    width: calc(100% - 20px);
    padding: 14px 16px;
    border-radius: 24px;
  }

  .header .navbar .btn {
    display: block;
  }

  .header .navbar .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    padding: 14px;
    margin: 0;
    width: auto;
    max-height: none;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
    overflow: visible;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .header .navbar .menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header .navbar .menu a {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 1.02rem;
  }

  .header .navbar .menu a:hover,
  .header .navbar .menu a.is-active {
    background: linear-gradient(135deg, #056bf6, #1bc7fb);
    color: #ffffff;
  }

  .header .navbar .nav-actions {
    gap: 10px;
  }

  .header .navbar #theme-toggle.theme-toggle,
  .header .navbar .theme-toggle {
    width: 88px;
    height: 42px;
    padding: 0 12px;
  }

  .header .navbar #theme-toggle.theme-toggle .thumb,
  .header .navbar .theme-toggle .thumb {
    width: 34px;
    height: 32px;
  }

  .header .navbar #theme-toggle.theme-toggle.mode-dark .thumb,
  .header .navbar .theme-toggle.mode-dark .thumb {
    left: calc(100% - 38px);
  }

  html.dark .header .navbar .menu {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(148, 163, 184, 0.2);
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.42);
  }

  html.dark .header .navbar .menu a {
    color: #e5eefc;
  }

  html.dark .header .navbar .menu a:hover,
  html.dark .header .navbar .menu a.is-active {
    color: #ffffff;
  }
}
