:root {
    @import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');



    --primary-color: #000;
    --secondary-color: #323232;
    --brand-color: #4a35e8;
    --terciary-color: #fff;
    --details: #f3f3f3;

    --font: "Lexend", serif;
    --padding-y: 8%;
    --padding-y-mobile: 5%;

}

html {
    font-family: var(--font);
    background: linear-gradient(0deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 100%);
    overflow-x: hidden;
}

@media (max-width: 1175px) {
    
    html {
        overflow-x: hidden;
    }
}



/* ==================
NAVEGAÇÃO
================== */

nav {
    padding: 20px var(--padding-y);
}

.desktop-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.havefunnels-logo {
    width: 200px;
}

.menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 100;
}

.mobile-menu {
    display: none;
}

.hamburger-menu {
    display: none;
}

.nav-mobile {
    display: none;
}


@media (max-width: 1175px) {

    nav {
        padding: 10px 0px;
    }

    .nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        
    }

    .logo-mobile {
        height: 40px !important;
        width: 200px !important;
    }

    .desktop-menu {
        display: none;
    }

    .hidden {
        display: none;
    }

    .hamburger-menu {
        display: block;
        background-color: var(--terciary-color);
        border: none;
        box-shadow: none;
        color: black;
        font-size: 40px;
        border-radius: 10px;
        padding-left: 5%;
    }

    .mobile-menu.shown {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: fit-content;
        padding: 20px;
        font-size: 20px;
        margin-top: 20px;
        position: absolute;
        background-color: var(--secondary-color);
        border-radius: 10px;
        top: 60px;
        z-index: 9999;
    }

    .mobile-menu a {
        color: #fff;
        text-decoration: none;
    }

    .mobile-menu a:not(:last-child):hover {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
    }

    .mobile-menu a:not(:last-child):active {
        transform: translateY(2px);
        text-shadow: none;
    }

    .get-started-mobile {
        width: fit-content
    }

}

/* ==================
NAVEGAÇÃO
================== */


/* ==================
BOTÕES
================== */


.get-started {
    background-color: var(--brand-color);
    color: var(--terciary-color);
    padding: 7px 30px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    border: 3px solid var(--brand-color);
}

.get-started:hover {
    box-shadow: 0 5px 0 0 var(--terciary-color);
    transform: translateY(-5px);
    transition: transform 0.1s, box-shadow 0.2s;
}

.get-started:active {
    transform: translateY(0px);
    box-shadow: none;
}

.button-login {
    border: 3px solid var(--brand-color);
    color: var(--brand-color);
    padding: 7px 30px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

.button-login:hover {
    box-shadow: 0 5px 0 0 var(--brand-color);
    transform: translateY(-5px);
    transition: transform 0.1s, box-shadow 0.2s;
}

.button-login:active {
    transform: translateY(0px);
    box-shadow: none;
}

.buttons {
    margin-top: 70px;
    display: flex;
    gap: 50px
}

@media (max-width: 1175px) {

    .buttons {
        gap: 10px;
        margin-top: 20px;
        justify-content: center
    }

    .get-started {
        padding: 7px 18px;
        font-size: 16px;
    }

    .button-login {
        padding: 7px 18px;
        font-size: 16px;
    }
}


/* ==================
BOTÕES
================== */


/* ==================
HERO
================== */

.hero {
    padding: 0 0 0 var(--padding-y);
    margin-top: 40px;
    display: grid;
    grid-template-columns: 4fr 1fr;
    padding: 5%;
}

.hero-content h1{
    color: var(--primary-color);
    font-size: 65px;
    margin: 0;
    overflow: visible;
    width: 110%;
    z-index: 999;
    position: relative;
    padding-left: 20px;
}

.effect {
    position: relative;
    background: linear-gradient(90deg, rgba(0, 22, 255, 1) 0%, rgba(149, 0, 255, 1) 24%, rgba(219, 0, 251, 1) 43%, rgba(255, 0, 249, 1) 63%, rgba(255, 102, 102, 1) 77%, rgba(251, 153, 86, 1) 88%, rgba(249, 255, 0, 1) 100%);
    width: max-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    border-radius: 20px;
}

.effect h2 {
    font-size: 65px;
    font-weight: 900;
    color: black;
    margin: 0;
    padding: 5px 20px;
}

.effect-mobile {
    display: none;
}

.hero-image img {
    width: 700px;
    overflow: visible;
}


@media (max-width: 1175px) {
    .hero {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero-content h1 {
        width: 100%;
        font-size: 50px;
        line-height: 1.2;
        padding-left: 0px;
    }

    .hero-image img {
        display: none;   
    }

    .effect {
        display: none;
    }

    .effect h1 {
        display: none;
    }

    .effect-mobile {
        display: flex;
        justify-content: center;
        margin-top: 5px;
    }

    .effect-mobile h2 {
        margin-top: 0;
        width: max-content;
        background: linear-gradient(90deg, rgba(0, 22, 255, 1) 0%, rgba(149, 0, 255, 1) 24%, rgba(219, 0, 251, 1) 43%, rgba(255, 0, 249, 1) 63%, rgba(255, 102, 102, 1) 77%, rgba(251, 153, 86, 1) 88%, rgba(249, 255, 0, 1) 100%);;
        color: var(--primary-color);
        border-radius: 8px;
        padding: 3px 25px;
        font-size: 35px;
        
    }
    
}


/* ==================
HERO
================== */



/* ==================
INFOS
================== */

.infos {
    background-color: var(--secondary-color);
    margin: 80px 3%;
    padding: 50px 4%;
    border-radius: 20px;
}

.infos h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--details);
    margin-top: 0;
}

