/* ============================================
   LOPEZ & LOPEZ - HUB DE SERVIÇOS
   Design Moderno e Minimalista
   ============================================ */

:root {
  --bg: #0b1220;
  --card: #0f1a2e;
  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.78);
  --line: rgba(234, 240, 255, 0.14);
  --btn: #2a66ff;
  --btn2: #18a0fb;
  --btn3: #21c07a;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  background: radial-gradient(1200px 700px at 20% 20%, #132a57 0%, rgba(19, 42, 87, 0) 55%),
              radial-gradient(1000px 700px at 80% 30%, #0c3b2e 0%, rgba(12, 59, 46, 0) 50%),
              var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  transition: all 0.2s ease;
}

/* CONTAINER */
.wrap {
  width: min(980px, 92%);
  margin: 0 auto;
}

/* HEADER */
header {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  background: rgba(11, 18, 32, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
}

.toprow {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #eaf0ff 0%, #a8c0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* LANGUAGE SWITCHER */
.lang {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lang a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.lang a.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

/* MAIN */
main {
  padding: 40px 0 50px;
  min-height: calc(100vh - 200px);
}

/* CARD */
.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

p {
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.7;
}

/* BUTTONS */
.buttons {
  display: grid;
  gap: 14px;
  margin: 24px 0 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pill {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Button Colors */
.btn.interbiz {
  background: linear-gradient(135deg, rgba(42, 102, 255, 0.4), rgba(42, 102, 255, 0.1));
  border-color: rgba(42, 102, 255, 0.3);
}

.btn.interbiz:hover {
  background: linear-gradient(135deg, rgba(42, 102, 255, 0.5), rgba(42, 102, 255, 0.15));
}

.btn.valorativos {
  background: linear-gradient(135deg, rgba(24, 160, 251, 0.4), rgba(24, 160, 251, 0.1));
  border-color: rgba(24, 160, 251, 0.3);
}

.btn.valorativos:hover {
  background: linear-gradient(135deg, rgba(24, 160, 251, 0.5), rgba(24, 160, 251, 0.15));
}

.btn.titan {
  background: linear-gradient(135deg, rgba(33, 192, 122, 0.4), rgba(33, 192, 122, 0.1));
  border-color: rgba(33, 192, 122, 0.3);
}

.btn.titan:hover {
  background: linear-gradient(135deg, rgba(33, 192, 122, 0.5), rgba(33, 192, 122, 0.15));
}

.btn.fuzion {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.4), rgba(79, 70, 229, 0.1));
  border-color: rgba(147, 51, 234, 0.3);
}

.btn.fuzion:hover {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.5), rgba(79, 70, 229, 0.15));
}

/* TEXT */
.small {
  font-size: 13px;
  color: rgba(234, 240, 255, 0.7);
  line-height: 1.5;
}

/* LEGAL LINKS */
.legal {
  margin-top: 14px;
  text-align: center;
}

.legal a {
  color: rgba(234, 240, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.legal a:hover {
  text-decoration: underline;
  color: var(--text);
}

/* FOOTER */
footer {
  padding: 20px 0 32px;
  border-top: 1px solid var(--line);
  color: rgba(234, 240, 255, 0.65);
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 12px;
}

/* RESPONSIVE */
@media (min-width: 720px) {
  .card {
    padding: 36px 32px;
  }

  .buttons {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 20px 0 16px;
  }

  h1 {
    font-size: 24px;
  }

  .toprow {
    gap: 12px;
  }

  .card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .btn {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeIn 0.5s ease-out;
}

.btn {
  animation: fadeIn 0.6s ease-out;
}

.btn:nth-child(1) { animation-delay: 0.1s; }
.btn:nth-child(2) { animation-delay: 0.2s; }
.btn:nth-child(3) { animation-delay: 0.3s; }
