body {
    margin: 0;
    background-color: #fff;
    overflow-x: hidden;
}

:root {
    --preto: #111111;
    --vermelho: #f60d5c;
    --branco: #fff;
    --cinza-claro: #e7e7e7;
    --preto-20: rgba(0, 0, 0, 0.2); 
    --azul: #0972F6;
    --rosa: #EB55EE;
    --verde: #0ed056;
    --amarelo: #ffdf2b;
    --roxo: #6b2bff;
    --preto-60: rgba(17, 17, 17, 0.6); 
    --preto-65: rgba(17, 17, 17, 0.65); 
    --gradiente: linear-gradient(to right, #0972F6, #EB55EE, #F60D5C);
  }

.primary-btn {
    background: var(--gradiente);
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-size: 0.9em;
    color: var(--branco);
    cursor: pointer;
}

.secundary-btn {
    background-color: #111111;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-size: 0.9em;
    color: var(--branco);
    cursor: pointer;
}

.secundary-btn:hover{
    background-color: var(--preto);
    color: var(--branco);
}
  

body, p, h1, h2, h3, h4, h5, h6, button, a, ul {
    font-family: 'Dm Sans';
    margin: 0;
}

nav {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-self: center;
    text-align: center;
    margin: 20px auto;
    align-items: center;
}

nav img {
    width: 100px;
}

nav ul {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

nav ul li {
    font-weight: 400;
    font-size: 1em;
    color: var(--preto-65);
    cursor: pointer;
    margin: 0;
    list-style: none;
}

nav ul li:hover {
    color: var(--preto);
}

.nav-active {
    font-weight: 600;
    color: var(--preto)
}
.hamburger {
    display: none; /* Hide by default */
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 767px) {
    nav {
        position: relative;
    }

    .hamburger {
        display: block; /* Show on mobile */
        transition: all 0.3s ease;
    }

    .nav-links {
        display: none; /* Hide links by default on mobile */
        position: absolute;
        top: calc(100% + 20px);
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        background-color: #FAFAFA;
        border-top: 1px solid var(--cinza-claro);
        padding: 20px 20px 30px 20px;
        z-index: 1000;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex; /* Show links when menu is toggled */
    }

    .nav-links li {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid var(--cinza-claro);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }
}

header {
    padding-top: 140px;
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

h2 {
    font-size: 42px;
    font-weight: 500;
}

h1 {
    font-size: 76px;
    font-weight: 500;
}

h1 span {
    background-image: var(--gradiente);
    color: transparent;
    background-clip: text;
}

p {
    font-size: 18px;
    color: var(--preto-65);
}

header div {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.header-btns {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

h6 {
    font-size: 14px;
    font-weight: 400;
    color: var(--preto-65);
}

header button {
    align-items: center;
}


button i {
    width: 15px;
    fill: #111111;
    transition: fill 0.3s ease;
    margin-right: 10px;
  }



button {
    display: flex;
}

section {
    width: 80%;
    max-width: 1400px;
    text-align: center;
    display: flex;
    margin: 140px auto;
    position: relative;
}

.video-section {
    transform: scale(0.6);
    margin-top: 50px;
    transform-origin: top center;
}

.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 3px;
    background: linear-gradient(45deg, #0972F6, #0ED056, #FAC60F, #F60D5C, #0972F6);
    background-size: 400% 400%;
    border-radius: 40px;
    animation: gradientBorderAnimation 3s ease infinite;
    overflow: hidden;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: var(--branco);
    border-radius: 37px;
    z-index: 0;
}

.video-container a {
    position: relative;
    display: block;
}

.video-container a:hover .video-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.video {
    width: 100%;
    cursor: pointer;
    position: relative;
    z-index: 2;
    border-radius: 37px;
    display: block;
}

.video-play {
    position: absolute;
    width: 120px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    backdrop-filter: blur(30px);
    border-radius: 100%;
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: 3;
}

.vector-decoration {
    position: absolute;
    width: 450px;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.vector-1 {
    top: -50px;
    left: -50px;
}

.vector-2 {
    top: -50px;
    right: -50px;
}

.vector-3 {
    bottom: -50px;
    left: -50px;
}


.what-we-do {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.what-we-do h2 {
    font-size: 66px;
}

.what-we-do h2 span {
    background-image: var(--gradiente);
    color: transparent;
    background-clip: text;
}

.about {
    padding: 0px 0px;
  }
  
  .text p {
    font-size: 42px;
    line-height: 1.5;
    margin: 0;
    background: linear-gradient(
      to right,
      rgb(17, 17, 17) 50%,
      rgba(17, 17, 17, 0.3) 50%
    );
    background-size: 200% 100%;
    background-position-x: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: block;
  }
  
  /* Gradient text effect */
  .about p span {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.2) 50%,
      rgb(17,17,17) 50%
    );
    background-size: 200% 100%;
    background-position-x: -100%; /* Start offscreen to the left */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    display: inline-block;
  }
  
  /* Marker styles for debugging */
  .marker {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: red;
    z-index: 1000;
  }

  .accordion {
    width: 100%;
    margin: auto;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.accordion-header h2 {
    font-size: 66px;
}

.accordion-header {
    transition: background 0.3s;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-header img {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header img {
    transform: rotate(180deg);
}

.accordion-content {
    display: flex; 
    flex-direction: row;
    border-radius: 25px;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: max-height 0.5s ease-out; /* Adiciona transição suave */
}

#entregavel-1 {
    background: var(--azul);
}

#entregavel-2 {
    background-color: var(--vermelho);
}

#entregavel-3 {
    background-color: var(--roxo);
}

#entregavel-3 p {
    color: var(--branco);
}

#entregavel-3 li {
    color: var(--preto);
}

#entregavel-4 {
    background-color: var(--verde);
}

.accordion-content ul {
    gap: 30px;
    display: flex;
    flex-direction: column;
    width: 40%;
}

.accordion-content p  {
    color: var(--branco);
    font-size: 18px;
    list-style: none;
}

.accordion-content img {
    border-radius: 40px;
    width: 45%;
    height: 400px;
    object-fit: cover;
    padding: 20px;
}

.accordion hr {
    margin-top: 20px;
    border: 1px solid var(--cinza-claro);
}


.busca-campanhas {
    max-width: 100vw!important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
    background-color: var(--preto);
    padding: 100px 0;
    color: var(--branco);
}

.busca-campanhas:before {
    content: '';
    background: url('/assets/images/bg-campanhas.jpg');
    width: 100vw;
    height: 100%;
    top: 0%;
    left: 50%;
    transform: translate(-50%);
    opacity: 1 ;
    position: absolute;
}

.pesquisa {
    width: 80%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    z-index: 1;
}

form {
    width: 700px;
    display: flex;
    flex-direction: row;
    gap: 0;
}

form input {
    width: 100%;
    padding: 20px 25px;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 50px 0px 0px 50px;
    margin-right: -12px;
}

form input:active {
    border: none;
}

form button {
    padding-inline: 25px;
    background: var(--vermelho);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
}

form button i{ 

    color: var(--branco);
    width: 18px;

}

.campanhas {
    width: 80%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    text-align: end;
    gap: 20px;
    margin-top: 0px;
    z-index: 1;
}

.campanhas h6 {
    color: var(--branco);
    text-decoration: underline;
}

.campanhas h4 {
    color: var(--preto);
}

.campanhas h5 {
    font-weight: 400;
    color: var(--preto-65);
    text-decoration: underline;
}

.campanhas div {
    display: flex;
    gap: 30px;
}

.campanha {
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 0px;
    padding: 10px;
    background: var(--cinza-claro);
    border-radius: 15px;
}

.campanha h6 {
    color: var(--preto-65);
    text-decoration: none;
}

.campanha div {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.conteudo-campanha{
    display: flex;
    flex-direction: column;
    gap: 20px!important;
    padding: 20px;
    padding-top: 0!important;
}

.campanha p {
    margin: 0;
}

.planos-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 70px;
}

.planos-section h2 {
    font-size: 52px;
}

.planos div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-between;
    gap: 30px;
    width: 55%;
}

.planos div h3 {
    font-size: 42px;
    font-weight: 500;
}

.planos div p {
    font-size: 16px;
}

.beneficios {
    width: 100%!important;
    display: flex;
    flex-direction: column;
    gap: 10px!important;
}

.beneficios div {
    display: flex;
    flex-direction: row;
    text-align: left;
    justify-content: start;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.beneficios div i {
    color: var(--vermelho);
}

.beneficios div p {
    color: var(--preto);
}

.beneficios div p span {
    font-weight: 600;
}

.planos h5 {
    font-weight: 400;
    font-size: 16px;
    color: var(--preto-65);
    text-decoration: underline;
}

.planos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.planos div {
    justify-content: start;
}

.seletor-planos {
    width: 35%!important;
    padding: 2px;
    background: linear-gradient(45deg, #0972F6, #0ED056, #FAC60F, #F60D5C, #0972F6);
    background-size: 400% 400%;
    border-radius: 25px;
    position: relative;
    animation: gradientBorderAnimation 3s ease infinite;
}

.seletor-planos::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #FFFFFF;
    border-radius: 23px;
    z-index: 0;
}

@keyframes gradientBorderAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.seletor-planos .seletor-planos-content {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seletor-planos h3 {
    font-size: 22px!important;
}

.seletor-planos select {
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 50px;
}

.seletor-planos h2 {
    font-size: 46pxs;
}

.seletor-planos p{
    font-size: 18px;
    color: var(--preto-65);
}

.preco {
    width: 100%!important;
    display: flex;
    flex-direction: column;
    gap: 5px!important;
}

.preco h5 {
    text-decoration: none;
    color: var(--preto);
    font-size: 18px;
}

.preco h5 span {
    text-decoration: line-through;
    color: var(--preto-65);
}

.preco div {
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: 100%!important;
    align-items: center;
}

.preco h4 {
    font-size: 42px;
}

.seletor-planos button {
    text-align: center;
    justify-content: center;
}

.plano-personalizado {
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
}

.plano-personalizado-titulo {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0px;
    flex-shrink: 0; 
}

.plano-personalizado-titulo h3 {
    font-weight: 400;
}

.plano-personalizado .beneficios {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
    flex-grow: 1;
    margin: 0 20px; 
    max-width: 40%;
}

.plano-personalizado .beneficios div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.plano-personalizado .beneficios div i {
    color: var(--vermelho);
}

.plano-personalizado .beneficios div p {
    color: var(--preto);
}

.plano-personalizado .secundary-btn {
    flex-shrink: 0; 
    align-self: start;
}

.faq {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq h6 {
    align-self: center;
    padding: 15px 25px;
    background: var(--cinza-claro);
    border-radius: 50px;
}

.faq h2 {
    font-size: 132px;
    background-image: var(--gradiente);
    color: transparent;
    background-clip: text;
    width: fit-content;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 10px;
}
.faq-question {
    cursor: pointer;
    padding: 30px;
    background-color: #111111;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--branco);
    gap: 30px;
    text-align: left;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: #333333;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.5s ease, padding 0.5s ease;
    border-radius: 0 0 25px 25px;
    margin-top: 5px;
}
.faq-answer.open {
    max-height: 200px; /* Ajuste conforme necessário */
    padding: 30px;
}


footer {
    border-top: 1px solid var(--cinza-claro);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    text-align: center;
}

footer p {
    font-size: 14px;
}

.footer-content{
    width: 80%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
}

.footer-content div {
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left!important;
}

.footer-content a:hover {
    color: var(--preto)
    ;}

.footer-content div h3 {
    font-weight: 400;
    color: var(--preto);
}

.footer-content div p, a {
    font-size: 14px;
    text-decoration: none;
    color: var(--preto-65);
}

.footer-content div i {
    color: var(--vermelho);
    font-size: 18px;
    margin-right: 10px;
}

/* General Responsive Styles */
img {
    max-width: 100%; /* Ensure images scale properly */
    height: auto;
}

/* Mobile Styles */
@media (max-width: 767px) {

    body {
        max-width: 100vw!important;
        overflow-x: hidden!important;
    }

    section {
        width: calc(100% - 80px);
        margin: 140px 40px;
        padding: 0 40px;
    }

    .pesquisa {
        width: calc(100% - 80px);
        max-width: 700px;
        padding: 0 40px;
    }

    .campanhas {
        width: calc(100% - 80px);
        padding: 0 40px;
    }

    .footer-content {
        width: 100%;
        padding: 0 20px;
    }

    /* Navigation */
    nav {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding-inline: 30px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav button {
        display: none;
    }

    /* Header */
    header {
        padding-top: 80px!important;
        padding: 30px;
    }

    header h2 {
        font-size: 26px;
    }

    header h1 {
        font-size: 42px;
    }

    header p {
        font-size: 16px;
    }

    header button {
        text-align: center;
        justify-content: center;
    }

    .video-play {
        width: 60px;
        height: auto;
    }

    .vector-decoration {
        width: 175px;
    }

    .vector-2 {
        top: 10px;
        right: 10px;
    }

    .vector-3 {
        bottom: 10px;
        left: 10px;
    }

    .video-section {
        margin-top: 20px;
    }

    section {
        margin: 0px;
        padding: 30px;
    }

    .what-we-do h2 {
        font-size: 42px;
    }

    .what-we-do p {
        font-size: 22px;
    }

    h1 {
        font-size: 48px; /* Smaller font size for mobile */
    }

    h2 {
        font-size: 32px;
    }

    .header-btns {
        flex-direction: column;
        gap: 10px;
    }

    .entregaveis {
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .entregavel {
        width: 80%; /* Ou ajuste conforme necessário */
    }

    /* Accordion Mobile Styles */
    .accordion-header h2 {
        font-size: 32px !important;
    }

    .accordion-content {
        flex-direction: column !important;
        gap: 20px;
        padding: 20px !important;
        overflow: hidden;
    }

    .accordion-content ul {
        width: 100% !important;
        max-width: 100% !important;
        order: 2;
        gap: 15px;
        box-sizing: border-box;
        padding: 0 !important;
        margin: 0 !important;
    }

    .accordion-content img {
        width: 100% !important;
        height: 200px !important;
        order: 1;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 15px !important;
    }

    .accordion-content p {
        font-size: 16px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }

    form {
        width: 100%;
    }

    /* Campanhas Section */
    .campanhas div {
        flex-direction: column;
    }

    .busca-campanhas {
        padding: 80px 30px;
    }

    /* Planos Section */

    .planos-section h2 {
        font-size: 32px;
    }

    .planos {
        flex-direction: column-reverse;
        gap: 100px;
    }

    .planos div {
        width: 100%;
    }

    .seletor-planos {
        border: none;
        padding: 0!important;
    }

    .seletor-planos-content {
        padding: 0px;
    }

    .plano-personalizado {
        flex-direction: column;
        gap: 30px;
        justify-content: left;
        text-align: left;
    }

    .plano-personalizado  div{
        width: 100%;
    }

    .plano-personalizado  .beneficios {
        max-width: 100%!important;
    }

    /* FAQ Section */
    .faq h2 {
        font-size: 64px;
    }

    .faq-question {
        padding: 15px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    .footer-content div {
        max-width: 100%;
    }
}

/* Medium screens up to 1366px */
@media (max-width: 1366px) {
    header {
        padding-top: 80px;
    }

    section {
        width: 90%;
        max-width: 1200px;
    }

    .pesquisa {
        width: 90%;
        max-width: 700px;
    }

    .campanhas {
        width: 90%;
        max-width: 1200px;
    }

    .footer-content {
        width: 90%;
        max-width: 1200px;
    }
}

@media (max-width: 1024px) {
    /* Header */
    header {
        padding-top: 100px;
    }

    h1 {
        font-size: 64px;
    }

    h2 {
        font-size: 36px;
    }

    /* Navigation */
    nav ul {
        gap: 30px;
    }

    /* Planos Section */
    .planos-section h2 {
        font-size: 42px;
    }

    .planos {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .planos div {
        width: 100%;
    }

    .seletor-planos {
        width: 100% !important;
        padding: 30px;
    }

    /* FAQ Section */
    .faq h2 {
        font-size: 96px;
    }

    .faq-question {
        padding: 20px;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        gap: 30px;
    }

    .footer-content div {
        max-width: 30%;
    }
}

@media (max-width: 768px) {
    /* Header */
    header {
        padding-top: 80px;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 32px;
    }

    /* Navigation */
    nav ul {
        gap: 20px;
    }

    /* Accordion Tablet Styles */
    .accordion-header h2 {
        font-size: 42px !important;
    }

    .accordion-content {
        flex-direction: column !important;
        gap: 25px;
        padding: 25px !important;
        overflow: hidden;
    }

    .accordion-content ul {
        width: 100% !important;
        max-width: 100% !important;
        order: 2;
        gap: 20px;
        box-sizing: border-box;
        padding: 0 !important;
        margin: 0 !important;
    }

    .accordion-content img {
        width: 100% !important;
        height: 250px !important;
        order: 1;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 15px !important;
    }

    .accordion-content p {
        font-size: 17px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Planos Section */
    .planos-section h2 {
        font-size: 32px;
    }

    .planos {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .planos div {
        width: 100%;
    }

    .seletor-planos {
        width: 100% !important;
        padding: 20px;
    }

    /* FAQ Section */
    .faq h2 {
        font-size: 64px;
    }

    .faq-question {
        padding: 15px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content div {
        max-width: 100%;
    }
}