:root {
    --bg: #071017;
    --panel: #0d1b27;
    --soft: #102636;
    --text: #eef8f6;
    --muted: #a9c4bd;
    --green: #53d36f;
    --blue: #1e91ff;
    --gold: #ffcc66;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    background:
        radial-gradient(circle at 15% 0%, rgba(30,145,255,.28), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(83,211,111,.22), transparent 33%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 7vw;
    background: rgba(7,16,23,.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand img {
    height: 58px;
    width: auto;
    object-fit: contain;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.site-header a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
}

/* Botões */

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--blue),
        var(--green)
    );
    color: #031018 !important;
    box-shadow: 0 12px 35px rgba(30,145,255,.25);
}

/* Hero */

.hero {
    min-height: 74vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 54px;
    padding: 70px 7vw;
}

.eyebrow {
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    font-size: .82rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: .95;
    margin: .25em 0;
}

.lead {
    max-width: 780px;
    font-size: 1.2rem;
    color: var(--muted);
}

.hero-card {
    padding: 24px;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,.1);
    background:
        linear-gradient(
            145deg,
            rgba(16,38,54,.92),
            rgba(13,27,39,.72)
        );
    box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.hero-card img {
    width: 100%;
    display: block;
    border-radius: 24px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Seções */

.section {
    padding: 72px 7vw;
}

.section h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

/* Cards */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(13,27,39,.78);
    box-shadow: 0 20px 55px rgba(0,0,0,.22);
}

.card h3 {
    margin-top: 0;
    color: #fff;
}

.card p {
    color: var(--muted);
}

/* Fotos */

.photo-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 18px;
}

.photo-grid figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 310px;
    border-radius: 28px;
    background: var(--panel);
}

.photo-grid figure:first-child {
    grid-row: span 2;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.photo-grid figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-weight: 700;
}

/* CTA */

.cta {
    margin: 72px 7vw;
    padding: 54px;
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,.12);
    text-align: center;
    background:
        linear-gradient(
            135deg,
            rgba(30,145,255,.22),
            rgba(83,211,111,.18)
        );
}

.cta h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta .lead {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Pills */

.pill-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.pill {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: var(--muted);
    font-weight: 700;
}

/* Footer */

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 34px 7vw;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--muted);
}

.credits {
    font-size: .9rem;
}

/* Responsivo */

@media (max-width: 900px) {

    .hero,
    .grid,
    .photo-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 36px;
    }

    .site-header {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .brand img {
        height: 44px;
    }

    .photo-grid figure:first-child {
        grid-row: auto;
    }
}

.logo img {
  height: 58px;
  width: auto;
}

.brand img {
  height: 58px;
  width: auto;
}

header img {
  max-height: 58px;
}

.actions .btn,
.btn {
  display: inline-block;
  text-decoration: none;
  color: #06121f;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2aa8ff, #54d17a);
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn.secondary {
  background: transparent;
  color: #dff7ff;
  border: 1px solid rgba(255,255,255,.25);
}

