/* ======= Global Styles ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}  

html, body {
    height: 100%;
    background-color: var(--color-white);
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}

/* ======= Colors ======= */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-coral: #FF6B6B;
    --color-dark-blue: #212933;
    --color-dark-coral: #DB4B4B;
    --color-coral-transparent: #ff6b6b34;
}

/* ======= Typography ======= */
h1, h2, h3, h4, p {
    font-family: "Roboto", sans-serif;
    font-style: normal;
}

h1 {
    font-size: 33px;
    font-weight: 700;
    line-height: 120%; 
}

h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}


h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 120%; /* 30px */
}

h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%; /* 28px */
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none; 
    color: inherit; 
    font-weight: normal; 
    font-size: inherit; 
}

a:hover {
    text-decoration: none; /* Garante que não haverá sublinhado no hover */
    color: inherit; /* Garante que a cor não mudará no hover */
}

/* ======= Colors ======= */
:root {
    --color-black: #000000;
    --color-text-black: #1d1b1b;
    --color-white: #ffffff;
    --color-coral: #FF6B6B;
    --color-dark-blue: #212933;
    --color-dark-coral: #DB4B4B;
}

/* ========== Comum Sections ========= */
.container-all .cta-section {
    /* Defina as propriedades que deseja sobrescrever ou remover */
    max-width: initial; /* ou none */
    margin: initial; /* ou 0 */
    padding-top: initial; /* ou 0 */
}

.container-hero,
#banner,
#about, 
#services,
#faq,
#contact,
#steps {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding-left: 80px;
}

#about {
    padding-left: 80px;
}

#about, #services {
    padding: 60px 0 60px 80px;
}
   
/* ====== Header ======= */
.navbar .navbar-expand-lg .nav-container .navbarNav {
    background-color: var(--color-white);
}

.nav-container {
    width: 100%;
    height: 70px;
    align-items: center;
    padding: 12px 64px;
    background-color: var(--color-white);
    border-bottom: 1px var(--color-black) solid;
    display: flex;
    justify-content: center; /* Centraliza verticalmente */
}

.logo {
    height: 100%;
    width: 100%;
}

.nav-link {
    margin-right: 20px;
    text-decoration: none;
    text-align: center;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: var(--color-text-black);
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
    color: var(--color-coral);
} 

nav .btn {
    display: flex;
    width: 164px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    color: var(--color-white);
    background-color: var(--color-coral);
}

nav .btn:hover {
    background-color: var(--color-dark-coral);
}


/* ==== Hero ==== */
#home {
    height: auto;
    display: flex;
    position: relative;
    background-image: url(../images/hero-photo.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 60% auto;
}

.container-hero {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.image-responsive {
    display: none;
}

.text-content {
    width: 43%;
    min-width: 43%;
    max-height: 100vh;
    padding: 60px 0;
    border: none;
}

.text-content h2 {
    padding: 18px 0 32px 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.btn-cta {
    display: inline-block;
    padding: 12px 24px;
    width: 216px;
    border: none;
    border-radius: 5px;
    color: var(--color-white);
    background-color: var(--color-coral);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--color-dark-coral);
}

/* ====== Slider ======= */
.slider {
    height: 200px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(250px * 6); /*regula tamanho*/
    animation: scroll 50s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

#slider .slide {
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5));
    }
}
/* 
.slide img {
    width: 100%;
    transition: transform 1s;
}

.slide img:hover {
    transform: translate(20px);
} */

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%,
     rgba(255, 255, 255, 0) 100%);
    content: '';
    height: 90%;
    position: absolute;
    width: 15%;
    z-index: 2;
}

.slider::before {
    left: 0;
    top: 1;
}

.slider::after {
    right: 0;
    top: 1;
    transform: rotateZ(180deg);
}


/* ======= Banner ======= */
.banner {
    padding: 32px 20px 32px 0;
}

