@font-face {
    font-family: Arial;
    src: url(/assets/fonts/Montserrat-VariableFont_wght.ttf);
}

html, body {
    width: 100%;
    height: 100%;
}

.home {
    width: 100%;
    aspect-ratio: 1920/1090;
    background-image: url("/assets/images/b1-1.png.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.quadrados-infos {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.quadrado-item {
    font-family: Arial, Helvetica, sans-serif;
    font-size: min(3.5vw, 20px);
    font-weight: bold;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.quadrado-item:nth-child(3) {
    grid-column: 1 / 3;
}

.quadrado-item.start {
    background-color: #B43931;
}

.quadrado-item.middle {
    background-color: #fdc53a;
    color: #012F65;
}

.quadrado-item.end {
    background-color: #012F65;
}

.bricks {
    width: 100%;
    padding: 5vw 0;
    background-image: url("/assets/images/BG-Tijolos-Vermelhos-2.jpg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bricks2 {
    width: 100%;
    padding: 1.6vw 0;
    background-image: url("/assets/images/BG-Tijolos-Vermelhos-3.jpg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.location-section {
    padding: 60px 20px;
    background: #fff;
    font-family: Arial;
}

.location-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.location-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: bold;
}

.location-header p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.location-content {
    display: grid;
    gap: 32px;
}

.location-info {
    display: flex;
    align-items: center;
}

.location-info ul {
    width: 100%;
    margin: 0;
    padding-left: 24px;
}

.location-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
    font-size: clamp(14px, 1.8vw, 30px);;
}

.li-wrap {
    display: none;
}

.location-info li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #FFD400; /* amarelo */
    flex-shrink: 0;
}

.location-map {
    overflow: hidden;
    border: 1px solid #fdc53a;
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.lazer {
    background-image: url("/assets/images/bc-ent.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: 1fr 1fr;
    color: white;
    padding: min(7vw, 80px);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.8vw;
}

.lazer h2 {
    font-size: 2.3vw;
    grid-row: 1 / 3;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lazer p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lazer p::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #FFD400;
    flex-shrink: 0;
}


.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);
}

.floor-plans h2 {
    font-size: min(4.7vw, 50px);
    text-align: center;
    font-family: Arial;
    font-weight: bold;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: -20px;
}

.floor-plans h2::before {
    content: "";
    width: min(10vw, 100px);
    height: min(5.3vw, 55px);
    background-color: #FFD400;
    flex-shrink: 0;
    margin-right: -5vw;
}

.plantas-div {
    width: 100%;
    height: 80vw;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* garante que os botões se posicionem em relação a esse container */
}

.img-planta-div {
    width: 100%;
    height: 90%;
    position: relative;
    overflow: hidden; /* esconde os slides fora da tela */
}

.plantas-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s ease;
}

.planta-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.button-planta {
    background-color: gray;
    padding: 2px;
    aspect-ratio: 1/1;
    position: absolute;
    cursor: pointer;
    z-index: 2; /* fica acima dos slides */
    display: flex;
    justify-content: center;
    align-items: center;
}

#button-planta-left {
  left: 10px;
  margin: auto;
}

#button-planta-right {
  right: 10px;
  margin: auto;
}

.financing {
    display: grid;
    gap: 32px;
    padding: 40px 20px;
    font-family: Arial, Helvetica, sans-serif;
    max-width: 700px;
    justify-content: center;
    align-items: start;
    margin: auto;
}

.financing-info {
    text-align: center;
}

.financing-info span.bold {
    font-weight: bold;
}

.financing-info h2, .financing-builder h2 {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: min(27px, 5.7vw);
    color: #012F65;
    text-align: center;
}

.financing-info p {
    font-size: min(40px, 5.7vw);
    text-align: center;
}

.financing-builder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.financing-builder img {
    max-width: 220px;
    width: 100%;
    height: auto;
}

.financing-info .no-wrap {
    display: none;
}

.facilitada {
    padding: min(7vw, 80px);
    background-image: url("/assets/images/bc-ent.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.facilitada p {
    font-family: Arial,Arial, Helvetica, sans-serif;
    font-size: max(3vw, 17px);
    font-weight: bold;
    color: white;
}

.facilitada span {
    color: #fdc53a;
    font-weight: bold;
}

.aereo {
    width: 100%;
    aspect-ratio: 1920 / 987;
    background-image: url("/assets/images/aereea-min.jpg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.local {
    padding: min(7vw, 80px);
    background-image: url("/assets/images/bc-ent.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: min(30px, 2vw);
    font-family: Arial;
}

.local span {
    color: #fdc53a;
    font-weight: bold;
}

.local p {
    color: white;
}

.local p.margin {
    margin-bottom: 20px;
}

.site-footer {
    width: 100%;
    background-color: white;
}

.site-footer__realization {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 3px;
    padding: 30px 0;
    color: #E16E2B;
}

.footer-div img {
    margin-left: 10px;
}

.site-footer__disclaimer {
    width: 80%;
    margin: auto;
    padding: 30px 0;
    font-size: min(2vw, 14px);
}

.site-footer__disclaimer p {
    text-align: center;
    color: rgb(116, 116, 116);
}

@media (min-width: 786px) {
    .financing {
        grid-template-columns: 1fr 1fr;
    }

    .financing-info {
        text-align: left;
    }

    .financing-info .no-wrap {
        display: block;
    }
}

@media screen and (min-width: 1080px) {
    .location-content {
        grid-template-columns: auto 650px;
        align-items: center;
        gap: 50px;
        justify-content: center;
    }

    .location-map iframe {
        height: 450px;
    }

    .li-wrap {
        display: block;
    }
}

@media screen and (min-width: 1260px) {
    .home-info {
        margin-top: clamp(-42vw, -73vh, -10px);
        margin-left: auto;
        margin-right: 60px;
        width: 400px;
        margin-bottom: 20px;
    }

    .quadrados-infos {
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 7px;
    }

    .quadrado-item {
        padding: 20px 75px;
        border-radius: 10px;
    }

    .form-container {
        border-radius: 10px;
    }
}

@media screen and (min-width: 768px) {
    #button-planta-left {
      left: 10%;
  }

  #button-planta-right {
      right: 10%;
  }
}