:root {
    --bg-1: #081229;
    /* deep navy */
    --bg-2: #0b2f5a;
    /* dark blue */
    --accent: #37b0ff;
    /* bright sky */
    --soft: #7fbfff;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-2: rgba(255, 255, 255, 0.04);
    --maxw: 1200px;
    --ease: cubic-bezier(.2, .9, .2, 1);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%;
    min-height: 100%;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #eaf6ff;
    -webkit-font-smoothing: antialiased
}

h2 {
    font-size: 44px;
    margin: 12px 0;
    line-height: 1.02;
    letter-spacing: -0.02em
}

section {
    padding: 80px 0
}

footer {
    padding: 24px 0;
    color: rgba(234, 246, 255, 0.6);
    font-size: 14px;
    text-align: center
}

p.lead {
    opacity: 0.9;
    font-size: 16px;
    max-width: 56ch
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 40px 20px
}

.info{
    padding: 1.2rem 0rem;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}

.img-page {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    box-shadow: 2px 2px 10px #081229;
    transition: .4s;
}

.img-page:hover{
    transform: scale(1.03);
}

.name-project {
    font-size: 1.2rem;
    opacity: .7
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 40px 24px;
    border-radius: 18px;
    background-color: var(--bg-1);
    opacity: 85%;
    box-shadow: 0 10px 40px rgba(2, 8, 20, 0.6)
}

.hero-inner {
    display: flex;
    gap: 0.6rem;
    align-items: center
}

.hero-left {
    flex: 1;
    min-width: 320px
}

.hero-right {
    width: 100%;
    max-width: 55%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.link-whatsapp, .link-instagram{
    font-size: 1.3rem;
    text-decoration: none;
    color: #ffffff;
    transition: .4s;
}

.link-whatsapp:hover, .link-instagram:hover{
    transform: scale(1.05);
}

.grid-whatsapp, .grid-instagram{
    display: grid;
    grid-template-columns: 13% 87%;
    align-items: center;
    gap: 0.2rem;
}

.box-info{
    margin-top:20px;
    display:block
}

.info-whatsapp{
    padding: 1.3rem 0rem;
    font-size: 1.4rem;
}

.whatsapp, .instagram{
    width: 45px;
    transition: .4s;
}

.whatsapp:hover, .instagram:hover{
    transform: scale(1.1);
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* faz o vídeo cobrir toda a tela */
  z-index: -1; /* fica atrás do conteúdo */
  opacity: 0.85; /* leve transparência para harmonizar com o texto */
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 10, 30, 0.45); /* cor escura transparente */
  z-index: 0;
}


@keyframes floatX {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(8%)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes bounceCanopy {
    0% {
        transform: translateY(0) rotate(-1deg)
    }

    50% {
        transform: translateY(8px) rotate(2deg)
    }

    100% {
        transform: translateY(0) rotate(-1deg)
    }
}

@media (max-width:880px) {
    body {
        background-color: var(--bg-1);
    }
    
    .hero-inner {
        flex-direction: column-reverse
    }

    .hero-right {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    h2 {
        font-size: 36px
    }
}