.promo {
    /* display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.8rem; */
    width: 100%;
    height: auto;
    padding: 16px;
    border-radius: 5px;
    opacity: 0.9;
    background: rgba( 255, 255, 255, 0.35 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 13.5px );
    -webkit-backdrop-filter: blur( 13.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.banner-content button {
    background-color: transparent;
    color: var(--color-text-black);
    padding: 1px 6px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.banner-content button:hover {
    background-color: var(--color-white);
    color: var(--color-coral);
}


/* ======= About ======= */
.about-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-item-container {
    max-width: 633px;
}

.about-us {
    margin: 24px 0 30px 0;
    max-width: 633px;
}

.about-items {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.fa-circle-check {
    color: var(--color-coral);
}

.about-image {
    display: inline;
}

.image-about {
    width: 70%;
    float:right;
    margin-right:0;
    margin-left:10px;
    margin-bottom:5px;
}

/* ====== CTA WPP ======= */

.whatsapp-button {
    position: fixed; 
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #148a3f;
    color: white;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .whatsapp-button:hover {
    background-color: #DB4B4B; 
    color: var(--color-white);
    transform: scale(1.1); /* Efeito de aumento ao passar o mouse */
  }

/* ======= Services ======= */
.step-container-mobile {
    display: none;
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 246px;
}

#recommendations-carousel-items {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    border-radius: 20px;
    opacity: 0.9;
    padding-right: 80px;
}

#carousel-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow-x: scroll;
    width: 150vh;
    min-width: 150px;
    gap: 0.7rem;
}

#services h4 {
    margin: 12px 0 33px 0;
}

#carousel-content::-webkit-scrollbar {
    width: 10px; 
}

#carousel-content::-webkit-scrollbar-track {
    background-color: transparent; 
}

#carousel-content::-webkit-scrollbar-thumb {
    background-color: transparent; 
    border: none; 
}

.card {
    width: 318px;
    min-width: 318px;
    padding: 1rem;
}

#btn-arrow-left,
#btn-arrow-right {
    min-width: 30px;
    width: 50px;
    font-size: 1rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#btn-arrow-left {
    color: #797774;
}

.item-service {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 3px;
}

.card h4 {
    text-align: center;
    padding: 12px;
}

.services-list {
    min-height: 360px;
}

.contact-btn-service {
    display: none;
}


.contact-btn-service {
    width: 100%;
    align-items: center;
    padding: 4px;
    background: var(--color-dark-coral);
    border: none;
    border-radius: 5px;
}

.contact-btn-service:hover {
    background-color: var(--color-coral);
}

.contact-btn-service .fa-whatsapp {
    margin: 0;
    padding: 4px;
    gap: 10px;
    color: var(--color-white);
}

.contact-btn-service span {
    padding-right: 10px;
}

.contact-btn-service a {
    color: var(--color-white);
    font-weight: 400;
    font-size: 18px;
}

.contact-btn-service a:hover {
    color: var(--color-white);
}


/* ======= FAQ ======= */
#faq {
    height: auto;
    background-color: var(--color-white);
    padding: 60px 80px;
}

#faq h3 {
    padding-bottom: 18px;
}

.accordion {
    border-radius: 5px;
}

.accordion-flush>.accordion-item>.accordion-header .accordion-button, .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
    border-radius: 5px;
}

.accordion-button:not(.collapsed) {
    color: var(--color-text-black);
    background-color: #ff6b6b3b;
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none; /* Remove também o box-shadow padrão */
}

.accordion-button {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

/* ======= Steps ======= */
#steps {
    width: 100%;
    height: auto;
    padding: 52px 0 80px 98px;
}

#steps h3 {
    padding-bottom: 8px;
}

#steps h4 {
    padding-bottom: 32px;
}

.progress {
    height: 1px;
    width: 100%;
}

.progress-container {
    height: auto;
    width: 100%;
}

.position-absolute {
    top: 0;
    transform: translate(-50%, -50%);
}

.progress {
    height: 2px;
    width: 75%;
    color: var(--color-text-black);
}

.progress, .progress-stacked {
    background-color: var(--color-text-black);
}

.progress-bar {
    background-color: var(--color-text-black);
}


.rounded-pill {
    background-color: var(--color-coral);
    border: 1px solid #FF6B6B;
}

.rounded-pill:hover {
    background-color: var(--color-dark-coral);
    border: 1px solid #DB4B4B;
}

.step-container {
    width: 100%;
    height: auto;
}

.steps-cards {
    display: flex;
    flex-direction: row;
    gap: 3em;
}

.step-card {
    width: 243px;
}

.step-card p {
    height: 95px;
    max-height: 95px;
    padding-bottom: 32px;
}

.image-step {
    width: 243px;
}

/* ======= CTA ======= */
#cta-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-image: url('../images/cta.png');
    background-size: cover;
    background-repeat: no-repeat;
}

