/*@font-face {
    font-family: 'Montserrat';
    src: url('./font/Gotham-Book.woff2') format('woff2'),
         url('./font/Gotham-Book.woff') format('woff'),
         url('./font/GothamBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./font/Gotham-Bold.woff2') format('woff2'),
         url('./font/Gotham-Bold.woff') format('woff'),
         url('./font/GothamBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}*/

@font-face {
    font-family: 'Kanit ExtraBold';
    src: url('font/Kanit-ExtraBold.woff2') format('woff2'),
         url('font/Kanit-ExtraBold.woff') format('woff'),
         url('font/Kanit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kanit Regular';
    src: url('font/Kanit-Regular.woff2') format('woff2'),
         url('font/Kanit-Regular.woff') format('woff'),
         url('font/Kanit-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Gotham', Arial, sans-serif;
    background-color: #171717;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url("./Imagens/BG-Hero-section.webp") no-repeat center center/cover;
    height: 100vh;
    padding: 0 150px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 495px;
    color: #FFFFFF;
    z-index: 2;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideIn 1.2s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-logo {
    margin-top: -150px;
    width: 250px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

.hero-title span {
    color: #1CEDBA;
}

.hero-text {
    font-size: 20px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
}

.hero-cta {
    width: 560px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(to right, #1CEDBA, #0095FF);
    color: #104961;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Força renderização correta no iOS */
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    -moz-transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;

    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.hero-image {
    position: absolute;
    right: 0;
    height: 100vh;
    object-fit: cover;
}

.hero-form iframe {
    width: 100%;
    height: 626px;
    border: none;
    border-radius: 20px;
    margin: 0 auto;
    margin-top: -150px;
  }
  @media (max-width: 768px) {
    .hero-form {
        margin-top: 100px;
        width: 100%;
      }
    }

        
    .popup-form-wrapper {
        background: url('././Imagens/bg_popup_whatsapp.jpg') no-repeat center center;
        background-size: cover;
        padding: 20px 50px;
        max-width: 400px;
        max-height: 500px;
        color: #fff;
        font-family: 'Gotham Book', sans-serif;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
        margin: 0 auto;
      }

    .hero-form-wrapper {
        background-color: #121212;
        padding: 60px 50px;
        border-radius: 36px;
        max-width: 400px;
        color: #fff;
        font-family: 'Gotham Book', sans-serif;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
        margin: 0 auto;
        margin-top: -80px;
      }
    

      .hero-form-title {
        font-family: 'Kanit', sans-serif;
        font-weight: 800;
        font-size: 36px;
        text-align: center;
        margin-bottom: 10px;
        line-height: 1.0;
      }
      
      .hero-form-subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 30px;
        line-height: 1.6;
      }
      
      .hero-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 100px;
      }
      
      .hero-form a {
        color: #0BE5FF;
        text-decoration: underline;
      }
      
      .hero-form label {
        font-size: 16px;
        margin-bottom: 4px;
        text-align: left;
      }
      
      .hero-form input[type="text"],
      .hero-form input[type="email"],
      .hero-form input[type="tel"] {
        width: 100%;
        padding: 12px 10px;
        border: none;
        border-radius: 24px;
        background-color: #2c2c2c;
        color: #fff;
        font-family: 'Gotham Book', sans-serif;
        font-size: 16px;
      }
      
      .hero-form input::placeholder {
        color: #bbb;
      }
      
      .checkbox-wrapper {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-size: 16px;
      }
      
      .checkbox-wrapper input[type="checkbox"] {
        margin-top: 4px;
      }
      
      .hero-form button {
        width: 100%;
        padding: 14px;
        background: linear-gradient(90deg, #6C38FF, #0BE5FF);
        border: none;
        border-radius: 32px;
        font-family: 'Gotham Bold', sans-serif;
        font-size: 16px;
        color: #161616;
        cursor: pointer;
        transition: transform 0.3s ease;
      }
      
      .hero-form button:hover {
        transform: scale(1.05);
      }
      
      @media (max-width: 768px) {
        .hero-form-wrapper {
          width: 80%;
          padding: 24px;
          margin: 0 auto;
          margin-top: -200px;
          margin-left: 20px;
          margin-right: 20px;
          margin-bottom: 100px;
        }
      
        .hero-form-subtitle {
          margin-bottom: -100px;
        }
      
        .hero-form input,
        .hero-form button {
          font-size: 15px;
        }
      
        .checkbox-wrapper {
          flex-direction: column;
          gap: 8px;
        }
      }

/* Sessão 2 */
.s2 {
    position: relative; /* Mantém a seção no fluxo normal */
    background: url('././Imagens/bgs2.svg') no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 60px 0;
    text-align: center;
    margin-top: -180px; /* Invade a sessão 1 */
}

.s2-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    color: #A8A8A8;
    max-width: 666px;
    margin: 120px auto 100px;
}

.s2-title span {
    color: #FFFFFF;
}

/* Caixa de conteúdos */
.s2-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.s2-box {
    width: 228px;
    height: 240px;
    background: linear-gradient(to bottom, #1C41ED, #1CEDBA);
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    overflow: visible;
}

/* Ícone saindo da caixa */
.s2-icon {
    position: absolute;
    top: -50px;
    width: 100px;
    border: 10px solid #171717; /* Borda de 10px na cor especificada */
    border-radius: 50%; /* Se quiser que a borda fique circular */
}

.s2-box-text {
    margin-top: 80px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    max-width: 171px;
}

/* Texto destaque */
.s2-highlight {
    position: relative;
    margin-top: 60px;
    display: inline-block; /* Mantém o tamanho adequado ao texto */
    text-align: center;
    max-width: 900px;
    line-height: 1.1;
}

/* Texto em gradiente */
.s2-highlight-text {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    background: linear-gradient(to right, #1C41ED, #1CEDBA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin: auto;
    padding: 20px 50px; /* Espaço para as aspas */
    position: relative;
    text-align: center;
}

/* Ícones de aspas */
.s2-quote-top {
    position: absolute;
    top: -15px;
    left: -40px;
    width: 100px;
    height: 100px;
}

.s2-quote-bottom {
    position: absolute;
    bottom: -15px;
    right: -40px;
    width: 100px;
    height: 100px;
}

/* Contêiner para alinhar o nome à direita do texto */
.s2-author-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

/* Nome do autor */
.s2-author {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    text-align: right;
    margin-right: 25%;
    margin-bottom: 150px;
}

/* Sessão 3 */
.s3 {
    position: relative;
    background: url("./Imagens/bgs3.svg") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 300px 0;
    text-align: center;
    margin-top: -400px; /* Invade a sessão 2 */
    z-index: 2; /* Mantém a sessão 3 acima da sessão 2 */
}

/* Título da Sessão 3 */
.s3-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-top: -10px;
    margin-bottom: 100px;
}

/* Containers das caixas */
.s3-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    max-width: 1240px; /* Mantém um limite para garantir 4 por linha */
    margin: 0 auto; /* Centraliza */
}

/* Configuração padrão das caixas */
.s3-box {
    width: 240px; /* Mantém a largura fixa */
    height: 200px;
    background: #252525;
    border: 1px solid rgba(128, 128, 128, 0.5);
    border-radius: 26px;
    box-shadow: 0 4px 4px #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
}

/* 🔹 RESPONSIVIDADE */

/* Se não couber 4, divide em 3-3-2 */
@media (max-width: 1199px) {
    .s3-box {
        flex: 1 1 calc(33.33% - 20px); /* Divide em 3 caixas por linha */
    }

    .s3-title {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Se não couber 3, divide em 2-2-2-2 */
@media (max-width: 899px) {
    .s3-box {
        flex: 1 1 calc(50% - 20px); /* Divide em 2 caixas por linha */
    }
}

/* Se não couber 2, empilha 1-1-1-1 */
@media (max-width: 599px) {
    .s3-box {
        flex: 1 1 100%; /* Uma caixa por linha */
    }
}


/* Ícones das caixas */
.s3-icon {
    position: absolute;
    top: -25px;
    width: 70px;
}

/* Texto dentro das caixas */
.s3-box-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    max-width: 235px;
    margin-top: 50px;
}

/* Botão CTA */
.s3-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.s3-cta {
    width: 420px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(to right, #1CEDBA, #0095FF);
    color: #104961;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-bottom: -200px;
}

.s3-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Sessão 3.1 */
.s3-1 {
    position: relative;
    background-color: #1E1E1E;
    width: 100%;
    padding: 80px 0;
    text-align: center;
    margin-top: -170px; /* Invade a Sessão 3 */
    z-index: 3; /* Mantém a Sessão 3.1 acima da Sessão 3 */
}

/* Título principal */
.s3-1-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-top: -150px;
    margin-bottom: 20px;
}

/* Subtítulo */
.s3-1-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.s3-1-form{
    margin-bottom: 150px;
}

/* Sessão 4 */
.s4 {
    position: relative;
    background: url("Imagens/bgs4.webp") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 300px 0;
    text-align: center;
    margin-top: -200px; /* Faz a Sessão 4 subir e invadir a Sessão 3 */
    z-index: 3; /* Mantém a Sessão 4 acima da Sessão 3 */
}

/* Título */
.s4-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-top: -120px;
    margin-bottom: 40px;
}

/* Slider */
.slider-container {
    position: relative;
    max-width: 1200px; /* Ajustado para considerar as setas */
    height: 320px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 60px; /* Adiciona espaço para as setas */
}

.slider {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
}

/* Ajuste na largura das caixas */
.slide {
    min-width: 320px; /* Reduzindo a largura para melhor visualização */
    display: flex;
    justify-content: center;
}

/* Card de depoimentos */
.testimonial-card {
    width: 280px;
    height: 250px;
    background: #171717;
    border-radius: 24px;
    box-shadow: 5px 5px 5px #000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Imagem maior e alinhada à esquerda */
.testimonial-header {
    display: flex;
    align-items: center; /* Alinha verticalmente a imagem e o texto */
    gap: 15px;
}

/* Ajuste do tamanho da imagem */
.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Ajuste do nome e empresa ao lado da imagem */
.testimonial-info {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Mantém alinhado na altura da imagem */
}

/* Nome e empresa agora estão corretamente posicionados */
.testimonial-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: Bold;
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.testimonial-company {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

/* Texto */
.testimonial-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    width: 280px;
    margin-top: 10px;
    text-align: left;
}

/* Botões do Slider */
.slide-arrow {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.left {
    left: 10px; /* Ajustado para não sair da tela */
}

.right {
    right: 10px; /* Ajustado para não sair da tela */
}

.slide-arrow img {
    width: 30px;
}

/* Indicadores */
.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-indicators span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.slider-indicators .active {
    background: #fff;
}

/* Botão CTA */
.s4-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.s4-cta {
    width: 420px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(to right, #1CEDBA, #0095FF);
    color: #104961;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.s4-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Sessão 5 */
.s5 {
    position: relative;
    background: url("./Imagens/bgs5.svg") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    margin-top: -300px; /* Ajuste o valor conforme necessário */
    z-index: 4; /* Mantém a Sessão 5 acima da Sessão 4 */
}

/* Título */
.s5-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-top: 100px;
    margin-bottom: 40px;
}

/* Containers das caixas */
.s5-boxes {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1240px;
    margin: 0 auto;
}

/* Configuração das caixas */
.s5-box {
    width: 200px;
    height: 450px;
    background: linear-gradient(to bottom, #0055FE, #2ba3ff);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 80px;
}

/* Ícone */
.s5-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Título dentro das caixas */
.s5-box-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

/* Texto dentro das caixas */
.s5-box-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    text-align: left;
    max-width: 200px;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 1200px) {
    .s5-box {
        flex: 1 1 calc(33.33% - 10px); /* Ajusta para 3 por linha */
    }
}

@media (max-width: 900px) {
    .s5-box {
        flex: 1 1 calc(50% - 10px); /* Ajusta para 2 por linha */
    }
}

@media (max-width: 600px) {
    .s5-box {
        flex: 1 1 100%; /* Uma caixa por linha */
    }
}

/* Sessão 6 */
.s6 {
    position: relative;
    background: url("./Imagens/bgs6.svg") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    margin-top: -150px; /* Ajuste conforme necessário */
    z-index: 5; /* Mantém a Sessão 6 acima da Sessão 5 */
}

/* Título */
.s6-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* Subtítulo */
.s6-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Estilo do Accordion */
.s6-accordion {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Cada item do accordion */
.accordion-item {
    width: 900px;
    margin-bottom: 10px;
    border-radius: 16px;
    overflow: hidden;
}

/* Cabeçalho do Accordion */
.accordion-header {
    width: 100%;
    background: linear-gradient(to right, #27A7E0, #1CEDBA);
    font-family: 'Kanit Regular', sans-serif;
    font-size: 24px;
    color: #FFFFFF;
    padding: 15px 20px;
    border: none;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

/* Ícone + e - do accordion */
.accordion-icon {
    font-size: 40px;
    color: #FFFFFF;
    transition: transform 0.3s ease-in-out;
}

/* Conteúdo do accordion */
.accordion-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
    text-align: left;
    border-radius: 0 0 16px 16px;
    line-height: 1.4;
}

/* Botão CTA */
.s6-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.s6-cta {
    width: 420px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(to right, #1CEDBA, #0095FF);
    color: #104961;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-bottom: 80px;
}

.s6-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Sessão 7 */
.s7 {
    position: relative;
    background: url("./Imagens/bgs4.webp") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    margin-top: -100px; /* Ajuste conforme necessário para invadir a Sessão 6 */
    z-index: 5; /* Mantém a Sessão 7 acima da Sessão 6 */
}

/* Título "Planos" */
.s7-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

/* Subtítulo */
.s7-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 40px;
}

/* Container das caixas */
.s7-plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Cada plano */
.s7-plan {
    width: 320px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* O próprio SVG agora é a caixa */
.s7-plan-box {
    width: 100%;
}

/* Conteúdo dentro da caixa */
.s7-plan-content {
    position: absolute;
    top: 30px; /* 🔺 Subi um pouco os elementos */
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
    margin-right: 30px;
}

/* Cabeçalho do plano */
.s7-plan-header {
    width: 199px;
    height: 45px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 22px;
    margin-top: 20px; /* 🔺 Subi um pouco mais */
    margin-bottom: 40px;
}

/* Cores do cabeçalho */
.s7-plan-header.silver {
    background: linear-gradient(to right, #8B8B8B, #DFE0E0);
    color: #606060;
}

.s7-plan-header.gold {
    background: linear-gradient(to right, #AB9002, #F3D639);
    color: #7C6900;
}

.s7-plan-header.diamond {
    background: linear-gradient(to right, #1C41ED, #27AAE0);
    color: #031B8C;
}

/* Descrição */
.s7-plan-description, .s7-plan-details {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    max-width: 278px;
    margin: 10px 0;
    text-align: center;
}

/* Preços */
.s7-plan-pricing {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.s7-plan-price-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: -10px; /* Diminui o espaçamento abaixo */
}

.s7-plan-price-label-diamond {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: -10px; /* Diminui o espaçamento abaixo */
}
.s7-plan-price-silver {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 28px;
    color: #959595;
    margin-top: 5px;
    margin-bottom: -15px;
}
.s7-plan-price-gold {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 28px;
    color: #AB9002;
    margin-top: 5px;
    margin-bottom: -15px;
}
.s7-plan-price-diamond {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 28px;
    color: #1C43ED;
    margin-top: 5px;
    margin-bottom: -15px;
}

.s7-plan-discount {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #FFFFFF;
}

.s7-plan-price-total-silver {
    font-family: 'Kanit Regular', sans-serif;
    font-size: 18px;
    color: #959595;
    margin-top: -15px;
}
.s7-plan-price-total-gold {
    font-family: 'Kanit Regular', sans-serif;
    font-size: 18px;
    color: #AB9002;
    margin-top: -15px;
}
.s7-plan-price-total-diamond {
    font-family: 'Kanit Regular', sans-serif;
    font-size: 18px;
    color: #1C43ED;
    margin-top: -15px;
}
/* Botão */
.s7-plan-button {
    width: 196px;
    height: 43px;
    border-radius: 16px;
    background: #1C41ED;
    color: #FFFFFF;
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 22px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.s7-plan-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
/* Sessão 8 */
.s8 {
    position: relative;
    background: url("./Imagens/bgs2.svg") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 300px 0;
    text-align: center;
    margin-top: -150px; /* 🔺 Ajuste o valor conforme necessário */
    z-index: 5; /* 🔺 Mantém a Sessão 8 acima da Sessão 7 */
}

/* Título "FAQ" */
.s8-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 42px;
    color: #0095FF;
    margin-top: -100px;
    margin-bottom: 40px;
}

/* Container das perguntas */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* Perguntas */
.faq-item {
    border-bottom: 1px solid transparent;
    padding: 15px 0;
}

/* Pergunta */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

/* Botão "+" para expandir */
.faq-toggle {
    font-family: 'Kanit Regular', sans-serif;
    font-size: 40px;
    color: #0095FF;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Linha separadora */
.faq-answer hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #1CEDBA, #0095FF);
    margin: 10px 0;
}

/* Respostas ocultas inicialmente */
.faq-answer {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    display: none;
}

/* Botão CTA */
.s8-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.s8-cta {
    width: 320px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(to right, #1CEDBA, #0095FF);
    color: #104961;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.s8-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
/* Sessão 9 */
.s9 {
    position: relative;
    background: url("./Imagens/bgs9-1.webp") no-repeat center center;
    background-size: cover;
    width: 100%;
    padding: 280px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-top: -150px; /* 🔺 Faz a Sessão 9 invadir a inferior da Sessão 8 */
    z-index: 6; /* 🔺 Mantém a Sessão 9 acima da Sessão 8 */
}

/* Caixa de conteúdo à esquerda */
.s9-content {
    width: 550px;
    text-align: center;
    margin-left: 10%;
    margin-top: -100px;
}

/* Primeira frase */
.s9-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
    z-index: 5;
}

/* Destacar "Case de Sucesso" */
.s9-title-highlight {
    color: #1CEDBA;
}

/* Segunda frase */
.s9-subtitle {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Texto descritivo */
.s9-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* Botão CTA */
.s9-cta {
    width: 280px;
    height: 60px;
    border-radius: 50px;
    background: linear-gradient(to right, #1CEDBA, #0095FF);
    color: #104961;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;

}

.s9-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Imagem à direita */
.s9-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 120vh;
    object-fit: cover;
    z-index: 1;
}

/* Sessão 10 (Rodapé) */
.s10 {
    position: relative;
    background: #171717;
    width: 100%;
    height: 80px;
    padding: 20px 0;
    text-align: center;
    margin-top: -100px; /* 🔺 Faz a Sessão 10 invadir a parte inferior da Sessão 9 */
    z-index: 7; /* 🔺 Mantém a Sessão 10 acima da Sessão 9 */
}

/* Texto do rodapé */
.s10-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
}

/* Ajustes Mobile */

/* Hero Section */

/* 🔹 Ajustes para Mobile */
@media (max-width: 768px) {

html, body {
    overflow-x: hidden;
    width: 100%;
}
    .hero {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 50px 24px;
        height: auto;
    }

    /* 🔹 Logo centralizado */
    .hero-logo {
        width: 180px;
        margin: 0 auto 20px auto;
    }

    /* 🔹 Título centralizado */
    .hero-title {
        font-size: 36px;
        line-height: 1.3;
    }

    /* 🔹 Texto centralizado */
    .hero-text {
        font-size: 18px;
        margin-top: 15px;
    }

    /* 🔹 Botão CTA centralizado */
    .hero-cta {
        width: 100%;
        max-width: 350px;
        height: 55px;
        margin-top: 20px;
        margin-bottom: 180px;
        font-family: Arial, sans-serif;
        font-weight: 800;
        font-size: 16px;

            /* Solução para renderização no iOS */
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 0.2px transparent;
    -webkit-transform: translate3d(0,0,0);
    text-rendering: optimizeLegibility;
    position: relative;
    z-index: 10; /* Garante que o botão fique sobre outros elementos */
    }

    /* 🔹 Imagem abaixo do CTA e centralizada */
    .hero-image {
        position: absolute;
        right: 0;
        bottom: -80px;
        width: auto;
        height: auto;
        max-width: 450px; /* Ajuste o tamanho conforme necessário */
        max-height: 90vh; /* Para garantir que não ultrapasse a tela */
    }

/* 🔹 Sessão2 */

    .s2 {
        background-color: #171717;
        padding: 40px 5px; /* 🔹 Respeita a margem de 24px em ambos os lados */
        margin-top: -20px; /* 🔹 Ajustado para manter a invasão controlada */
    }

    /* 🔹 Redução do tamanho do título e do espaçamento */
    .s2-title {
        align-items: center;
        font-size: 30px;
        line-height: 1.2;
        margin: 80px auto 50px;
        width: 250px;
        margin-top: -20px;
    }

    /* 🔹 As caixas ficam uma abaixo da outra */
    .s2-boxes {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* 🔹 Aumenta o espaço entre as caixas */
    }

    .s2-box {
        width: 100%; /* 🔹 Ocupa a largura total respeitando a margem */
        max-width: 200px;
        height: 180px;
        padding: 30px;
        margin: 20px auto 20px;
        
    }

    /* 🔹 Ícone menor e alinhado melhor */
    .s2-icon {
        top: -40px;
        width: 80px; /* 🔹 Reduzido */
        border: 8px solid #171717;
    }

    .s2-box-text {
        margin-top: 40px;
        font-size: 16px;
        text-align: center;
    }

    /* 🔹 Texto destaque reduzido */
    .s2-highlight {
        margin-top: 40px;
        max-width: 100%;
    }

    .s2-highlight-text {
        font-size: 28px; /* 🔹 Reduzido */
        padding: 15px 30px; /* 🔹 Ajustado para ficar melhor no mobile */
        max-width: 250px;
    }

    /* 🔹 Aspas menores */
    .s2-quote-top{
        position: absolute;
        top: -10px;
        left: -5px;
        width: 40px;
        height: 40px;
    }

    .s2-quote-bottom {
        position: absolute;
        bottom: -10px;
        right: 25px;
        width: 40px;
        height: 40px;
    }

    /* 🔹 Nome do autor menor e ajustado */
    .s2-author {
        font-size: 16px;
        text-align: center;
        margin-right: 0;
        margin-bottom: 80px;
    }

    .s2-author-container {
        justify-content: center;
    }

    .s3 {
        background-color: #1E1E1E;
        padding-right: 24px;
        margin-top: -70px; /* 🔹 Ajusta a invasão da Sessão 2 */
    }

    /* 🔹 Redução do tamanho do título */
    .s3-title {
        margin-top: -250px;
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 50px;
    }

    /* 🔹 Ajuste das caixas para evitar largura total */
    .s3-boxes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .s3-box {
        width: 100%;
        max-width: 250px; /* 🔹 Mantém no máximo 250px */
        height: 200px;
        padding: 30px;
    }

    /* 🔹 Ícone reduzido para melhor proporção */
    .s3-icon {
        top: -20px;
        width: 60px;
    }

    .s3-box-text {
        font-size: 16px; /* 🔹 Reduzido para melhor adaptação */
        max-width: 100%;
        margin-top: 40px;
    }

    /* 🔹 Ajuste do CTA */
    .s3-cta-container {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .s3-cta {
        width: 100%; /* 🔹 Respeita a margem de 24px */
        max-width: 280px; /* 🔹 Botão não fica exageradamente largo */
        height: 50px;
        font-size: 16px;
        border-radius: 40px;

                    /* Solução para renderização no iOS */
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 0.2px transparent;
    -webkit-transform: translate3d(0,0,0);
    text-rendering: optimizeLegibility;
    position: relative;
    z-index: 10; /* Garante que o botão fique sobre outros elementos */
    }

    .s3-1 {
        padding-right: 24px;
        margin-top: -80px; /* 🔹 Ajusta a invasão da sessão 3 */
        text-align: center;
    }

    /* 🔹 Redução do tamanho do título */
    .s3-1-title {
        margin: 0 auto;
        font-size: 36px;
        line-height: 1.2;
        margin-top: -270px; /* 🔹 Remove o espaçamento negativo desnecessário */
        margin-bottom: 15px;
        max-width: 250px;
    }

    /* 🔹 Ajuste do subtítulo */
    .s3-1-subtitle {
        margin: 0 auto;
        font-size: 18px;
        margin-bottom: 30px;
        max-width: 250px;
    }

    /* 🔹 Ajuste do formulário */
    .s3-1-form {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center; /* 🔹 Centraliza o iframe */
        padding: 0 auto;
        margin-bottom: 80px;
    }

    /* 🔹 Ajuste do iframe para manter a responsividade */
    .s3-1-form iframe {
        width: 100%; /* 🔹 Garante que ele ocupe a largura máxima da tela */
        max-width: 100%;
        height: auto;
        min-height: 500px; /* 🔹 Ajuste conforme necessário */
        border-radius: 20px;
    }
/* Sessão 4 - Ajustado para Mobile */
.s4 {
    position: relative;
    background: url("./Imagens/bg-mobile-degrade2.webp") no-repeat center center;
    background-size: cover;
    width: 100;
    height: 1px;
    padding-right: 24px;
    text-align: center;
    margin-top: -100px;
    z-index: 3;
}

/* Título */
.s4-title {
    font-family: 'Kanit ExtraBold', sans-serif;
    font-size: 28px;
    color: #FFFFFF;
    margin-top: -250px;
    margin-bottom: 20px;
}

/* Slider */
.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

/* Ajuste para exibir um depoimento por vez */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Cada slide ocupa 100% da largura disponível */
.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

/* Card de depoimentos */
.testimonial-card {
    width: 100%;
    max-width: 250px;
    background: #171717;
    border-radius: 24px;
    box-shadow: 5px 5px 5px #000;
    padding: 20px;
    text-align: left;
}

/* Ajuste do cabeçalho */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Imagem do depoente */
.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Nome e empresa */
.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: 'Arial', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #FFFFFF;
}

.testimonial-company {
    font-size: 14px;
    color: #FFFFFF;
}

/* Texto do depoimento */
.testimonial-text {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0 auto;
    margin-top: 20px;
    text-align: center;
    max-width: 210px;
}

/* Indicadores do slider */
.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.slider-indicators span {
    width: 8px;
    height: 8px;
    margin: 5px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.slider-indicators .active {
    background: #fff;
}

/* Botões do Slider */
.slide-arrow {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.left {
    left: 10px;
}

.right {
    right: 10px;
}

.slide-arrow img {
    width: 25px;
}

/* Botão CTA */
.s4-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.s4-cta {
    width: 280px;
    height: 50px;
    border-radius: 50px;
    background: linear-gradient(to right, #1CEDBA, #0095FF);
    color: #104961;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;

                /* Solução para renderização no iOS */
-webkit-font-smoothing: antialiased;
-webkit-text-stroke: 0.2px transparent;
-webkit-transform: translate3d(0,0,0);
text-rendering: optimizeLegibility;
position: relative;
z-index: 10; /* Garante que o botão fique sobre outros elementos */
}

.s4-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
/* Sessão 5 */
.s5 {
    padding-right: 24px;
    text-align: center;
    margin-top: -50px; /* Ajuste o valor conforme necessário */
    z-index: 5; /* Mantém a Sessão 5 acima da Sessão 4 */
}

/* Título */
.s5-title {
    margin-top: 10px;
    line-height: 1.1;
}
/* Configuração das caixas */
.s5-box {
    max-width: 250px;
    margin-bottom: 10px;
}
    .s6 {
        padding-right: 24px;
        margin-top: -200px; /* Ajuste para melhor alinhamento */
    }

    .s6-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .s6-subtitle {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 30px;
        padding: 0 10px; /* Garante que o texto fique bem ajustado */
    }

    /* Ajuste do Accordion */
    .s6-accordion {
        max-width: 80%;
        width: 80%;
    }

    .accordion-item {
        width: 100%; /* Agora o Accordion respeita a largura da tela */
        max-width: 100%;
        margin-bottom: 10px;
        border-radius: 12px;
        overflow: hidden;
    }

    .accordion-header {
        font-size: 20px; /* Reduzindo o tamanho do texto do título */
        padding: 12px 18px;
        border-radius: 12px;
    }

    .accordion-icon {
        font-size: 30px; /* Reduzindo o tamanho do "+" e "-" */
    }

    .accordion-content {
        font-size: 16px; /* Reduzindo tamanho do texto dentro do accordion */
        padding: 12px 18px;
        line-height: 1.3;
    }

    /* Ajuste do CTA */
    .s6-cta-container {
        margin-top: 30px;
    }

    .s6-cta {
        max-width: 250px; /* Reduzindo o tamanho do botão */
        height: 50px;
        font-size: 16px;

                    /* Solução para renderização no iOS */
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 0.2px transparent;
    -webkit-transform: translate3d(0,0,0);
    text-rendering: optimizeLegibility;
    position: relative;
    z-index: 10; /* Garante que o botão fique sobre outros elementos */
    }

    .s7 {
        position: relative;
        background: url("./Imagens/bg-mobile-degrade2.webp") no-repeat center center;
        background-size: cover;
        width: 100%;
        padding: 100px 0;
        text-align: center;
        margin-top: -50px; /* Ajuste conforme necessário para invadir a Sessão 6 */
        z-index: 5; /* Mantém a Sessão 7 acima da Sessão 6 */
}
.s7-title {
    font-size: 36px;
    margin-top: -80px;
}

/* Subtítulo */
.s7-subtitle {
    font-size: 18px;
}
    .s8 {
        margin-top: -200px; /* Ajuste para melhor alinhamento */
    }

    .s8-title {
        font-size: 36px;
        margin-bottom: 20px;
        margin-top: -100px;
    }

    /* Container da FAQ reduzido para caber na tela */
    .faq-container {
        max-width: 80%;
        width: 80%;
    }

    /* Ajuste dos itens da FAQ */
    .faq-item {
        padding: 10px 0;
    }

    /* Redução do tamanho da pergunta */
    .faq-question {
        font-size: 16px;
    }

    /* Redução do botão "+" e "-" */
    .faq-toggle {
        font-size: 30px;
    }

    /* Linha separadora */
    .faq-answer hr {
        margin: 8px 0;
    }

    /* Redução do tamanho das respostas */
    .faq-answer {
        font-size: 14px;
        line-height: 1.3;
    }

    /* Ajuste do CTA */
    .s8-cta-container {
        margin-top: 30px;
    }

    .s8-cta {
        width: 100%;
        max-width: 280px; /* Reduzindo o tamanho do botão */
        height: 50px;
        font-size: 16px;

                    /* Solução para renderização no iOS */
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 0.2px transparent;
    -webkit-transform: translate3d(0,0,0);
    text-rendering: optimizeLegibility;
    position: relative;
    z-index: 10; /* Garante que o botão fique sobre outros elementos */
    }

    .s9 {
        background: url("./Imagens/bg-mobile-degrade2.webp") no-repeat center center;
        padding: 100px 24px; /* Mantendo a margem lateral */
        margin-top: -250px; /* Ajuste para melhor alinhamento */
        display: flex;
        flex-direction: column; /* Altera o layout para empilhar os elementos */
        align-items: center;
        text-align: center;
    }

    .s9-content {
        width: 80%;
        max-width: 800%;
        text-align: center;
        margin-left: 24;
        margin-right: 80px;
    }

    .s9-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .s9-subtitle {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .s9-description {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    /* Ajuste do CTA */
    .s9-cta {
        width: 100%;
        max-width: 280px; /* Reduzindo o tamanho do botão */
        height: 50px;
        font-size: 16px;
        margin-bottom: 20px;
        position: relative;
        z-index: 3; /* 🔹 Garante que o botão fique sobre a imagem */

                    /* Solução para renderização no iOS */
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 0.2px transparent;
    -webkit-transform: translate3d(0,0,0);
    text-rendering: optimizeLegibility;
    position: relative;
    }

    /* Imagem ajustada para ficar abaixo do conteúdo e alinhada à direita */
    .s9-image {
        position: relative;
        width: 135%;
        height: auto;
        max-width: 135%;
        object-fit: cover;
        margin-top: -50px;
        margin-right: 180px;
        z-index: 2;
    }
    /* Destacar "Case de Sucesso" */
.s9-title-highlight {
    color: #171717;
}
/* Texto do rodapé */
.s10-text {
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    margin-left: 24px;
    margin-right: 24px;
}
}
.hidden {
    display: none;
}


    /* Estilos do botão flutuante */
    #whatsapp-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
      }
  
      #whatsapp-button img {
        width: 100%;
        height: 100%;
      }
  
      /* Estilos do popup */
      #whatsapp-popup {
        position: fixed;
        bottom: 90px;
        right: 20px;
        width: 450px;
        height: auto;
        background-color: #121212;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        display: none;
        flex-direction: column;
        overflow: hidden;
        z-index: 1001;
      }
  
      #whatsapp-popup iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 26px;
      }
  
      /* Botão de fechar */
      #close-popup {
        position: absolute;
        top: 8px;
        right: 12px;
        background: none;
        border: none;
        font-size: 20px;
        color: white;
        cursor: pointer;
        z-index: 1002;
      }
  
      /* Responsividade */
      @media (max-width: 480px) {
        #whatsapp-popup {
          width: 90%;
          height: 570px;
          right: 5%;
        }
  
        #whatsapp-button {
          width: 50px;
          height: 50px;
        }
  
        #whatsapp-button img {
          width: 50px;
          height: 50px;
        }

        #close-popup {
            font-size: 40px;

      }