/* Variables */
:root {
    --background-primary: #f7f7f7;
    --background-secundary: #e7e7e7;
    --colorful: linear-gradient(90deg,rgba(99, 54, 223, 1) 0%, rgba(223, 54, 124, 1) 51%, rgba(222, 93, 33, 1) 100%);
    --main-font: "Poppins", sans-serif;
    --font-primary: #333333;
    --font-white: #f7f7f7;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-primary);
    font-family: var(--main-font);
}

/* Header CSS */

/* Nav Bar CSS */
.nav-bar {
    position: fixed;
    box-sizing: border-box;
    width: 100%;
    background-color: var(--background-primary);
    z-index: 1000;
    padding: 1.5rem 5rem;
    display: flex;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    margin-top: 0.1rem;
    width: 60px;
}

.marking-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 10rem;
}

.nav-item {
    text-decoration: none;
    font-family: var(--main-font);
    color: var(--font-primary);
    font-weight: 400;
    font-size: 1.1rem;
    transition: transform ease 0.2s;
}

.nav-item:hover {
    transform: scale(1.1);
}

.mobile-nav-bar {
    display: none;
}

.mobile-items {
    position: fixed;
    box-sizing: border-box;
    width: 170px;
    right: 0%;
    top: 0%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem 0.5rem 1rem;
    box-shadow: -3px 5px 5px 0px rgba(220, 220, 220, 0.5);
    gap: 1rem;
    z-index: 1000;
    background-color: var(--background-primary);
}

.close-container {
    display: flex;
    justify-content: end;
}

.close-button {
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
}