.infos-cards {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.infos-column-1 {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.infos-column-2 {
    display: flex;
    gap: 20px;
}

.centralize, .proactive, .infos-column-2 {
    background-color: var(--details);
    border-radius: 10px;
    padding: 10px 20px;
}

.centralize h3, .proactive h3, .infos-column-2 h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--brand-color);
}

.centralize p, .proactive p, .infos-column-2 p {
    font-size: 18px;
}

.infos-column-2 img {
    width: 457px;
}

.centralize, .proactive {
    padding: 5px 20px;
}

@media (max-width: 1175px) {

    .infos {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .infos-cards {
        display: flex;
        flex-direction: column;
    }

    .infos-column-2 {
        display: flex;
        flex-direction: column; 
    }

    .infos-column-2 img {
        width: 100%;
    }
}

/* ==================
INFOS
================== */


/* ==================
VIDEO CONTAINER
================== */

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 30px var(--padding-y-mobile);
    margin-bottom: 80px;
}

.video {
    width: 100%;
}

.video video {
    width: 100%;
    border-radius: 20px;
}

.stats {
    color: var(--primary-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.stats h2 {
    font-size: 60px;
    margin: 0 auto;
    font-weight: 900;
    font-family: var(--font);
}

.stats p {
    font-size: 26px;
    margin: 0 auto;
    font-weight: 100;
}

@media (max-width: 1175px) {
    .video-container {
        display: flex;
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 50px;
        padding: 0 var(--padding-y-mobile);
        width: auto;
    }

    .stats {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 20px;
    }

    .stats h2 {
        font-size: 26px;
    }

    .stats p {
        font-size: 16px;
    }
}

/* ==================
VIDEO CONTAINER
================== */

/* ==================
APPS
================== */

.apps-section-container {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin-top: 60px;
}

.apps-section-container h2{
    color: var(--terciary-color);
    margin-top: 0;
    font-size: 30px;
    margin-bottom: 0;
}

.apps-section-container h3{
    color: var(--terciary-color);
    margin-bottom: 30px;
    font-weight: 200;
}

.apps-section-container p {
    color: var(--terciary-color);
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 16px;
    font-weight: 200;
}

.apps {
    padding: 30px var(--padding-y-mobile);
    text-align: center;
}

.shopify-app img, .whatsapp-app img, .telegram-logo img, .instagram-logo img, .google-logo img {
    width: 100px;
}

.apps-logos p, h3 {
    color: var(--primary-color);
}

.apps-logos {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 30px;
}

@media (max-width: 1175px) {
    .apps-logos {
        flex-direction: column;
        padding-right: var(--padding-y-mobile);
        width: auto;
    }
    
    .apps-section-container {
        width: auto;
    }
}

/* ==================
APPS
================== */

/* ==================
DEMO CARD
================== */

.demo-card {
    padding: 30px var(--padding-y-mobile);
    height: fit-content;
    justify-content: center;
    margin-top: 0;
}

.demo-card-content {
    display: flex;
    justify-content: space-around;
    background-color: var(--secondary-color);
    border-radius: 20px;
    gap: 20px;
    padding: 30px;
    color: var(--terciary-color);
}

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

.info h2 {
    margin: 0 auto;
    font-size: 30px;
    font-weight: bold
}

.info p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 30px;
}

.info-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;
}

