/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f5f7fa;
  color: #1f2933;
  line-height: 1.6;
}

/* HERO */
.hero {
  background-color: #0a2540;
  color: #ffffff;
  padding: 96px 24px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: #cfd8e3;
  margin-bottom: 40px;
  max-width: 800px;
}

/* BOTÃO */
.btn-primary {
  display: inline-block;
  background-color: #2563eb;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #1e4fd6;
}

.services {
  background-color: #0a2540;
  padding: 80px 24px;
}

.services-content {
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 48px;
  color: #0a2540;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #0a2540;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-secondary {
  display: inline-block;
  margin-top: 24px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

:root {
    --bg-main: #0b1a4a;
    --color-primary: yellow;
    --color-accent: orangered;
    --text-main: white;

    --radius-sm: 5px;
    --radius-md: 10px;

    --transition-fast: 0.3s ease;
}
.footer {
    margin-top: 0px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    bottom: 0;
    background-color: var(--bg-main);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    transition: transform var(--transition-fast),
                color var(--transition-fast);
}

.footer-social img {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
}

.footer-copy {
    color: var(--color-primary);
    font-size: 14px;
    opacity: 0.85;
}

.footer-social a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-6px);
    color: orangered;
}

.footer-social a:hover img {
    filter: drop-shadow(0 6px 12px rgba(255,165,0,0.6));
    transition: filter 0.3s ease;
}

.ssl-info {
  margin-top: 16px;
  font-size: 14px;
  color: #cbd5e1; /* tom claro elegante */
}
