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

:root {
  --bg: #faf3ed;
  --icon: #601921;
  --accent: #b692b8;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  font-family: Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: block;
  width: 88%;
  max-width: none;
  height: auto;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--icon);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social a:hover,
.social a:focus-visible {
  color: var(--accent);
  transform: translateY(-2px);
  outline: none;
}

.social svg {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* FA filled glyph reads larger than outline icons — match optical size */
.social .icon-whatsapp {
  width: 26px;
  height: 26px;
}

.social .icon-instagram {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .container {
    max-width: 50%;
    gap: 2.5rem;
  }

  .logo {
    width: 100%;
    max-width: 360px;
  }

  .social {
    gap: 2.25rem;
  }

  .social a,
  .social svg {
    width: 32px;
    height: 32px;
  }

  .social .icon-whatsapp {
    width: 30px;
    height: 30px;
  }

  .social .icon-instagram {
    width: 28px;
    height: 28px;
  }
}