.mobile-items-container {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


/* Whatsapp Button */
.sec-six {
    position: fixed;
    display: flex;
    bottom: 2%;
    right: 2%;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    justify-content: center;
    text-decoration: none;
    animation-name: pulse;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.contact-button {
    display: flex;
    align-items: center;
    background-color: #27D045;
    border: none;
    padding: 0.6rem 0.6rem;
    border-radius: 10rem;
    transition: transform ease 0.2s;
    cursor: pointer;
}

.contact-button:hover {
    transform: scale(1.1);
}

.button-icon {
    width: 50px;
}

/* Main CSS*/
main {
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 3rem 8rem 1.5rem 8rem;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.hero-img {
    width: 650px;
}

.hero-text-container {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.title {
    font-size: 4rem;
    margin: 0;
}

.hero-text {
    font-weight: 400;
    margin: 0;
    margin-bottom: 2rem;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-button {
    background: #6336df;
    background: var(--colorful);
    font-size: 1rem;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10rem;
    color: var(--font-white);
    transition: transform ease 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.hero-button:hover {
    transform: scale(1.1);
}

#entreEmContato {
    background: transparent;
    color: #df367c;
    border: 2px solid #df367c;
}

/* Section 1 */
.sec-one {
    position: relative;
    display: flex;
    gap: 5rem;
    padding: 5rem 12rem 2rem 4rem;
    justify-content: center;
    align-items: flex-start;
    background-color: var(--background-secundary);
}

.sec-one-text-container {
    max-width: 650px;
}

.sec-title {
    font-size: 2rem;
}

.sec-text {
    font-size: 1.1rem;
}

.sec-one-image {
    width: 550px;
}

.gradient-text {
    background: #6336df;
    background: linear-gradient(90deg, #6336df 0%, #df367c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    display: inline-block;
}

/* Section 2 */
.sec-two {
    padding: 4rem 2rem 0rem 2rem;
}

.servicos {
    text-align: center;
}

.carrosel-container {
    display: flex;
    justify-content: center;
}

    /* Carousel */
    .carousel-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .carousel-slides {
        position: relative;
        width: 60%;
        height: 500px;
        overflow: hidden;
    }

    .slide {
        margin-top: 1rem;
        width: 50vw;
        max-width: 600px;
        height: auto;
        position: absolute;
        transition: 0.5s;
        left: calc(50% - 300px);
        top: 0;
        border-radius: 1rem;
        box-shadow: 0px 0px 10px 0px rgba(220, 220, 220);
    }

    .carousel-button {
        background: #6336df;
        background: var(--colorful);
        border: none;
        border-radius: 10rem;
        color: white;
        font-size: 1.8rem;
        padding: 0.3rem 1rem;
        transition: transform ease 0.2s;
        cursor: pointer;
    }

    .carousel-button:hover {
        transform: scale(1.08);
    }

/* Section 2.5 */
.sec-two-detailed {
    padding: 2rem 5rem 4rem 5rem;
    background-color: var(--background-primary);
    background-image: url(/static/images/section-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    text-align: center;
}

.detailed-services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-category-card {
    width: 600px;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.8rem;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform ease 0.3s, box-shadow ease 0.3s;
}

.category-title {
    font-size: 1.4rem;
    color: #6336df;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.category-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--font-primary);
}

.service-list li::before {
    content: "•";
    color: #df367c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Section 3 */
.sec-three {
    margin-bottom: 3rem;
}

.planos {
    text-align: center;
    margin-bottom: 3rem;
}

.planos-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.plano {
    padding: 1rem;
    background-color: white;
    width: 300px;
    border-radius: 1rem;
    box-shadow: 0px 0px 10px 0px rgba(200, 200, 200, 0.8);
    display: flex;
    flex-direction: column;
    transition: transform ease 0.3s;
}

.plano:hover {
    transform: scale(1.1);
}

.premium {
    border: 0.3rem solid #6336df;
}

.plano-title {
    text-align: center;
    font-size: 2em;
    color: #df367c;
    margin: 0;
    margin-top: 0.7rem;
}

.plano-title-premium {
    text-align: center;
    font-size: 2em;
    background: #6336df;
    background: linear-gradient(90deg, #6336df 0%, #df367c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    margin-top: 0.7rem;
}

.plano-benefits {
    font-size: 0.9rem;
    line-height: 1.5rem;
    height: 400px;
}

.plano-preco {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100px;;
}

.preco {
    margin: 0;
    font-size: 2.2rem;
    font-weight: bold;
}

.preco-premium {
    margin: 0;
    font-size: 2.2rem;
    font-weight: bold;
    background: #6336df;
    background: linear-gradient(90deg, #6336df 0%, #df367c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cifrao, .cents {
 font-size: 1rem;
}

.preco-old {
    margin: 0;
    text-decoration: line-through;
}

.you {
    list-style: none;
    padding: 0;
}

.you .benefit {
    text-align: center;
}

.combinar {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.plano-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.plano-button {
    background: #df367c;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 10rem;
    color: var(--font-white);
    transition: transform ease 0.2s;
    cursor: pointer;
}

.plano-button a {
    text-decoration: none;
    color: var(--font-white);
}

.plano-button-premium {
    background: #6336df;
    background: var(--colorful);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 10rem;
    color: var(--font-white);
    transition: transform ease 0.2s;
    cursor: pointer;
}

.plano-button-premium a {
    text-decoration: none;
    color: var(--font-white);
}

.plano-button:hover, .plano-button-premium:hover {
    opacity: 0.8;
}

/* Section 4 */
.sec-four {
    background-color: white;
    padding: 2rem;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-four h2 {
    margin: 0;
    margin-bottom: 1rem;
}

.work-flow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.work-card {
    padding: 1.2rem 1rem 0rem 1rem;
    width: 220px;
    height: 200px;
    border-radius: 0.5rem;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-weight: bold;
    margin: 0;
    color: #6336df;
}

.card-number {
    width: 30px;
    border-radius: 10rem;
}

.arrow, .arrow-mobile {
    font-size: 1.5rem;
    margin: 0;
}

.arrow-mobile {
    display: none;
}

/* Section 5 */
.sec-five {
    display: flex;
    gap: 5rem;
    padding: 4rem;
    margin-bottom: 2rem;
    justify-content: center;
    align-items: center;
}

.about-text-container {
    max-width: 700px;
}

.about-text-container .gradient-text {
    font-size: 1.3rem;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.valores-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.valores-list li::before{
    content: '•  ';
    color:#df367c;
}

.sec-five-img {
    width: 500px;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    background-color: black;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.links {
    text-align: center;
    margin: 0;
    color: var(--font-white);
    font-weight: bold;
    font-size: 0.9rem;
}

.links-container {
    display: flex;
    gap: 1rem;
}

.links-left, .links-right {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.links-right {
    border-left: 1px solid white;
    padding-left: 1rem;
}

.footer-item {
    text-decoration: none;
    color: var(--font-white);
    font-size: 0.8rem;
}

.footer-item:hover {
    text-decoration: underline;
}

.footer-mid {
    display: flex;
    align-items: center;
}

.copy {
    color: var(--font-white);
    font-size: 0.8rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.social-image {
    width: 18px;
}

.social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform ease 0.2s;
    color: var(--font-white);
    font-size: 0.8rem;
}

.social:hover {
    transform: scale(1.1);
}

/* Hidden */
.hidden {
    display: none;
}

/* Keyframe */
@keyframes pulse {
    from {
        transform: scale(1.00);
    } to {
        transform: scale(1.1);
    }
}

/* Responsividade */

/* Notebooks */
@media screen and (max-width: 1700px){
    .hero-img {
        width: 550px;
    }
}

/* Small Screens */
@media screen and (max-width: 1500px){
    .hero-img {
        width: 500px;
    }

    .title {
        font-size: 2rem;
    }
}

/* Smartphones */
@media screen and (max-width: 1160px){
    /* Nav Bar */
    .nav-bar {
        display: none;
    }

    .mobile-nav-bar {
        position: fixed;
        box-sizing: border-box;
        background-color: var(--background-primary);
        z-index: 1000;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 2rem;
    }

    .mobile-logo {
        margin-top: 0.5rem;
        width: 60px;
    }

    .marking-title {
        font-size: 1.5rem;
    }

    .nav-menu {
        background-color: transparent;
        border: none;
        font-size: 1.8rem;
        border-radius: 0.3rem;
        color:#333333;
    }

    main {
        display: flex;
        flex-direction: column;
    }

    /* Hero Section */
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 2rem 1rem 2rem;
        gap: 2rem;
        text-align: center;
    }

    .hero-img {
        width: 330px;
        height: auto;
    }

    .hero-button {
        font-size: 1.1rem;
    }

    /* Section 1 */
    .sec-one {
        flex-direction: column;
        align-items: center;
        padding: 3rem 2rem 2rem 2rem;
        gap: 2rem;
    }

    .sec-title {
        font-size: 1.5rem;
    }

    .sec-one-image {
        width: 350px;
    }

    /* Section 2 */
    .carousel-slides {
        width: 100%;
        height: 300px;
    }

    .slide {
        width: 290px;
        height: auto;
        left: calc(50% - 145px);
    }

    .carousel-button {
        display: none;
    }

    /* Section 2.5 */
    .sec-two-detailed {
        padding: 2rem;
        background-image: none;
    }

    /* Section 3 */
    .planos-container {
        flex-direction: column;
        align-items: center;
    }

    .plano-benefits {
        height: unset;
    }

    /* Section 4 */
    .work-flow-container {
        flex-direction: column;
    }

    .work-card {
        height: unset;
    }

    .arrow {
        display: none;
    }

    .arrow-mobile {
        display: block;
    }

    /* Section 5 */
    .sec-five {
        flex-direction: column;
        align-items: center;
    }

    .sec-five-img {
        width: 350px;
    }
    

    /* Footer */
    footer {
        display: flex;
        align-items: start;
    }

    .links-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .links-right {
        border: none;
        padding-left: 0;
    }

    .copy {
        font-size: 0.8rem;
    }

    footer span {
        display: none;
    }
}