* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

.align-sections {
    max-width: 1440px;
    margin: auto;
    padding: 2%;
}

h2 {
    color: #0164FB;
}

@media (max-width: 1024px) {
    h2 {
        text-align: center;
    }
}

/* HERO-SECTION */
.hero-site {
    display: flex;
    background-image: url(../images/BG-HERO-ESTUDIO.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 55vh;
    text-align: center;
    justify-content: center;
}

.hero-site h1 {
    color: white;
    font-size: 2.3rem;
}

.hero-site span {
    color: #ff9c01;
}

@media (max-width: 1024px) {
    .hero-site {
        justify-content: center;
        text-align: center;
        font-size: 1.8rem;
        height: 40vh;
    }

    .hero-site h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-site {
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        text-align: center;
    }

    .hero-site h1 {
        font-size: 1.7rem;
    }
}

@media (max-width: 400px) {
    .hero-site h1 {
        font-size: 1.2rem;
    }
}
/* HERO-SECTION */

/* BOX-IN-BOX */
.box-in-box span {
    color: #0164FB;
    font-weight: 700;
}

.box-in-box p {
    padding: 1% 0;
    font-size: 1rem;
}

.piso-desktop {
    display: block;
    width: 100%;
    padding: 2% 0;
}

.piso-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .piso-desktop {
        display: none;
    }

    .piso-mobile {
        display: block;
        width: 90%;
    }
}
/* BOX-IN-BOX */

/* PRINCIPIO */
.principio p {
    padding-top: 1%;
}

.img-principio img {
    width: 55%;
    display: block;
    margin: 0 auto;
    padding: 2% 0 3%;
}
/* PRINCPIO */

/* MODELOS */
.modelos p {
    padding: 2% 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.modelos img {
    width: 90%;
    padding-bottom: 1%;
}

@media (max-width: 1024px) {
    .modelos p {
        font-size: 0.9rem;
    }

    .modelos img {
        display: block;
        margin: 0 auto;
    }
}
/* MODELOS */

/* SEÇÃO */
.secao {
    margin: 5% 0;
}

.txt {
    padding: 1% 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.secao-flex {
    padding-top: 2%;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.secao-flex h3 {
    padding: 3% 0;
    color: #0164FB;
}

.fig-1, .fig-2, .fig-3 {
    background-color: #ececec;
    width: 26rem;
    height: 8rem;
    border-radius: 20px;
    border-top: 6px solid #0164FB;
}

.fig-1,.fig-2,.fig-3 h3 p {
    justify-content: center;
    align-items: center;
}

.fig-1,.fig-2,.fig-3 p {
    padding: 0 3%;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .txt {
        font-size: 0.9rem;
        padding: 1% 0;
    }

    .secao {
        padding: 3% 0 ;
    }
}
/* SEÇÃO */

/* ESPECIFICAÇÃO */
.especificacao {
    padding: 2% 0 3%;
}

.especificacao span {
    font-weight: 700;
}

.sub-titulo {
    font-weight: 600;
    padding-top: 2%;
}

.especificacao h4 {
    font-size: 1.2rem;
    color: #ff7300;
}

.especificacao h3 {
    color: #67a4ff;
}

.especificacao ul li {
    line-height: 25px;
    list-style: disc;
}
/* ESPECIFICAÇÃO */

/* dimensionamento */
.box {
    justify-items: center;
    /* Propriedade do Grid Layout, pode não ter efeito direto aqui dependendo do display */
    margin: 20px;
    /* Reduzi a margem para telas menores */
}

/* Se .box for um container flex ou grid, centralizar os itens internos */
.box {
    display: flex;
    /* Ou display: grid; */
    justify-content: center;
    /* Centraliza os itens horizontalmente */
    align-items: center;
    /* Centraliza os itens verticalmente (se necessário) */
}

/* Opcional: Definir uma largura máxima para o .box */
.box {
    max-width: 70%;
    /* Garante que a largura não seja muito grande em telas menores */
    margin: 20px auto;
    /* Centraliza o box horizontalmente */
    padding: 3%;
}

/* Media query para telas menores (tablets) */
@media (max-width: 768px) {
    .box {
        margin: 15px auto;
        max-width: 70%;
    }
}

/* Media query para telas ainda menores (smartphones) */
@media (max-width: 480px) {
    .box {
        margin: 20px auto;
        max-width: 10%;
    }
}

/* FOOTER */
.footer {
    border-top: 6px solid #ff7300;
    background-color: #252b37;
    color: #fff;
    padding: 40px 20px;
    font-family: "Montserrat", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 120px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-left,
.footer-right {
    flex: 1 1 400px;
    line-height: 1.5;
}

.footer-left p {
    margin: 7px;

}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 150px;
    margin: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item .icon {
    width: 25px;
    margin-right: 10px;
    margin-top: 3px;
}

.footer-right h3 {
    margin-bottom: 10px;
}

.footer-right p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.social-icons img {
    width: 24px;
    margin-right: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    padding-top: 25px;
}

.social-icons a:hover img {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) invert(36%) sepia(98%) saturate(2311%) hue-rotate(200deg) brightness(89%) contrast(88%);
}

hr {
    border: none;
    border-top: 1px solid #999;
    margin: 30px 0 10px;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

/* MOBILE */
@media (max-width: 768px) {
    .carousel-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .google-logo {
        width: 60px;
    }

    .carousel {
        max-width: 90%;
    }
}

/* FOOTER */