:root {
    --laranja-vivo: #FF5A1F;
    --laranja-titulos: #FF6B35;
    --laranja-container: #ff6b351a;
    --titulos: #111827;
    --background-claro: #F9FAFB;
    --subtitulos: #4B5563;
    --laranja-vivo2: #FF5500;
    --cinza: #3E3E3E;
    --branco: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--titulos);
    background-color: var(--branco);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

/* ===== HEADER ===== */

.header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    transition: height 0.3s ease;
}

.logovol img{
    width: 111.142px;
    height: 35.876px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

/* ===== HERO ===== */

.hero {
    position: relative;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 70px 0;
    color: #2B2B2B;
    overflow: visible;
    min-height: 100vh;
}

.hero .container {
    padding: 0 60px;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}


.hero-text-content h1 {
    font-size: 48px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 28px;
    letter-spacing: 1.3px;
}

.descrip-desktop {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 16.673px;
    font-weight: 400;
    line-height: 27.094px;
    max-width: 500px;
    margin-bottom: 32px;
} 

.descrip-mobile{
    display: none;
}

.btn-demonstracao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--laranja-vivo);
    color: var(--branco);
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4.407px 6.61px -2.501px rgba(0, 0, 0, 0.10);
}

.btn-demonstracao:hover{
    transform: translateY(-1px);
    box-shadow: 0 4.407px 6.61px -2.501px rgba(0, 0, 0, 0.458);
}

.btn-demonstracao:hover {
    background-color: var(--laranja-vivo2);
}

.btn-demonstracao svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-demonstracao:hover svg {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-numero {
    font-family: 'Inter', sans-serif;
    font-size: 25.01px;
    font-weight: 700;
    color: var(--laranja-titulos);
    line-height: 1.2;
}

.stat-item p {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #2B2B2B;
    line-height: 1.4;
    margin: 0;
}

.btn-whatsapp {
    position: absolute;
    bottom: -30px;
    right: 70px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00BC7D;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    text-decoration: none;
}

.btn-whatsapp:hover { transform: scale(1.05); }

/* ===== PLATAFORMA ===== */

#plataforma{
    display: flex;
    width: 100%;
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--branco);
}

.tudo-plataforma h1{
    color: var(--titulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-top: 0;
    margin-bottom: 16px;
}

.tudo-plataforma h1 span{
    color: var(--laranja-titulos);
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.sub-plataforma{
    color: var(--subtitulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
}

.cards-segmentos{
    display: grid;
    grid-template-columns: repeat(3, 330px);
    justify-content: center;
    gap: 40px;
}

.card-seg{
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 12.107px;
    border: 0.757px solid #E5E7EB;
    background: #FFF;
}

.card-seg:hover {
    transform: translateY(-4px);
}

.card-seg svg {
    margin-bottom: 16px;
}

.card-seg h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--titulos);
    margin-bottom: 8px;
}

.card-seg p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--subtitulos);
    line-height: 1.4;
}

.card-header{
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-container{
    width: 42.375px;
    height: 42.375px;
    border-radius: 10.594px;
    background: var(--laranja-container);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-header h3{
    margin: 0;
}

.icon-container svg{
    margin-top: 20px;
}   

/* ===== CENTRAL DE VENDAS ===== */

#vendas{
    display: flex;
    width: 100%;
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-claro);
}