#cta-section a {
    margin: 150px;
    background-color: var(--color-coral);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
}

#cta-section a:hover {
    background-color: var(--color-dark-coral);
}

/* ======= contact ======= */
#contact {
    width: 100%;
    height: auto;
    padding: 80px 64px;
}

.contact-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.contact-image {
    order: 1; /* Coloca este elemento como segundo */
}
.contact-content {
    order: 2; /* Coloca este elemento como primeiro */
}

.contact-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-contact {
    background-color: var(--color-coral);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    padding: 6px 21px;
}

.btn-contact:hover {
    background-color: var(--color-dark-coral);
}

.fa-brands {
    color: var(--color-coral);
    padding: 18px;
    font-size: 22px;
}

.fa-brands:hover {
    color: var(--color-dark-coral);
    transform: scale(1.2);
}

/* ======= Footer ======= */
#footer {
    width: 100%;
    height: auto;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.footer-container {
    display: flex;
    flex-direction: column;
}


.footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 64px 20px 64px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0 64px;
    padding: 20px 0;
    border-top: 1px solid var(--color-text-black);
}

footer h6 {
    font-family: "Playwrite PE", cursive;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.photo-contact {
    width: 550px;
}


/* ========== Responsiveness ========== */

/* Navbar Tablets e Mobile */
@media (max-width: 767.98px) {
    .container, .container-sm {
        max-width: 540px;
        margin: 0;
        padding: 0;
    }

    .nav-container {
        height: auto;
        padding: 6px 18px;
    }

    .navbar-collapse {
        z-index: 1;
        background-color: var(--color-white);
        border: none;
        border-radius: 5px;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0 20px 0;
    }

    .logo {
        width: 40px;
        height: auto;
    }

    #toggleMenuButton {
        width: 40;
        height: auto;
        border: none;
        color: transparent;
    }

    #toggleMenuButton:hover {
        border: none;
        background-color: transparent;
    }
}

/* tablet e notbook pequeno */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container, .container-md, .container-sm {
        max-width: 720px;
        height: 70px;
    }

    .nav-container {
        height: auto;
        padding: 6px 18px;
    }

    .navbar-collapse {
        z-index: 1;
        background-color: var(--color-white);
        border: none;
        border-radius: 5px;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }

}

/* Tablet grande e laptop pequeno */
@media (max-width: 1200px) {

    /* Hero */
    .container-hero {
        background-size: cover;
    }

    .text-content h2 {
        padding: 16px 0 24px 0;
    }

    h1 {
        font-size: 30px;
        font-weight: 700;
        line-height: 120%; 
    }

    h2 {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    h3 {
        font-size: 22px;
        font-weight: 700;
        line-height: 120%; /* 26.4px */
    }

    h4 {
        font-size: 18px;
        font-weight: 500;
        line-height: 140%; /* 25.2px */
    }

    p {
        font-size: 14px;
        font-weight: 400;
        line-height: 150%; /* 21px */
    }

    /* About */

    #about, #steps {
        padding: 32px 0 32px 80px;
    }

    #contact , #faq{
        padding: 42px 80px;
    }

    /* Steps */
    .steps-cards {
        display: flex;
        flex-direction: row;
        gap: 2em;
    }

    element.style {
        left: 85%;
    }
}


/* Tablet*/
@media (max-width: 884px) {
    /* All */
    .container-hero, #banner, #about, #services, #faq, #contact, #footer, #steps {
        max-width: 1360px;
        margin: 0 auto;
        width: 100%;
        height: auto;
        padding-left: 0;
    }

    /* Hero */
    #home {
        background-image: none;
    }

    #banner, #services, #faq, #contact, #footer, #steps {
        padding: 40px;
    }

    .text-content {
        width: 600px;
        padding: 24px 0 32px 40px;
    }

    .container-hero {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: normal;
        background-image: none;
        position: initial;
    }

    .image-responsive {
        display: inline;
    }

    .image-responsive img {
        width: 100%;
        height: auto;
        border-radius: 0 0 100% 100%;
    }

    .image-mobile {
        display: none;
    }

    .text-content h2 {
        padding: 16px 0 24px 0;
        gap: 0;
    }

    /* About */
    #about {
        padding: 40px 0 40px 40px;
    }

    .about-container {
        align-items: end;
    }

    .about-item-container {
        width: 100%;
    }

    .about-image {
        width: 40%;
    }

    /* Services */
    #recommendations-carousel-items {
        padding-right: 0;
    }

    /* Contact */
    .photo-contact {
        width: 350px;
    }

    .contact-container {
        padding: 24px 0 24px 0;
        gap: 2rem;
    }

    /* Footer */
    .footer-info{
        padding: 0;
    }

    footer h6 {
        font-size: 14px;
    }

    .footer-links {
        padding: 24px 0 0 0;
        margin: 0;
    }
    
}