.vertical-divider {
    width: 2px;
    background-color: var(--terciary-color);
}

.demo-list {
    font-size: 16px;
    font-weight: 200;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
}

@media (max-width: 1175px) {
    .demo-card {
        padding: 0px var(--padding-y-mobile);
        text-align: center;
        width: auto;
    }

    .demo-card-content {
        display: flex;
        flex-direction: column;
    }

    .info-buttons {
        gap: 10px;
    }
    
    .apps {
    padding: 0px var(--padding-y-mobile);
    text-align: center;
    }
}


/* ==================
DEMO CARD
================== */


/* ==================
USE CASES
================== */

.container {
    position: relative;
    height: 300px;
    width: 100%;
    top: 60px;
    display: flex;
    padding: 30px var(--padding-x);
    margin-bottom: 80px;
    justify-content: space-between
}
  
.card {
    display: flex;
    flex-direction: column;
    height: 400px;
    width: 275px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    box-shadow: -10px 0 10px 0 #00000030;
  /*   margin-left: -50px; */
    transition: 0.4s ease-out;
    position: relative;
    left: 0px;
    padding: 20px 40px 20px 20px;
    color: var(--terciary-color);
}

.card h3 {
    font-size: 30px;
    font-weight: 600;
}
  
.card:not(:first-child) {
    margin-left: -120px;
}
  
.card:hover {
    transform: translateY(-20px);
    transition: 0.4s ease-out;
}
  
.card:hover ~ .card {
    position: relative;
    left: 70px;
    transition: 0.4s ease-out;
}
  
.title {
    color: white;
    font-weight: 300;
    position: absolute;
    left: 20px;
    top: 15px;
}
  
.bar {
    position: absolute;
    top: 100px;
    left: 20px;
    height: 5px;
    width: 170px;
}
  
.emptybar {
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
}
  
.filledbar {
    position: absolute;
    top: 0px;
    z-index: 3;
    width: 0px;
    height: 100%;
    background: var(--brand-color);
    background: linear-gradient(90deg, var(--brand-color) 0%, rgb(212, 0, 255) 65%, rgba(255,186,0,1) 100%);
    transition: 0.6s ease-out;
}
  
.card:hover .filledbar {
    width: 100%;
    transition: 0.4s ease-out;
}
  
.circle {
    position: absolute;
    top: 150px;
    left: calc(50% - 60px);
}
  
.stroke {
    stroke: white;
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    transition: 0.6s ease-out;
}
  
svg {
    fill: #17141d;
    stroke-width: 2px;
}
  
.card:hover .stroke {
    stroke-dashoffset: 100;
    transition: 0.6s ease-out;
}

.use-cases-content {
    position: relative;
    margin-top: 80px;
    color: var(--terciary-color);
}

.use-cases-text {
    font-size: 16px;
    font-weight: 200;
}

.check {
    margin-bottom: 30px;
}

.check p {
    background-color: var(--brand-color);
    background: linear-gradient (to right var(--brand-color) 0%, var(--secondary-color) 100%);
    width: 100%;
    padding: 10px 0 10px 0 ;
}

.check p::before {
    content: "✓";
    margin-right: 20px;
    color: var(--brand-color);
    font-size: 20px;
    font-weight: 900;
}

.use-cases {
    margin: 0 5%;
}

