@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    overflow-x: hidden;
}

/* ESTADO INICIAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* QUANDO APARECE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.reveal:nth-child(6) {
    transition-delay: 0.6s;
}

.reveal:nth-child(7) {
    transition-delay: 0.7s;
}

.reveal:nth-child(8) {
    transition-delay: 0.8s;
}

.reveal:nth-child(9) {
    transition-delay: 0.9s;
}

.reveal:nth-child(10) {
    transition-delay: 1s;
}

.reveal:nth-child(11) {
    transition-delay: 1.1s;
}

.reveal:nth-child(12) {
    transition-delay: 1.2s;
}

.reveal:nth-child(13) {
    transition-delay: 1.3s;
}

.reveal:nth-child(14) {
    transition-delay: 1.4s;
}

.reveal:nth-child(15) {
    transition-delay: 1.5s;
}   


/* VARIAÇÕES (opcional) */
.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-zoom {
    transform: scale(0.9);
}

/* NAVBAR */
.header {
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav {
    margin: auto;
    padding: 12px 30px;
    display: flex;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-header img {
    width: 200px;
    height: 100px;
    object-fit: cover;
}

.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu a {
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 300ms;
}

.menu a:hover {
    transform: translateY(-2px);
}

.menu .active {
    color: #1abc9c;
}

.menu .btn-contato img {
    width: 20px;
    margin-right: 8px;
}

.menu .btn-contato {
    display: flex;
    align-items: center;
    background: #1abc9c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 99;
}

/* HERO */
.hero {
    height: 100%;
    padding: 50px 0px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    max-width: 600px;
    margin-left: 8%;
    color: #fff;
    z-index: 2;
}

.hero-text {
    margin-bottom: 20px;
}

.hero-text .span-hero1 {
    display: block;
    font-size: 25px;
    font-weight: 600;
    color: #1abc9c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text .span-hero2 {
    display: block;
    font-size: 80px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

.hero-text .span-hero3 {
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: #1abc9c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text .span-hero4 {
    display: block;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.hero-icons-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-icons-item img {
    width: 50px;
    background-color: #1abc9c;
    padding: 10px;
}

.hero-icons-item h5 {
    color: #fff;
    font-weight: 600;
}

.hero-icons-item p {
    font-size: 12px;
    line-height: 1.6;
    max-width: 200px;
    color: #fff;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.buttons .btn img {
    width: 20px;
    margin-left: 8px;
}

.buttons a {
    display: flex;
    align-items: center;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 300ms;
    border-radius: 5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.primary {
    background: #1abc9c;
    color: #fff;
}

.secondary {
    background: #fff;
    color: #1abc9c;
}

/* CARROSSEL HERO */
.hero-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Slide ativo */
.slide.active {
    opacity: 1;
}

/* melhora overlay */
.overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/*  Textos */
.hero-text h1,
.hero-text p {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-text h1 {
    text-transform: uppercase;
}

/* DESTAQUE PTA */
.pta-hightligh {
    display: flex;
    gap: 100px;
}

.pta-highlight-text {
    width: 100%;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
}

.pta-highlight-text h3 {
    width: 100%;
    color: #1abc9c;
    margin-bottom: 20px;
    text-align: end;
}

.pta-highlight-text p {
    color: #555;
    margin-bottom: 30px;
    width: 100%;
    text-align: end;
}

.pta-highlight-text a {
    background-color: #1abc9c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
}

.pta-highlight-text a:hover {
    background-color: #16a085;
    transform: translateY(-3px);
}

.pta-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* melhora texto mobile */
@media (max-width: 768px) {
    .hero-text {
        padding: 15px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-text .span-hero1 {
        font-size: 15px;
    }

    .hero-text .span-hero2 {
        font-size: 40px;
    }

    .hero-text .span-hero3 {
        font-size: 40px;
    }

    .hero-text .span-hero4 {
        font-size: 15px;
    }

    .hero-icons {
        justify-content: center;
    }

    .hero-icons-item {
        text-align: start;
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 10px;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        margin: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .buttons {
        justify-content: center;
    }
}

/* A locação */
.locacao {
    padding: 20px 40px;
}

.locacao-tittle {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.locacao-tittle h1 {
    color: #1abc9c;
}

.locacao-tittle p {
    width: 100%;
    color: #555;
    text-align: center;
}

.locacao-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.locacao-card {
    width: 250px;
    height: 300px;

    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 300ms;
}

.locacao-card img {
    width: 100px;
}

.locacao-card h4 {
    color: #000;
    font-weight: 600;
    text-align: center;
}

.locacao-card p {
    line-height: 1.5;
    text-align: center;
    color: #555;
}

.locacao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Destaque PTA */
.destaque-pta {
    padding: 20px 40px;
}

.destaque-content {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background-color: #1abc9c;
    color: #fff;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.destaque-content img {
    height: auto;
    width: 35%;
    object-fit: cover;
}

.destaque-right {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.destaque-right h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.destaque-right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.destaque-topicos{
    display: flex;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.destaque-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.destaque-item img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.destaque-item p{
    width: 100%;
    font-size: 14px;
    margin-bottom: 0px;
}

.destaque-buttons{
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-destaque1 {
    background-color: #fff;
    color: #1abc9c;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-destaque2 {
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-destaque1:hover,
.btn-destaque2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .destaque-content {
        flex-direction: column;
        text-align: center;
    }

    .destaque-content img {
        width: 100%;
        height: auto;
    }

    .destaque-topicos{
        justify-content: center;
    }

    .destaque-item img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

    .destaque-right {
        padding: 20px;
    }

    .destaque-right h1 {
        font-size: 28px;
    }

    .destaque-buttons{
        justify-content: center;
    }
}

/* Ideal */
.ideal {
    padding: 20px 40px;
}

.ideal-content {
    padding: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.ideal-card {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    transition: 300ms;
}

.ideal-card img {
    width: 100px;
}

.ideal-card:hover {
    transform: translateY(-8px);
}

.divisor {
    width: 3px;
    height: 100px;
    background-color: #cfcfcf;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .divisor {
        width: 0px;
        height: 0px;
    }
    
}

/* CARROSSEL */
.carrossel {
    position: relative;
    padding: 20px 40px;
}

.carrossel-container {
    overflow: hidden;
}

.carrossel-track {
    display: flex;
    gap: 20px;
    transition: 0.4s ease;
    padding: 40px;
}

/* CARD */
.card {
    min-width: 300px;
    background: #f5f5f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    color: #1abc9c;
    font-size: 16px;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 14px;
    margin-bottom: 5px;
}

.card-content button {
    margin-top: 20px;
    background-color: transparent;
    border: none;
}

.card-content a {
    margin-top: 200px;
    padding: 8px 12px;
    text-decoration: none;
    border: none;
    background: #1abc9c;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: 300ms;
}

.card-content a:hover {
    background: #16a085;
    transform: translateY(-3px);
}

/* BOTÕES */
.button-carousel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1abc9c;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 300ms;
}

.button-carousel:hover {
    background: #16a085;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* MOTIVO */
.motivo {
    padding: 20px 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* OBSERVAÇÃO */
.observacao {
    padding: 20px 40px;
    text-align: center;
}

.observacao-content {
    background-color: #1abc9c3c;
    border: 2px solid #1abc9c;
    border-radius: 25px;
    margin: 0 auto;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.observacao-content img {
    width: 50px;
    margin-right: 15px;
}

.observacao-content p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    text-align: start;
}

.observacao-content p span {
    font-weight: bold;
}

@media (max-width: 768px) {
    .observacao-content {
        flex-direction: column;
        text-align: center;
    }

    .observacao-content img {
        margin-bottom: 15px;
    }
}

/* SERVIÇOS */
.servicos {
    padding: 20px 0px;
}

.servicos-carrossel {
    position: relative;
    padding: 20px 40px;
}

.servicos-container {
    overflow: hidden;
}

.servicos-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding: 40px;
}

/* CARD */
.servico-card {
    min-width: 220px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.servico-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.servico-card p {
    font-size: 14px;
    padding: 10px;
}

/* BOTÕES */
.servicos-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1abc9c;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.servicos-btn.prev {
    left: 10px;
}

.servicos-btn.next {
    right: 10px;
}

.buttons-servicos {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

/* TOPO */
#btnTopo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1abc9c;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

#btnTopo:hover {
    transform: scale(1.1);
}

/* FOOTER */
.footer {
    background-color: #101010;
    color: #fff;
    padding-top: 60px;
}

.logo-footer img {
    width: 100%;
    max-width: 2000px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a img {
    width: 24px;
    height: 24px;
}

.footer-col a:hover {
    opacity: 0.7;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100px;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

.footer-bottom a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: bold;
    transition: 300ms;
}

.footer-bottom a:hover {
    color: #ff3131;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .socials {
        align-items: center;
    }

    .footer-col h4,
    .footer-col p,
    .footer-col ul,
    .footer-col li,
    .footer-col a {
        text-align: center;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}