.central-vendas h1{
    color: var(--titulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-top: 0;
    margin-bottom: 16px;
}

.central-vendas h1 span{
    color: var(--laranja-titulos);
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.sub-vendas{
    color: var(--subtitulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
}

.central-vendas img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    margin-bottom: 80px;
}

.graficomoba{
    display: none !important;
}

.carousel-wrapper{
    width:100%;
    overflow:hidden;
}

.carousel{
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

.carousel:hover{
    animation-play-state: paused;
}

.card-vendas{
    flex: 0 0 auto;                  
    scroll-snap-align: start;       
    width: 330px;                   
    border-radius: 12.107px;
    border: 0.757px solid #E5E7EB;
    background: #FFF;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card-vendas h3{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--titulos);
    margin-bottom: 8px;
}

.card-vendas p{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--subtitulos);
    line-height: 1.4;
}

.card-vendas .card-header h3 {
    margin: 0;
}

.card-header{
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-container-vendas{
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--laranja-container);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.icon-container-vendas svg{
    display: block;
}


.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slide{
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== EMPRESAS QUE CONFIAM ===== */

.empresas {
    display: flex;
    width: 100%;
    padding: 80px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--branco);
}

.empresas-confiam h1 {
    color: var(--titulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-top: 80px;
    margin-bottom: 16px;
}

.empresas-confiam h1 span {
    color: var(--laranja-titulos);
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.empresas-confiam p {
    color: var(--subtitulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
}

.carousel-wrapper-empresas{
    width: 1092px;        
    max-width: 100%;
    overflow: hidden;
    margin: 60px auto 80px;

    /* fade bem grande */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.15) 10%,
        rgba(0,0,0,.6) 22%,
        black 35%,
        black 65%,
        rgba(0,0,0,.6) 78%,
        rgba(0,0,0,.15) 90%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.15) 10%,
        rgba(0,0,0,.6) 22%,
        black 35%,
        black 65%,
        rgba(0,0,0,.6) 78%,
        rgba(0,0,0,.15) 90%,
        transparent 100%
    );
}

.carousel-empresas {
    display: flex;
    gap: 37px;
    width: max-content;
    margin-top: 80px;
    margin-bottom: 60px;
}

.carousel-empresas:hover { animation-play-state: paused;}

.carousel-empresas img {
    height: 70px;
    width: 200px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: opacity 0.3s, filter 0.3s;
}

.carousel-empresas img:hover { filter: grayscale(0%); opacity: 1; }

/* ===== TRANSFORME VOL ===== */

.transformevol{
    width: 100%;
    background-color: var(--background-claro);
    padding: 80px 120px; 
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.transforme-vol h1{
    color: var(--titulos);
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-top: 0;
    margin-bottom: 40px;
}

.transforme-vol h1 span{
    color: var(--laranja-titulos);
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.sub-desk{
    display: block;
    color: #6B7280;
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
}

.sub-moba{
    display: none;
}

.lista-beneficios {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lista-beneficios li {
    color: #2B2B2B;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.lista-beneficios li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.icon-beneficios {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--laranja-container);
    border-radius: 8.421px;     
    flex-shrink: 0;           
}

.form-card {
    background: var(--branco);
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    border-radius: 24px;
    border: 0.943px solid #E5E7EB;
    background: var(--branco);
    box-shadow: 0 22.633px 75.443px 0 rgba(0, 0, 0, 0.09), 0 3.772px 15.089px 0 rgba(0, 0, 0, 0.04);
 }

 .form-card h3{
    color: #2B2B2B;
    font-family: "Inter", sans-serif;
    font-size: 18.861px;
    font-style: normal;
    font-weight: 700;
    line-height: 26.405px; 
}

.form-subtitulo{
    color: #6B7280;
    font-family: "Inter";
    font-size: 13.202px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.861px;
    margin-bottom: 40px; 
}

.form-group label{
    color: var(--subtitulos);
    font-family: "Inter", sans-serif;
    font-size: 10.373px;
    font-style: normal;
    font-weight: 600;
    line-height: 15.56px; 
    letter-spacing: 1.037px;
    text-transform: uppercase;
    margin-bottom: 24px !important;
}

.input-icon-wrapper input{
    display: flex;
    width: 100%;
    height: 48px;
    padding: 14px 16px 14px 44px;
    right: -0.21px;
    top: -0.348px;
    background-color: #F9FAFB;
    border: 0.943px solid #E5E7EB;
    border-radius: 13.202px;
    outline: none;
    box-sizing: border-box;
}

.input-icon-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.input-icon-wrapper svg {
  position: absolute;
  left: 16px;           
  top: 50%;            
  transform: translateY(-50%);
  pointer-events: none; 
}

.input-icon-wrapper select {
    width: 100%;
    height: 48px;
    padding: 14px 16px 14px 44px;
    background-color: #F9FAFB;
    border: 0.943px solid #E5E7EB;
    border-radius: 13.202px;
    outline: none;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    appearance: none; 

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.77148 5.65796L7.54363 9.4301L11.3158 5.65796' stroke='%239CA3AF' stroke-width='1.25738' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
  min-width: 0; /* evita que o input empurre a largura do flex item */
}

form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.input-icon-wrapper textarea {
    height: 81.101px;
    padding: 11.316px 15.089px 11.316px 37.721px;
    resize: none;
    background-color: #F9FAFB;
    border: 0.943px solid #E5E7EB;
    border-radius: 13.202px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-family: "Inter", sans-serif;
}

.input-icon-wrapper input::placeholder {
    color: #9CA3AF; 
}

.input-icon-wrapper:has(textarea) svg {
    top: 13px; 
    transform: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px; /* ajusta o espaçamento entre checkbox e texto conforme necessário */
}

.checkbox-group label {
    color: #6B7280;
    font-family: "Inter", sans-serif;
    font-size: 11.316px;
    font-weight: 500;
    line-height: 18.389px;
}

.checkbox-group label a{
    color: #FF5A1F;
    font-family: "Inter", sans-serif;
    font-size: 11.316px;
    font-style: normal;
    font-weight: 500;
    line-height: 18.389px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 3.772px;
    border: 1.886px solid #D1D5DB;
    background-color: #FFF;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 10px;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--laranja-vivo);
    border-color: var(--laranja-vivo);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-enviar{
    display: flex;
    height: 52.81px;
    padding: 15.089px 32px;
    justify-content: center;
    align-items: center;
    gap: 9.43px;
    align-self: stretch;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 13.202px;
    background: var(--laranja-vivo2);
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 15.089px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.633px;
    white-space: nowrap;
    
}

.btn-enviar:hover{
    transform: translateY(-1px);
    box-shadow: 0 4.407px 6.61px -2.501px rgba(0, 0, 0, 0.458);
}

/* === FAQ ===*/

.faq{
    display: flex;
    width: 100%;
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--branco);
    appearance: none;
}

.saiba-mais {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.saiba-mais h1{
    color: var(--titulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 16px;
}

.sub{
    color: var(--subtitulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
}

.faq-item{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;  
    border-radius: 8px;
    border: 0.757px solid #E5E7EB;
    background: #FFF;
    margin-bottom: 20px;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    list-style: none;
}

.faq-item summary{
    padding: 16px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111827;
    font-family: "Inter", sans-serif;
    font-size: 12.107px;
    font-weight: 600;
    line-height: 18.161px;
}

.faq-item[open] summary {
    padding: 24px 16px 16px 16px;
}

.faq-item p{
    padding: 0 16px 24px 16px;
    color: var(--subtitulos);
    font-family: "Inter", sans-serif;
    font-size: 12.107px;
    font-weight: 400;
    line-height: 19.674px;
}

.arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M11.3496 9.45874L7.56611 5.67524L3.78261 9.45874' stroke='%23FF6B35' stroke-width='1.26117' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item .arrow {
    transform: rotate(180deg);
}

.faq-item[open] .arrow {
    transform: rotate(0deg);
}

.card-duvidas{
    display: flex;
    width: 100%;
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--branco);
    appearance: none;
    box-sizing: border-box;
    padding: 24px 120px;
    gap: 16px;
    align-self: stretch;
    border-radius: 12.107px;
    border: 0.757px solid #E5E7EB;
    background: #FFF;
    margin-top: 40px;
}

.card-duvidas h2{
    color: var(--titulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 15.134px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.188px;
}

.duvidas{
   color: var(--subtitulos);
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 12.107px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.161px; 
}

.btn-fale-conosco{
    display: flex;
    padding: 8px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 7.567px;
    background: var(--laranja-titulos);
    border: none;
    outline: none;
    cursor: pointer;
    color: #FFF;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 12.107px;
    font-style: normal;
    font-weight: 600;
    line-height: 18.161px;
    white-space: nowrap;
}

.btn-fale-conosco:hover{
    transform: translateY(-0.5px);
    box-shadow: 0 4.407px 6.61px -2.501px rgba(0, 0, 0, 0.458);
}

/* === MOBILE === */

/* === TABLET/LAPTOP 1280px === */
@media (max-width: 1280px) {

    .container {
        padding: 0 60px;
    }

    #plataforma {
        padding: 80px 60px;
    }

    .cards-segmentos {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    #vendas {
        padding: 80px 60px;
    }

    .empresas {
        padding: 80px 60px;
    }

    .carousel-wrapper-empresas {
        width: 100%;
    }

    .transformevol {
        padding: 80px 60px;
        gap: 2.5rem;
    }

    .faq {
        padding: 80px 60px;
    }

    .card-duvidas {
        padding: 24px 60px;
    }
}

/* === TABLET 1024px === */
@media (max-width: 1024px) {

    .container {
        padding: 0 40px;
    }

    .hero-container {
        gap: 16px;
    }

    .hero-text-content h1 {
        font-size: 40px;
    }

    #plataforma {
        padding: 60px 40px;
    }

    .cards-segmentos {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    #vendas {
        padding: 60px 40px;
    }

    .empresas {
        padding: 60px 40px;
    }

    .transformevol {
        padding: 60px 40px;
        gap: 2rem;
    }

    .faq {
        padding: 60px 40px;
    }

    .card-duvidas {
        padding: 24px 40px;
    }
}

@media (max-width: 768px) {

/* == HERO == */

    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container{
        padding: 5px 35px 10px;
    }

    .hero{
        position: relative;
        background: url("../images/hero.png") center/cover no-repeat;
        background-position: 75% center;
        min-height: auto;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(246, 246, 246, 0.70);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-text-content h1{
        font-size: 32px;
        
    }

    .descrip-desktop{
        display: none;
    }

    .descrip-mobile{
        display: block;
        color: #2B2B2B;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20.365px; 
        margin-bottom: 40px;
    }

    .btn-demonstracao{
        font-size: 14.762px;
    }

    .btn-demonstracao:hover{
        transform: translateY(-2px);
    }

    .info-numero{
        font-size: 15px;
    }

    .stat-item p{
        font-size: 9px;
        white-space: nowrap;
    }

    .btn-whatsapp{
        margin-right: -20px;
    }

    /* == PLATAFORMA == */

    #plataforma {
        padding: 40px 42px; 
        width: 100%;
        box-sizing: border-box;
    }

    .tudo-plataforma h1,
    .tudo-plataforma h1 span {
        font-size: 28px;
        line-height: 34px;
        text-align: center;
    }

    .sub-plataforma {
        font-size: 15px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 32px;
    }

    .cards-segmentos {
        display: flex;
        flex-direction: column; 
        gap: 20px;            
        width: 100%;
    }

    .card-seg {
        width: 100%;
        padding: 40px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .card-header {
        display: flex;
        align-items: center;    
        gap: 16px;           
    }

    .icon-container {
        width: 42px;
        height: 42px;
        flex-shrink: 0;         
    }

    .icon-container svg {
        margin-top: 13px;          
    }

    .card-seg h3 {
        font-size: 16px;
        line-height: 20px;
        margin: 0;           
    }

    .card-seg p {
        font-size: 14px;
        line-height: 19px;
        margin: 0;
    }

    /* == VENDAS == */

    #vendas {
        padding: 40px 42px; 
        width: 100%;
        box-sizing: border-box;
    }

    .central-vendas {
        width: 100%;
    }

    #vendas .central-vendas h1,
    .central-vendas h1 span {
        font-size: 34px;
        line-height: 34px;
        text-align: center;
        
    }

    .sub-vendas {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        margin-bottom: 32px;
    }

    .central-vendas img:not(.graficomoba) {
        display: none !important;
    }

    .graficomoba {
        display: block !important;
        max-width: 100%;
        height: auto;
        margin: 24px auto 40px auto;
        margin-bottom: 20px !important;
    }

    .sub-vendas br {
        display: none;
    }

    .carousel-wrapper-empresas {
        margin-top: 0;
    }

    /*== EMPRESAS ==*/

    .empresas{
        padding: 40px; 
        width: 100%;
        box-sizing: border-box;
    }

    .empresas-confiam{
        width: 100%;
    }

    .empresas-confiam h1{
        font-size: 32px;
        margin-top: 24px;
    }

    .empresas-confiam p{
        font-size: 20px;
    }

    .carousel-empresas{
       margin-top: 24px; 
    }

    .carousel-wrapper-empresas {
        margin-bottom: 0;
    }

    /* == FORM == */

    .transformevol{
        padding: 40px; 
        width: 100%;
        box-sizing: border-box;
        grid-template-columns: 1fr;
    }

    .transforme-vol{
        width: 100%;
    }

    .transforme-vol h1{
        text-align: center;
        font-size: 32px;
    }

    .transforme-vol br {
        display: none;
    }

    .sub-desk{
        display: none;
    }

    .sub-moba{
        display: block;
        color: #6B7280;
        text-align: center;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
        margin-bottom: 40px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .btn-enviar:hover{
        transform: translateY(-2px);
    }

    /* == FAQ == */

    .faq{
        padding: 40px;
    }


    .saiba-mais h1{
        font-size: 32px;
        white-space: nowrap;
    }

    .sub{
        font-size: 16px;
    }

    .faq-item summary{
        font-size: 12.107px;
    }

    .faq-item p{
        font-size: 12.107px;
    }

    .card-duvidas h2{
        font-size: 15.134px;
        white-space: nowrap;
    }

    .card-duvidas p{
        font-size: 12.107px;
        white-space: nowrap;
    }

    .btn-fale-conosco{
       font-size: 16px; 
    }

    .btn-fale-conosco:hover{
    transform: translateY(-0.5px);
    }

}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

