:root {
    /* Altere esta variável para trocar a cor principal do background. */
    --background-color: #071a2f;

    --background-accent: #0d3157;
    --card-background: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.16);
    --primary-color: #20b7ff;
    --text-color: #ffffff;
    --muted-color: #b9c9d8;
}

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

html {
    min-height: 100%;
}

body {
  min-height: 100vh;
color: var(--text-color);
font-family: Arial, Helvetica, sans-serif;
background-color: #3b998c;
background-image: radial-gradient(circle at 15% 20%,
color-mix(in srgb, #538b84 80%, transparent), transparent 35%), radial-gradient(circle at 85% 80%,
color-mix(in srgb, var(--primary-color) 18%, transparent), transparent 30%);
}

.construction-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.construction-card {
    width: min(100%, 720px);
    padding: 56px 48px;
    text-align: center;
    background: var(--card-background);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
}

.logo-area {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
}

.company-logo {
    display: block;
    max-width: 300px;
    max-height: 120px;
    object-fit: contain;
}

.logo-fallback {
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.08em;
}

.logo-fallback span {
    color: var(--primary-color);
}

.eyebrow {
    margin-bottom: 12px;
    color: #04624c;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 7vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.message {
    max-width: 550px;
    margin-inline: auto;
    color: #FFF;
    font-size: 1rem;
    line-height: 1.7;
}

.divider {
    width: 54px;
    height: 3px;
    margin: 32px auto;
    background: #05634c;
    border-radius: 999px;
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    font-style: normal;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
    color: #006b54;
    transform: translateY(-2px);
}

.contact-icon {
  width: 27px;
  height: 27px;
  display: grid;
  flex: 0 0 27px;
  place-items: center;
  color: #FFF;
  border: 1px solid
  color-mix(in srgb, #006b54 55%, transparent);
  border-radius: 50%;
  font-style: normal;
}

.instagram-icon {
    font-size: 1.25rem;
    font-weight: 700;
}

@media (max-width: 600px) {
    .construction-card {
        padding: 42px 24px;
        border-radius: 18px;
    }

    .contact-list {
        align-items: center;
        flex-direction: column;
    }

    .contact-item {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-item {
        transition: none;
    }
}