@media (max-width: 1120px) {
    .steps-cards {
        gap: 1rem;
    }
}
@media (max-width: 1100px) {
    /* Services */
    .step-container-web {
        display: none;
    }

    .step-container-mobile {
        display: flex;
        flex-direction: column;
    }

    .step {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        padding: 16px;
    }
    
    .steps-cards {
        gap: 3em;
    }
    
    .step-card {
        width: 200px;
    }


    .image-step {
        margin: 24px 0;
    }
}

/* Cell*/
@media (max-width: 767px) {
    /* All */
    #banner, #about, #faq, #contact, #footer, #steps {
        padding: 24px;
    }

    #steps h3 {
        padding-top: 32px;
    }

    /* Hero */
    .text-content {
        width: auto;
        padding: 24px 24px 32px 24px;
    }

    .image-responsive img {
        margin-top: 0;
    }

    .text-content h2 {
        padding: 8px 0 16px 0;
    }

    .btn-cta {
        padding: 8px 16px;
        background-color: #DB4B4B;
    }

    .btn-cta:hover {
        background-color: #FF6B6B;
    }

    h1 {
        font-size: 24px;
        font-weight: 700;
        line-height: 120%; 
    }

    h2 {
        font-size: 1rem;
        font-weight: 400;
        line-height: 21px;
    }

    h3 {
        font-size: 20px;
        font-weight: 700;
        line-height: 120%; /* 24px */
    }

    h4 {
        font-size: 1rem;
        font-weight: 500;
        line-height: 140%; /* 22.4px */
    }

    p {
        font-size: 1rem;
        font-weight: 400;
        line-height: 150%; /* 18px */
    }

    .image-tablet {
        display: none;
    }

    .image-mobile {
        display: block;
    }

    /* Banner */

    #banner {
        padding: 24px 16px;
    }

    .banner p {
        font-size: 14px;
    }

    
    /* About */
    #about {
        height: auto;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    /* Services */
    #services {
        padding: 0;
    }

    #services h3 {
        margin: 0;
        padding: 24px 24px 6px 24px;
    }

    #services h4 {
        margin: 0;
        padding: 6px 24px 33px 24px;
    }
    
    .card {
        width: 255px;
        min-width: 255px;
        padding: 1rem;
    }

    #services img {
        width: 200px;
        height: auto;
    }

    .contact-btn-service {
        display: none;
    }

    /* .services-list {
        height: 350px;
    } */

    /* Steps */
    .image-step {
        width: 220px;
    }

    .steps {
        gap: 1;
    }

    /* CTA */

    #cta-section a {
        margin: 100px auto;
        background-color: #DB4B4B;
    }

    #cta-section a:hover {
        background-color: #FF6B6B;
    }

    /* Contact */

    .btn-contact {
        background-color: #DB4B4B;
    }

    .btn-contact:hover {
    background-color: #FF6B6B;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-image {
        order: 2; /* Coloca este elemento como primeiro em telas maiores */
    }
    .contact-content {
        order: 1; /* Coloca este elemento como segundo em telas maiores */
    }

    .photo-contact {
        width: 300px;
        padding: 12px 16px;
    }

    .contact-content {
        padding: 32px 0;
    }
    
    /* Footer */

    .footer-info {
        padding: 0;
    }
    
    .info-footer {
        display: none;
    }

    .footer-links{
        display: flex;
        flex-direction: column;
        align-items: start;
        margin: 0;
    }
    
    .footer-links p {
        padding: 0;
        margin: 0;
    }

    .terms-footer {
        display: none;
    }
    
}


/* PC */
@media (min-width: 1400px) {
    .steps-cards {
        gap: 4em;
    }

    #recommendations-carousel-items {
        padding-right: 0;
    }

    .services-list {
        min-height: 370px;
    }
}