/* hero.css — capa escura: vídeo de fundo provisório, grade, títulos e botões de ação
   Extraído do build original (assets/index-C_bOfxLt.css) preservando a ordem da cascata. */

.hero {
    background: var(--navy-950);
    min-height: 100svh;
    color: var(--white);
    display: grid;
    position: relative;
    overflow: hidden
}

.hero-media,
.hero-grid,
.hero-scrim {
    position: absolute;
    inset: 0
}

.hero-media {
    z-index: 0;
    background: radial-gradient(circle at 82% 43%, #6e9fc438, transparent 23%), linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 58%, #103f6b 100%);
    overflow: hidden
}

.hero-background-video {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.hero-reference {
    width: min(42vw, 620px);
    height: 60%;
    color: var(--blue-300);
    background: radial-gradient(circle at 50% 40%, #6e9fc44d, #0000 34%), repeating-linear-gradient(90deg, #0000 0 70px, #ffffff09 70px 71px), #071d3680;
    border: 1px solid #b7d1e452;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 3vw, 42px);
    display: flex;
    position: absolute;
    top: 21%;
    right: 4.5%
}

.hero-reference:before,
.hero-reference:after {
    content: "";
    border: 1px solid #b7d1e43d;
    border-radius: 50%;
    position: absolute
}

.hero-reference:before {
    aspect-ratio: 1;
    width: 55%;
    top: 13%;
    right: 11%
}

.hero-reference:after {
    aspect-ratio: 1;
    width: 27%;
    top: 27%;
    right: 25%
}

.hero-reference-flow {
    z-index: 2;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    display: grid;
    position: relative
}

.hero-reference-flow i {
    background: #b7d1e433;
    height: 4px;
    display: block
}

.hero-reference-flow i:nth-child(-n+3) {
    background: var(--blue-500)
}

.hero-reference p {
    z-index: 2;
    color: #ffffff9e;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0;
    font-size: 12px;
    position: relative
}

.hero-grid {
    z-index: 1;
    opacity: .28;
    background-image: linear-gradient(#ffffff12 1px, #0000 1px), linear-gradient(90deg, #ffffff12 1px, #0000 1px);
    background-size: 92px 92px;
    -webkit-mask-image: linear-gradient(90deg, #0000 0%, #00000014 38%, #000 100%);
    mask-image: linear-gradient(90deg, #0000 0%, #00000014 38%, #000 100%)
}

.hero-scrim {
    z-index: 2;
    background: linear-gradient(90deg, #020b16fa 0%, #020b16ed 42%, #020b1657 76%, #020b1629 100%), linear-gradient(#020b164d 0%, #0000 35%, #020b16a3 100%)
}

.hero-content {
    z-index: 3;
    padding-top: calc(var(--header-height) + 58px);
    align-self: center;
    padding-bottom: 76px;
    position: relative
}

.hero-purpose-title {
    max-width: 780px;
    color: var(--blue-300);
    font-family: var(--serif);
    letter-spacing: -.035em;
    margin: 0;
    font-size: clamp(28px, 3.15vw, 48px);
    font-style: italic;
    font-weight: 400;
    line-height: 1
}

.hero h1 {
    max-width: 850px;
    font-family: var(--serif);
    letter-spacing: -.052em;
    margin: 22px 0 26px;
    font-size: clamp(50px, 5.75vw, 86px);
    font-weight: 400;
    line-height: .96
}

.hero h1 span {
    color: var(--blue-300);
    font-style: italic;
    font-weight: 400;
    display: block
}

.hero-lead {
    color: #ffffffc7;
    max-width: 690px;
    margin: 0;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.55
}

.hero-purpose {
    color: var(--blue-300);
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.5
}

.hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    display: flex
}

.button-accent {
    background: var(--blue-500);
    color: var(--navy-950)
}

.button-accent:hover {
    background: var(--white)
}

.button-ghost {
    color: var(--white);
    border-color: #ffffff73
}

.button-ghost:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy-950)
}

