/* RESET */
body,
h1,
h2,
p,
figure {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

/* GERAL */
body {
    font-family: "Inter", sans-serif;
    background-color: #ededed;
}

/* HEADER */
.top-site {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 91.5%;
    background-color: rgba(255, 255, 255, 0.667);
    z-index: 10;
    box-shadow: 0 3px 20px 2px rgba(0, 0, 0, 0.04);
    color: #4d4d4d;
    backdrop-filter: blur(8px);
    margin: 1%;
    border-radius: 25px;
    border: 1px solid #0000002d;
}

.logo img {
    width: 100px;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu a {
    font-size: 14px;
    margin: 0 20px;
}

.btn-extra {
    background-color: #eca300;
    color: white;
    padding: 12px 17px 12px 17px;
    /* margin-right: 70px; */
    border-radius: 40px;
    font-weight: bold;
    font-size: 14px;
}


.btn-extra:hover {
    background-color: #eca100bd;
    transition: 0.4s;
}


.mobile {
    font-size: 35px;
    display: none;
}

.btns {
    display: none;
}

ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

/* HERO */
.hero1 {
    background-image: url("../images/bg2.png");
    background-color: #ededed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    height: 680px;
    border-radius: 40px;
    position: relative;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

.hero1 h1 {
    font-size: 48px;
    margin: 0;
    color: #2b2b2b;
}

.hero1 h3 {
    font-size: 16px;
    margin: 0;
    padding-bottom: 2%;
    color: #eca300;
    font-style: italic;
    font-weight: 400;

}

.hero1 p {
    font-size: 16px;
    margin: 30px 0 50px 0;
    color: #6b6b6b;
    font-weight: 400;
}

.btn-simular {
    color: #f3f3f3;
    background-color: #eca300;
    border-radius: 40px;
    padding: 12px 6px 12px 17px;
    font-weight: bold;
    transition: 0.4s;
    backdrop-filter: blur(4px);
    box-shadow: 0 0px 5px rgba(255, 255, 255, 0.196);
    font-size: 14px;
}

.btn-simular:hover {
    background-color: #eca100bd;
    box-shadow: 0 0px 5px rgba(255, 255, 255, 0.233);
}

.btn-simular i {
    border-radius: 30px;
    padding: 11px 12px;
}



/*HERO 2 - About (missão, valores, oq diferencia)*/
.hero2 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 14px;
    width: calc(100% - 28px);
    border-radius: 40px;
    position: relative;
    margin-top: 60px;
}


.grid-container2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid-item2 {
    color: #eca300;
    text-align: center;
    padding: 0 0 50px 0;
}


.grid-item2 i {
    font-size: 80px;
    transition: transform 0.3s ease;
}

.grid-item2 i:hover {
    transform: scale(120%);
    color: #eca300;
}

.grid-item2 h3 {
    font-size: 20px;
    color: #2b2b2b;
}

.grid-item2 p {
    font-size: 15px;
    color: #2b2b2b;
    margin: 0 10%;
}


/*HERO 4*/
.hero4 {
    width: calc(100% - 28px);
    height: 200px;
    border-radius: 40px;
    position: relative;
}

.hero4 h4 {
    font-size: 40px;
    margin: 0;
    color: #eca300;
}

.hero4 p {
    font-size: 16px;
    margin-top: 1.5%;
    color: #6b6b6b;
    font-weight: 400;
}

.services-section {
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.card-content p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-link {
    color: #eca300;
    font-weight: 600;
    text-decoration: none;
}

.card-link:hover {
    text-decoration: underline;
}

.button-wrapper {
    margin: 3rem 0 4.5rem 0;
    text-align: center;
}

.main-button {
    display: inline-block;
    background: #eca300;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.main-button:hover {
    opacity: 0.9;

}

/* TABLET */
@media (min-width: 640px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



/*SERVICES*/
.services {
    margin: 8% 0 0 0;
}

.services2 {
    margin: 0 0 6% 0;
}



/*HOME - ABOUT*/
.about-section {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    background: #ffffff;

}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 3rem 2rem;
    text-align: left;
    font-family: Arial, sans-serif;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2b2b2b;
}

.about-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-button {
    display: inline-block;
    margin-top: 1.5rem;
    background: #eca300;
    color: #fff;
    padding: 12px 17px 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.4s;
}

.about-button:hover {
    opacity: 0.9;
}

/* 💻 DESKTOP */
@media (min-width: 768px) {
    .about-section {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        padding: 4rem;
    }
}



/*HOME - PORTFÓLIO*/
.home-portfolio {
    background-color: #ffffff;
}

.carousel {
    width: 100%;
    overflow: hidden;
    background: #000;
    margin-top: 1.5%;
}

.carousel-track {
    display: flex;
    width: fit-content;
    animation: scroll 25s linear infinite;
}

.carousel-track img {
    width: 25vw;
    min-width: 250px;
    height: auto;
    object-fit: cover;
}

.carousel:hover .carousel-track {
    animation-play-state: paused;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*HOME-OPINION*/
.space {
    background-color: #ffffff;
    height: 30px;
}


.home-opinion {
    background: linear-gradient(to bottom, #ffffff, #eca300);
    height: 740px;
    text-align: center;
    align-content: center;
}

.home-opinion h4 {
    font-size: 40px;
    margin: 0;
    color: #2b2b2b;
}

.home-opinion p {
    font-size: 16px;
    margin-top: 1.5%;
    color: #2b2b2b;
    font-weight: 400;
}

.reviews {
    padding: 80px 20px;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.review-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.review-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
}

.stars {
    color: #eca300;
    font-size: 1rem;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
    cursor: default;
}

.review-card.featured {
    transform: translateY(-20px) scale(1.08);
    z-index: 2;
}

.review-card.featured:hover {
    transform: translateY(-28px) scale(1.1);
}

@media (max-width: 900px) {
    .reviews-container {
        align-items: center;
    }

    .review-card,
    .review-card.featured {
        transform: none;
    }
}

@media (max-width: 600px) {
    .review-card {
        width: 100%;
        max-width: 350px;
    }
}


/*ABOUT-PAGE*/

.about {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: 7% 0 2% 0;
}

.about__content {
    flex: 1;
}

.about__content h2 {
    font-size: 40px;
    margin: 0;
}

.about-content h4 {
    margin: 0 0 16px 0;
}

.about__content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
}

.about__image {
    flex: 1;
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsivo – mobile */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        padding: 20px;
    }

    .about__content h2 {
        font-size: 1.6rem;
    }
}

.about-history {
    background-image: url(../images/geral.jpeg);
    height: 300px;
    width: 100%;
    align-content: center;
}

.about-history h4 {
    margin: 0 10% 3% 10%;
    font-size: 36px;
    color: #fff;
}

.about-history p {
    margin: 0 10%;
    color: #fff;

}


/*PORTFILIO - PAGE*/
.portfolio {
    padding: 2rem 5% 4rem 5%;
    background-color: #ededed;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.portfolio-header h2 {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.see-services {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.see-services::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #111;
    transition: transform 0.3s ease;
    transform: scaleX(1);
    transform-origin: left;
}

.see-services:hover::after {
    transform: scaleX(0.6);
}

.cards-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background-color: #fff;
    border-radius: 8px;
    height: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}



/*INDIVIDUAL - PAGE*/
.indiv {
    display: flex;
    padding: 40px;
    margin: 7% 0 0% 0;
    width: 80%;
    align-content: center;
}

.indiv_content {
    flex: 1;
    margin-top: 5%;
    margin-left: 2%;
}

.indiv_content h2 {
    font-size: 40px;
    margin: 0;
}

.indiv_content h4 {
    margin: 0 0 16px 0;
}

.indiv_content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
}

.indiv_image {
    flex: 1;
}

.indiv_image img {
    width: 100%;
    height: 65%;
    display: block;
    border-radius: 8px;
}

/* Responsivo – mobile */
@media (max-width: 768px) {
    .indiv {
        flex-direction: column;
        padding: 20px;
    }

    .indiv_content h2 {
        font-size: 1.6rem;
    }
}


.why-choose {
    font-family: Arial, sans-serif;
    text-align: center;

}

.why-header {
    background-color: #1a1a1a;
    padding: 4rem 5%;
    text-align: center;
}

.why-header h2 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 24px;
}