@media (max-width: 1175px) {

    .container {
        display: block;
        margin-right: 0;
        margin-left: 0;
        left: 0;
        width: auto;
    }
    
    .card {
        width: auto;
    }

    .card:not(:first-child) {
        margin-left: 0;
        margin-top: 10px;
    }
      
    .card:hover {
        transform: translateY(0px);
        transition: 0.4s ease-out;
    }
      
    .card:hover ~ .card {
        position: relative;
        left: 0px;
        transition: 0.4s ease-out;
    }


}

/* ==================
USE CASES
================== */


/* ==================
VALIDATED
================== */

.validated {
    background-color: var(--secondary-color);
    margin-top: 280px;
}

.validated-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--padding-y-mobile);
}

  
  /* Velocidade da animação */
  .animation-speed {
    animation-duration: 40s;
  }
  
  /* Animação */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  /* Estilização */
  .slider {
    background-color: var(--secondary-color);
    height: fit-content;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 860px;
    padding: 20px 120px;
    border-right: 4px solid #4a35e8;
    border-left: 4px solid #4a35e8;
  }

  .slide {
    text-align: center;
  }

  .slide p {
    margin-bottom: 0;
  }
  
  .slider::before,
  .slider::after {
    content: "";
    height: fit-content;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  
  .slider::before {
    left: 0;
    top: 0;
  }
  
  .slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }
  
  .slider .slide {
    height: auto;
    width: 250px;
  }

  .validated-content h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 0;
    color: var(--brand-color);
    text-align: center;
  }

  .validated-content p {
    font-size: 18px;
    font-weight: 200;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--terciary-color);
  }

  .slide p {
    color: var(--terciary-color);
  }


  @media (max-width: 1175px) {

    .validated {
        display: none;
    }

  }

/* ==================
VALIDATED
================== */


/* ==================
FAQ
================== */

.faq {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 80px var(--padding-y);
}

.faq-title {
    color: var(--brand-color);
    font-size: 40px;
    
}
  
.accordion .accordion-item {
    border-bottom: 1px solid var(--lightgray);
}
  
.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid var(--blue);
}
  
.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: white;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}
  
.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--brand-color);
}
  
.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--brand-color);
    border: 1px solid var(--brand-color);
}
  
.accordion .accordion-title {
    padding: 1em 1.5em 1em 0;
    color: var(--primary-color);
}

.accordion-title {
    font-size: 18px;
    font-weight: bold;
}
  
.accordion .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border-radius: 22px;
    margin-left: 5px;
}
  
.accordion .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
  
.accordion .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
  
.accordion button[aria-expanded='true'] {
    color: var(--brand-color);
}
  
.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}
  
.accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 20em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
  
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: scroll;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
  
.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
    color: var(--terciary-color);
}

.accordion-content p {
    font-size: 18px;
    font-weight: 100;
}

.accordion-content {
    overflow-y: visible;
    overflow-y: visible;
}

.accordion-content::-webkit-scrollbar {
    display: none;
}


@media (max-width: 1175px) {
    .faq {
        display: flex;
        flex-direction: column;
        margin-top: 2000px;
        padding: 60px var(--padding-y-mobile);
        width: auto;
    }

    .accordion-title {
        padding-right: 20px;
    }
}


/* ==================
FAQ
================== */


/* ==================
FOOTER
================== */

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    color: var(--primary-color);
    padding: 30px var(--padding-y);
}

.all-rights {
    color: var(--primary-color);
    font-weight: 200;
}

.column-one img {
    height: 30px;
}

.footer-features, .footer-resources, .footer-more, .footer-help {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--primary-color);
}

.footer-features a, .footer-resources a, .footer-more a, .footer-help a {
    text-decoration: none;
    color: var(--primary-color);
}

.footer-features a:hover, .footer-resources a:hover, .footer-more a:hover, .footer-help a:hover {
    color: #4a35e8;
}

.footer-features a:active, .footer-resources a:active, .footer-more a:active, .footer-help a:active {
    color: #4a35e8;
}

.footer-help p {
    margin-top: 0;
}

.horizontal-divider {
    width: 100%;
    height: 1px;
    background-color: var(--terciary-color);
    margin-bottom: 20px;
}

@media (max-width: 1175px) {
    .footer-content {
        display: block;
    }
}

/* ==================
FOOTER
================== */