@font-face {
    font-family: "Epilogue";
    src: url("/assets/fonts/epilogue.woff2");
}

html, body {
    width: 100%;
    height: 100%;
}

.super-background {
    width: 100vw;
    height: 100vh;
    background-image: url("/assets/images/bc-sobre.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    z-index: -1;
}

#root {
    width: 100%;
    height: 100%;
}

.home {
    width: 100%;
    aspect-ratio: 1439 / 696;
    display: flex;
    flex-direction: column;
}

.home-header {
    width: 75%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.home-logo {
    max-width: 350px;
}

.home-chamada {
    font-size: 24px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.home-img {
    width: 100%;
    height: 100%;
    background-image: url("/assets/images/banner-desktop2.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Form */
.form-container {
    padding: 20px;
    width: 75vw;
    margin: auto;
}

/* Demo */
.demo {
    padding: 20px;
    padding-bottom: 70px;
    width: 950px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.demo-title {
    color: white;
    font-size: 29px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    width: 55%;
}

.demo-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 90vh;
    gap: 10px;
    margin-top: 30px;
}

.demo-escrita {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-escrita--text {
    width: 100%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.demo-escrita--text.one {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4em;
}

.demo-escrita--text.two {
    text-align: center;
    line-height: 1.2em;
}

.demo-escrita--text.three {
    background-color: #918F29;
    text-align: center;
    font-size: 28px;
    padding: 3px 0;
    margin: 20px 0;
}

.demo-escrita--text.four {
    font-size: 18px;
    text-align: center;
    line-height: 1.4em;
}

.demo-escrita--text.four span {
    font-weight: bold;
}

.demo-fotos {
    position: relative;
    height: 100%;
    display: flex;
    overflow: hidden; /* esconde as fotos fora da área visível */
    /* removido justify-content: center */
}

.demo-fotos-track {
    display: flex;
    height: 100%;
}

.demo-fotos-img {
    height: 100%;
    flex-shrink: 0; /* impede que a imagem encolha dentro do flex */
    display: block;
}

.demo-disclaimer {
    position: absolute;
    left: 16px;
    bottom: 16px;
    margin: 0;
    color: #fff;
    z-index: 1;
}

.oportunidade {
    height: 100%;
    background-image: url("/assets/images/banner-rio.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.oportunidade-text {
    font-size: 35px;
    color: white;
    padding-top: 60px;
    font-family: Arial, Helvetica, sans-serif;
}

.localização {
    width: 100%;
    background-color: white;
    padding: 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Epilogue", Arial, Helvetica, sans-serif;
}

.localização-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.localização-one {
    font-size: 33px;
    color: rgb(65, 65, 65);
    text-align: center;
    margin-bottom: 20px;
}

.localização-two {
    width: 60%;
    font-size: 24px;
    color: rgb(65, 65, 65);
    font-weight: lighter;
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 10px;
}

.localização-three, .localização-four {
    width: 60%;
    font-size: 17px;
    color: rgb(104, 104, 104);
    font-weight: lighter;
    line-height: 1.4em;
    text-align: center;
}

.localização-four span {
    font-weight: bold;
}

.localização-locais {
    width: calc(100% - 28vw);
    padding: 0 14vw;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.localização-item {
    padding: 20px;
    font-size: 18px;
}

.localização-tempo {
    font-weight: bold;
}

.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity .7s ease;
}

.carousel-images img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;
    cursor: pointer;

    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 22px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, .7);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    display: flex;
    gap: 10px;
}

.carousel-dots span {
    width: 12px;
    height: 12px;

    border-radius: 50%;
    background: #ffffff88;
    cursor: pointer;
    transition: .3s;
}

.carousel-dots span.active {
    background: #fff;
    transform: scale(1.2);
}

.wrap{
    margin: 0 auto;
    padding: clamp(28px, 5vw, 56px) clamp(20px, 15vw, 480px) clamp(48px, 7vw, 80px);
    background: radial-gradient(120% 140% at 50% -10%, #0c2233 0%, #0a1c2a 70%);
    color: #eef4f6;
}

h1{
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    letter-spacing: 0.01em;
    font-size: clamp(1.4rem, 2vw, 2.5rem);
    text-align: left;
    margin: 0 0 clamp(28px, 5vw, 52px);
    position: relative;
    padding-bottom: 18px;
    text-align: center;
}

.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(20px, 3vw, 44px) calc(clamp(20px, 3vw, 44px) * 0.7);
}

.item{
    display:flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.icon-badge{
    width: clamp(56px, 8vw, 76px);
    height: clamp(56px, 8vw, 76px);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink: 0;
}

.icon-badge img {
    width: 100%;
    height: 100%;
    stroke: #4f95a3;
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease, stroke .25s ease;
    aspect-ratio: 1/1;
}

.item:hover .icon-badge svg{
    stroke: #8fd0da;
    transform: translateY(-3px);
}

.item span{
    font-size: clamp(0.78rem, 1.15vw, 0.98rem);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    line-height: 1.35;
    max-width: 12ch;
}

.conveniencia-container {
    width: 100%;
    background-color: white;
}

.conveniencia {
    padding: 20px;
    padding-top: 50px;
    padding-bottom: 70px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 90vh;
    gap: 50px;
    background-color: white;
    width: 900px;
}

.conveniencia-text {
    font-family: "Epilogue", Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.conveniencia-title {
    font-size: 33px;
    margin-bottom: 10px;
}

.conveniencia-desc {
    font-size: 22px;
    color: rgb(65, 65, 65);
    line-height: 1.4em;
}

.conveniencia-buttons {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 2px;
    z-index: 1;
}

.conveniencia-button {
    cursor: pointer;
}

.conveniencia-fotos {
    position: relative;
    height: 100%;
    display: flex;
    /* remover justify-content: center */
    overflow: hidden;
}

.conveniencia-fotos-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
}

.conveniencia-fotos-img {
    height: 100%;
    flex-shrink: 0;
    display: block;
}

.aereo {
    height: 100%;
    background-image: url("/assets/images/localizacao-americas-vitale-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-footer {
    height: 80%;
    background-image: url("/assets/images/ceu-fundo-escuro-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-footer-division {
    height: 100%;
    display: grid;
    margin: auto 150px;
    grid-template-columns: 3fr 2fr;
    place-items: center;
}

.form-footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
}

.form-footer-img {
    width: 72px;
    filter: brightness(0) invert(1);
}

.form-footer-title {
    font-size: 28px;
    letter-spacing: 2px;
    margin: 20px 0;
}

.form-footer-local {
    font-weight: bold;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
}

.form-footer-sublocal {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
}

.footer {
    width: 100%;
    background-color: white;
}

.footer-div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 3px;
    padding: 30px 0;
}

.footer-div img {
    margin-left: 10px;
}

.footer-disclaimer {
    width: 80%;
    margin: auto;
    padding-bottom: 30px;
}

.footer-disclaimer p {
    text-align: justify;
    color: gray;
}

@media screen and (max-width: 1100px) {
    .home-header {
        position: inherit;
        width: auto;
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        left: auto;
        transform: translateX(0);
        padding: 15px 7%;
        background-color: #102835;
    }

    .home-logo {
        max-width: 250px;
    }

    .home-chamada {
        font-size: 18px;
    }

    .home-img {
        background-image: url("/assets/images/banner-mobile.jpg");
    }

    .form-container {
        width: calc(100% - 40px);
    }

    .demo {
        width: auto;
        padding-bottom: 20px;
    }

    .demo-info {
        width: 100%;
        display: flex;
        grid-template-columns: none;
        grid-template-rows: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 30px;
    }

    .demo-title {
        width: 90%;
        font-size: 24px;
    }

    .demo-fotos-img {
        height: auto;
        width: 100%;
    }

    .oportunidade {
        width: 100%;
        height: auto;
        aspect-ratio: 2000/789;
    }

    .oportunidade-text {
        font-size: 3vw;
        padding-top: 20px;
    }

    .localização-locais {
        grid-template-columns: repeat(2, 1fr);
    }

    .localização-item {
        place-items: center;
        text-align: center;
        padding: 5px 0;
    }

    .conveniencia-container {
        width: 100%;
    }

    .conveniencia {
        gap: 10px;
        width: auto;
        margin: auto;
        display: flex;
        flex-direction: column;
        background-color: white;
    }

    .conveniencia-fotos {
        width: 100%;
        height: auto;
        display: flex;
        overflow: hidden; /* mantém escondendo o que passa da tela */
        /* remover justify-content: center */
    }

    .conveniencia-fotos-img {
        aspect-ratio: 705/730;
        width: 100%;
        flex-shrink: 0; /* garante que não encolha dentro do flex, igual no desktop */
    }

    .aereo {
        height: auto;
        width: 100%;
        aspect-ratio: 1444/747;
    }

    .form-footer-division {
        margin: auto 20px;
    }
}

@media screen and (max-width: 768px) {
    .home-header {
        display: flex;
        flex-direction: column;
    }

    .home-logo {
        margin-bottom: 15px;
    }

    .home-chamada {
        font-size: 16px;
    }

    .form-container {
        width: calc(100% -40px);
    }

    .demo-title {
        font-size: 3.3vw;
    }

    .localização {
        padding: 40px 0;
    }

    .localização-locais {
        grid-template-columns: repeat(1, 1fr);
    }

    .localização-one, .localização-two,
    .localização-three, .localização-four {
        width: 90%;
    }

    .form-footer {
        height: auto;
        padding: 30px 0;
    }

    .form-footer-division {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .footer-disclaimer {
        width: 96%;
    }

    .footer-disclaimer p {
        font-size: 3vw;
    }
}

@media (max-width: 480px){
    .grid{ grid-template-columns: repeat(2, 1fr); }
    h1{ text-align:center; }
    h1::after{ left:50%; transform:translateX(-50%); }
    .form-footer-title {
        font-size: 6vw;
    }
    .form-footer-local, .form-footer-sublocal {
        font-size: 5vw;
    }

    .conveniencia-fotos-img {
        height: auto;
        width: 100%;
    }
}