.why-header p {
    max-width: 800px;
    margin: auto;
    color: #f5f5f5;
    line-height: 1.6;
    font-size: 0.95rem;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.why-left {
    background-color: #f2a900;
    padding: 4rem 5%;
    color: #fff;
}

.why-left h3 {
    margin-bottom: 1.5rem;
    font-size: 24px;

}

.why-left ul {
    list-style: none;
    padding: 0;
}

.why-left ul li {
    margin-bottom: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.why-left ul li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.why-right {
    display: flex;
    flex-direction: column;
}

.why-block {
    padding: 3rem 5%;
    color: #fff;
}

.why-block h3 {
    margin-bottom: 1rem;
    font-size: 24px;
}

.why-block p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.dark {
    background-color: #1a1a1a;
}

.darker {
    background-color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .why-content {
        grid-template-columns: 1fr;
    }
}



/*FORMS*/
.booking-section {
    padding: 4rem 5%;
    background-color: #f2f2f2;
    max-width: 600px;
    margin: auto;
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-section form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.booking-section label {
    font-size: 0.9rem;
    font-weight: 500;
}

.booking-section input,
.booking-section select,
.booking-section textarea {
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    font-family: inherit;
}

.booking-section textarea {
    resize: vertical;
}

.booking-section button {
    margin-top: 1rem;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    background-color: #f2a900;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.booking-section button:hover {
    background-color: #d89200;
}


.cntct {
    width: calc(100% - 28px);
    height: 100px;
    border-radius: 40px;
    position: relative;
}

.cntct h4 {
    font-size: 40px;
    margin: 0;
    color: #eca300;
}

.titl1 {
    margin: 10% 0 0 0;
}

.contact_title {
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
}

.grid-cntct {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: center;
    align-content: center;
    margin-left: 20px;
}

.grid-cntct-item {
    padding: 4px 10px;
    font-size: 12px;
    margin: 40px 0 50px 0;
}


/*FOOTER*/

footer {
    background-color: #1a1a1a;
    padding: 15px;
    color: #fff;
}

.grid-container3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    align-content: center;
    margin-left: 200px;
}

.grid-item3 {
    padding: 4px 10px;
    font-size: 12px;
    margin: 40px 0 50px 0;
}

.grid-item3 h3 {
    color: #eca300;
}

.grid-item4 h3 {
    color: #eca300;
}

.grid-item3 p {
    text-align: start;
    margin-bottom: 2%;
    transition: transform 0.3s ease;

}

.grid-item3 p:hover {
    color: #eca300;
}

.grid-item4 {
    padding: 4px 10px;
    font-size: 12px;
    margin: 40px 0 50px 0;
}

.grid-item4 p {
    text-align: start;
    transition: transform 0.3s ease;
}

.icons {
    font-size: 30px;
    transition: transform 0.3s ease;
}

.icons:hover {
    transform: scale(103%);
}

.grid-item3 img {
    width: 50%;
}

.grid-item3 i {
    transition: transform 0.5s ease;
}


.grid-item3 i:hover {
    transform: translateX(5px);
}


.direitos {
    justify-items: center;
    font-size: 13px;
    color: #ededed79;
}



/*MEDIA QUERIES - TABLET*/

@media all and (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-container2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero3 {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        height: auto;
        margin: 0px;
        width: auto;
    }

    .hero3 h3 {
        margin-top: 5%;
    }

    .hero3 .btn2 {
        justify-content: center;
    }

    .hero3 .btn-simular2 {
        margin: 0;
    }

    .list {
        display: none;
    }

    .hero3 li {
        margin-left: 40px;
        width: 100%;
    }

    .hero3 img {
        display: none;
    }

    .hero5 {
        grid-template-columns: 1fr;
        text-align: center;
        height: auto;
        padding: 40px 20px;
    }

    .hero5 img {
        width: 70%;
        margin: 0 auto 30px;
    }

    .hero4 h4 {
        font-size: 30px;
        padding: 20px;
    }

    .hero4 p {
        font-size: 15px;
        padding: 0 20px;
    }

    .btn-extra {
        font-size: 14px;
    }
}

/*MEDIA QUERIES - MOBILE*/
@media all and (max-width: 480px) {

    .menu a {
        display: none;
    }

    .btns {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 9999;
        border: 1px solid #0000002d;
        color: #2b2b2b;


        flex-direction: column;
        align-items: center;
        gap: 20px;

        display: none;
        padding: 20px 0;
    }

    .btns.active {
        display: flex;
    }

    .mobile {
        display: block;
        color: #eca300;
        margin-right: 55px;
        cursor: pointer;
        font-size: 22px;
    }

    .top-site {
        padding: 15px 20px;
    }

    .top-site img {
        margin-left: 10px;
    }

    .hero1 {
        border-radius: 20px;
    }

    .hero1 h1 {
        font-size: 34px;
    }

    .hero1 h3 {
        font-size: 18px;
        padding-left: 0;
    }

    .hero1 p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .counting {
        margin-left: 15px;
    }

    .grid-container2 {
        grid-template-columns: 1fr;
    }

    .grid-container3 {
        grid-template-columns: 1fr;
        margin: 0;
        gap: 0;
    }

    .hero-content h1 {
        margin: 0px 0 10px 0;
    }

    .hero-content h3 {
        margin: 0 0 12px 0;
    }

    .hero-content .btn-simular {
        font-size: 16px;
        padding: 12px 20px;
    }


    .hero3 {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }


    .hero3 h3 {
        font-size: 24px;
    }

    .hero3 p {
        margin: 30px 10px;
    }

    .hero5 img {
        max-width: 90%;
        padding: 0px;
        margin: 0;
    }

    .hero5 {
        display: block;
        padding-bottom: 15%;
    }

    .hero5 p {
        margin: 0px 15px 30px;
    }


    .btn-simular2,
    .btn-simular3 {
        font-size: 14px;
        padding: 12px 20px;
    }

    footer {
        text-align: center;
    }

    .grid-item3 img {
        width: 60%;
    }

    .grid-item3 {
        margin: 10px;
    }

    .grid-item3 p {
        text-align: center;
    }

    .grid-item4 p {
        justify-content: center;
        text-align: center;
    }

    .btn-extra {
        display: none;
    }

    .home-opinion {
        height: auto;
    }

    .home-opinion h4 {
        width: 90%;
        margin-left: 5%;
    }

    .home-opinion p {
        width: 80%;
        margin-left: 11%;
    }

    .about-content {
        padding: 48px 32px 20px 32px;
    }


    /*SERVICES*/

    .hero4 h4 {
        margin-top: 20%;
    }

    .hero4 {
        height: 300px;
    }


    /*ABOUT*/

    .about {
        height: 950px;
    }

    .about__content {
        margin-top: 20%;
    }

    .about-history {
        height: 400px;
    }

    .contact_title {
        margin-top: 20%;
    }

    .grid-cntct {
        margin-top: 20%;
        display: block;
        margin-left: 0;
    }

    .grid-cntct-item {
        margin: 3% 0 0 0;
    }

    .booking-section {
        padding: 50px 23px 50px 23px;

    }

    .indiv {
        margin-top: 25%;
    }

    .why-left ul li {
        padding-left: 0;
    }

    .why-block h3 {
        margin-top: 0;
    }

}