/* ========================================
   DUOCON CONSÓRCIO - ESTILOS CONSOLIDADOS
   ======================================== */

/* ========================================
   RESET E CONFIGURAÇÕES BÁSICAS
   ======================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ========================================
   FONTES PERSONALIZADAS
   ======================================== */
@font-face {
    font-family: "Inter";
    src: url("css/fonts/Inter/static/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("css/fonts/Inter/static/Inter_18pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("css/fonts/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   UTILITÁRIOS
   ======================================== */
.container-responsivo {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.highlight {
    color: #7935cc;
    font-weight: 700;
}

/* ========================================
   HEADER SECTION
   ======================================== */
.container_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 18vh;
}

.container_header img {
    width: 10%;
    height: auto;
}

.texto-header {
    display: flex;
    align-items: center;
    max-width: 40.3125rem;
    gap: 2.1875rem;
}

.texto-header h1 {
    font-family: "Poppins", sans-serif;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2rem;
    text-align: left;
    margin: 0;
}

.texto-header p {
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.1rem;
    text-align: left;
    color: #96989a;
    margin: 0;
}

.vertical-bar {
    border-left: 2px solid #8454c2;
    height: 3.75rem;
}

.container-button-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8125rem 3.3125rem;
    background: #7935cc;
    border: none;
    border-radius: 48px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.375rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.container-button-header:hover {
    background: #6b2db8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(121, 53, 204, 0.3);
}

.container-button-header svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.container-button-header span {
    display: inline-block;
    vertical-align: middle;
}

/* ========================================
   HEADER RESPONSIVE
   ======================================== */

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container_header {
        margin: 0 auto;
        height: 10vh;
        padding: 4rem 1.5rem;
    }
    
    .container_header img {
        width: 12%;
    }
    
    .texto-header {
        max-width: 35rem;
        gap: 1.5rem;
        margin-left: 2rem;
    }
    
    .texto-header h1 {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
    
    .texto-header p {
        font-size: 1rem;
        line-height: 1.4rem;
    }
    
    .container-button-header {
        padding: 0.6rem 2rem;
        font-size: 0.85rem;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .container_header {
        height: auto;
        min-height: 70px;
        padding: 0.8rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .container_header img {
        width: 15%;
        max-width: 100px;
        order: 1;
    }
    
    .texto-header {
        max-width: 100%;
        gap: 1rem;
        text-align: center;
        order: 2;
        flex-direction: column;
        align-items: center;
    }
    
    .texto-header h1 {
        font-size: 1.3rem;
        line-height: 1.5rem;
    }
    
    .texto-header p {
        font-size: 1rem;
        line-height: 1.3rem;
    }
    
    .vertical-bar {
        display: none;
    }
    
    .container-button-header {
        padding: 0.6rem 2rem;
        font-size: 0.85rem;
        order: 3;
        width: fit-content;
        margin: 0 auto;
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .container_header {
        height: auto;
        min-height: 80px;
        padding: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .container_header img {
        width: 25%;
        max-width: 120px;
        order: 1;
    }
    
    .texto-header {
        max-width: 100%;
        gap: 0.5rem;
        text-align: center;
        order: 2;
        flex-direction: column;
        align-items: center;
    }
    
    .texto-header h1 {
        font-size: 1.1rem;
        line-height: 1.3rem;
    }
    
    .texto-header p {
        font-size: 0.9rem;
        line-height: 1.2rem;
    }
    
    .vertical-bar {
        display: none;
    }
    
    .container-button-header {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-container {
    width: 100%;
    min-height: 80vh;
    background-image: url("https://motocicleta.duoconbrasil.com.br/images/bg-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f4ecfc;
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #333;
    margin: 0;
}

.hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #555;
    margin: 0;
}

.hero-subtitle b {
    color: #7935cc;
    font-weight: 600;
}

.hero-button {
    background: linear-gradient(60deg, #00b4db 30%, #7935cc 70%);
    border-radius: 15px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 12px 16px;
    fill: #fff;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 180, 219, 0.2);
    width: 60%;
}

.hero-button:hover,
.hero-button:focus,
.hero-button:visited {
    background: linear-gradient(180deg, #00b4db 0%, #5a2a8a 100%);
    color: #fff;
    text-decoration: none;
    transform: scale(1.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 136, 163, 0.4);
}

.hero-button-content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.hero-button-icon {
    align-items: center;
    display: flex;
}

.hero-button-icon svg,
.hero-button-arrow {
    height: auto;
    width: 1em;
}

.hero-button-text {
    display: inline-block;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagem-personalizada-container {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    position: relative;
}

.imagem-personalizada {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
    transform: scale(0.9);
    transform-origin: center;
}

/* ========================================
   HERO RESPONSIVE
   ======================================== */

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        min-height: 60vh;
        padding: 0 20px;
    }
    
    .hero-content {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .hero-button {
        padding: 14px 28px;
        font-size: 14px;
        width: 50%;
    }
    
    .imagem-personalizada {
        transform: scale(0.8);
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-container {
        min-height: 60vh;
        padding: 40px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-button {
        padding: 12px 24px;
        font-size: 13px;
        width: 70%;
        margin: 0 auto;
    }
    
    .imagem-personalizada {
        transform: scale(0.7);
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .hero-container {
        min-height: 60vh;
        padding: 40px 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .hero-button {
        padding: 12px 24px;
        font-size: 13px;
        width: 70%;
        margin: 0 auto;
    }
    
    .imagem-personalizada {
        transform: scale(0.6);
    }
}

/* ========================================
   VANTAGENS SECTION
   ======================================== */
.vantagens-container {
    padding: 100px 0;
    background: #f4ecfc;
}

.vantagens-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vantagens-header {
    text-align: center;
    margin-bottom: 60px;
}

.vantagens-title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    color: #333;
}

.vantagens-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    color: #8B5CF6;
}

.vantagens-transition {
    margin-top: 10px;
    width: 155px;
    height: 52px;
    background-image: url("images/TRANSITION.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 10px auto -26px;
    position: relative;
    z-index: 10;
}

.vantagens-cards-container {
    background: linear-gradient(90deg, #8B5CF6 0%, #06B6D4 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    margin-top: -90px;
    position: relative;
}

.vantagens-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.vantagem-card {
    flex: 1;
    text-align: center;
    color: white;
}

.vantagem-card:hover {
    transform: translateY(-5px);
}

.vantagem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vantagem-svg {
    width: 30px;
    height: 30px;
    fill: #FFFFFF;
}

.vantagem-svg-larger {
    width: 35px;
    height: 35px;
}

.vantagem-svg-third {
    width: 32px;
    height: 32px;
}

.vantagem-svg-fourth {
    width: 28px;
    height: 28px;
}

.vantagem-content {
    text-align: center;
}

.vantagem-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.vantagem-title b {
    font-weight: 700;
}

.vantagem-description {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.vantagens-button-container {
    text-align: center;
    padding: 20px 0;
}

.vantagens-button {
    background: linear-gradient(90deg, #8B5CF6 0%, #06B6D4 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.vantagens-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.vantagens-button-content {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.vantagens-button-icon {
    align-items: center;
    display: flex;
}

.vantagens-button-icon svg,
.vantagens-button-arrow {
    height: auto;
    width: 1em;
    fill: white;
}

.vantagens-button-text {
    display: inline-block;
}

/* ========================================
   VANTAGENS RESPONSIVE
   ======================================== */

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .vantagens-container {
        padding: 60px 0;
    }
    
    .vantagens-content {
        padding: 0 15px;
    }
    
    .vantagens-header {
        margin-bottom: 40px;
    }
    
    .vantagens-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .vantagens-subtitle {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .vantagens-transition {
        width: 120px;
        height: 40px;
        padding-top: 50px;
    }
    
    .vantagens-cards-container {
        padding: 40px 20px;
        margin-top: -70px;
    }
    
    .vantagens-cards {
        flex-direction: column;
        gap: 25px;
        justify-content: center;
        align-items: center;
    }
    
    .vantagem-card {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        text-align: left;
        justify-content: center;
    }
    
    .vantagem-icon {
        flex-shrink: 0;
    }
    
    .vantagem-svg {
        width: 40px;
        height: 40px;
    }
    
    .vantagem-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .vantagem-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .vantagens-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .vantagens-container {
        padding: 40px 0;
    }
    
    .vantagens-content {
        padding: 0 10px;
    }
    
    .vantagens-header {
        margin-bottom: 30px;
    }
    
    .vantagens-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .vantagens-subtitle {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .vantagens-transition {
        width: 100px;
        height: 35px;
        margin-top: 5px;
        padding-top: 50px;
    }
    
    .vantagens-cards-container {
        padding: 30px 15px;
        margin-top: -60px;
    }
    
    .vantagens-cards {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .vantagem-card {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
        justify-content: center;
    }
    
    .vantagem-icon {
        flex-shrink: 0;
    }
    
    .vantagem-svg {
        width: 35px;
        height: 35px;
    }
    
    .vantagem-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .vantagem-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .vantagens-button {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }
}

/* ========================================
   CAMINHO/PRODUTOS SECTION
   ======================================== */
.caminho-container {
    padding: 60px 0 100px 0;
    background: #7935cc;
}

.caminho-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.caminho-title {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.caminho-title b {
    color: white;
    font-weight: 700;
}

/* ========================================
   PRODUTOS GRID
   ======================================== */
.produtos-container {
    width: 100%;
    padding: 0px 20px 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.produto-card {
    background: white;
    border-radius: 15px;
    padding: 100px 20px 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
    width: 100%;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.produto-card:hover .produto-image img {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
    transform: scale(1.08);
}

.produto-image {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.produto-image img {
    width: 90%;
    height: auto;
}

.produto-categoria {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #7935cc;
    margin-bottom: 15px;
}

.produto-parcelas-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.produto-valor {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #7935cc;
    margin-bottom: 15px;
}

.produto-valor span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.produto-credito {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    color: #333;
    font-weight: 400;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* ========================================
   CAMINHO RESPONSIVE
   ======================================== */

/* Tablet Large (769px - 1200px) */
@media (max-width: 1200px) and (min-width: 769px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .produto-card {
        padding: 25px 20px;
    }
    
    .produto-image {
        margin-bottom: 20px;
    }
    
    .produto-image img {
        width: 90%;
        height: auto;
        padding-bottom: 120px;
    }
    
    .produto-categoria {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .produto-parcelas-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .produto-valor {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .produto-valor span {
        font-size: 0.9rem;
    }
    
    .produto-credito {
        font-size: 0.85rem;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .caminho-container {
        padding: 50px 0 80px 0;
    }
    
    .caminho-content {
        padding: 0 15px;
    }
    
    .caminho-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .produtos-container {
        padding: 0 15px 0 15px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .produto-card {
        padding: 20px 15px;
    }
    
    .produto-image {
        margin-bottom: 15px;
    }
    
    .produto-image img {
        width: 90%;
        height: auto;
        padding-bottom: 100px;
    }
    
    .produto-categoria {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .produto-parcelas-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .produto-valor {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .produto-valor span {
        font-size: 0.9rem;
    }
    
    .produto-credito {
        font-size: 0.8rem;
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .caminho-container {
        padding: 50px 0 60px 0;
    }
    
    .caminho-content {
        padding: 0 10px;
    }
    
    .caminho-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .produtos-container {
        padding: 0 10px 0 10px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .produto-card {
        padding: 15px 12px;
    }
    
    .produto-image {
        margin-bottom: 12px;
    }
    
    .produto-image img {
        width: 90%;
        height: auto;
        padding-bottom: 120px;
    }
    
    .produto-categoria {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .produto-parcelas-label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .produto-valor {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .produto-valor span {
        font-size: 0.85rem;
    }
    
    .produto-credito {
        font-size: 0.75rem;
    }
}

/* ========================================
   CONQUISTAR SECTION
   ======================================== */
/* ========================================
   TRANSITION LINE
   ======================================== */
.transition-line {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 40px 0;
    background: #6336C4;
}

.transition-line img {
    width: 155px;
    height: 52px;
    object-fit: contain;
    transform: rotate(180deg);
    margin-bottom: -55px;
    position: relative;
    z-index: 10;
}

/* ========================================
   FUNCIONAMENTO SECTION
   ======================================== */
.funcionamento-container {
    padding: 100px 0;
    background: #f4ecfc;
    position: relative;
}

.funcionamento-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.funcionamento-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.funcionamento-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.funcionamento-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.funcionamento-description-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.funcionamento-image {
    width: 100%;
    max-width: 500px;
}

.funcionamento-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.funcionamento-title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.funcionamento-description {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    text-align: left;
}

.funcionamento-highlight {
    color: #7935CC;
    font-weight: 600;
}

.funcionamento-steps {
    background: #7935CC;
    border-radius: 30px;
    padding: 30px;
    margin: 0 0 40px 0;
    list-style: none;
}

.funcionamento-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.funcionamento-step:last-child {
    margin-bottom: 0;
}

.funcionamento-step-number {
    width: 52px;
    height: 52px;
    background: transparent;
    border: 2px solid #3BEBEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3BEBEB;
}

.funcionamento-step-text {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    flex: 1;
}

.funcionamento-step-text b {
    font-weight: 600;
    color: white;
}

.funcionamento-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    align-self: flex-start;
}

.funcionamento-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.funcionamento-button-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.funcionamento-button-text {
    font-weight: 600;
}

.funcionamento-button-icon {
    display: flex;
    align-items: center;
}

.funcionamento-button-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Responsividade da Funcionamento */
@media (max-width: 768px) {
    .funcionamento-container {
        padding: 60px 0;
    }
    
    .funcionamento-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .funcionamento-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .funcionamento-description {
        text-align: center;
    }
    
    .funcionamento-button {
        align-self: center;
    }
    
    .funcionamento-image {
        max-width: 400px;
    }
}

/* ========================================
   FORMA-SLIDER SECTION
   ======================================== */
.forma-slider-container {
    padding: 100px 0;
    background: #f4ecfc;
    position: relative;
    overflow: hidden;
}

.forma-slider-content {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #7935CC 0%, #40DAE8 100%);
    border-radius: 50px;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 350px;
    box-shadow: 0 20px 40px rgba(121, 53, 204, 0.2);
}

.forma-slider-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.forma-slider-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forma-slider-title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    text-align: left;
}

.forma-slider-description {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: white;
    text-align: left;
}

.forma-slider-vehicle-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    overflow: hidden;
}

.forma-slider-vehicle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forma-slider-vehicle.active {
    opacity: 1;
}

.forma-slider-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.forma-slider-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.forma-slider-button-container {
    position: absolute;
    bottom: 30px;
    left: 120px;
    z-index: 10;
}

.forma-slider-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.forma-slider-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.forma-slider-button-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.forma-slider-button-text {
    font-weight: 600;
}

.forma-slider-button-icon {
    display: flex;
    align-items: center;
}

.forma-slider-button-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.forma-slider-navigation {
    position: absolute;
    top: 50%;
    left: calc(100% - 25px);
    transform: translateY(-50%);
    z-index: 10;
}

.forma-slider-nav-btn {
    width: 120px;
    height: 120px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    overflow: hidden;
}

.forma-slider-nav-btn:hover {
    transform: scale(1.1);
}

.forma-slider-nav-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .forma-slider-container {
        padding: 60px 20px;
    }
    .forma-slider-button-container {
        bottom: 10%;
        left: 20%;
    }
}

/* Responsividade da Forma-Slider */
@media (max-width: 768px) {
    .forma-slider-container {
        padding: 60px 20px;
    }
    
    .forma-slider-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 30px 20px;
        margin: 0 10px;
        min-height: 300px;
    }
    
    .forma-slider-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .forma-slider-description {
        text-align: center;
    }
    
    .forma-slider-navigation {
        left: calc(100% - 15px);
    }
    
    .forma-slider-nav-btn {
        width: 80px;
        height: 80px;
    }
    
    .forma-slider-button-container {
        bottom: 10%;
        left: 20%;
    }
    
    .forma-slider-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* ========================================
   SUPORTE SECTION
   ======================================== */
.suporte-container {
    display: flex; 
    justify-content: flex-start; 
    align-items: flex-start; 
    width: 100%; 
    height: 100%;
    background-color: #F4ECFC;
}

.suporte-left {
    width: 50%; 
    height: 100%;
    padding-right: 10px;
}

.suporte-right {
    width: 50%; 
    height: 100%;
    padding-left: 10px;
}
.wrapper-img-suporte {
    display: flex; 
    justify-content: flex-end; 
    align-items: flex-end; 
    width: 100%; 
    height: 100%;
}
.suporte-title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    color: #333;
}

.suporte-content {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
}

.suporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.suporte-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.suporte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.suporte-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suporte-icon svg {
    width: 60px;
    height: 60px;
}

.suporte-text {
    flex: 1;
}

.suporte-text p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.suporte-text b {
    font-weight: 600;
    color: #7935CC;
}

/* ========================================
   SUPORTE RESPONSIVE
   ======================================== */

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .suporte-right {
        padding-right: 20px;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .suporte-container {
        padding: 60px 0;
    }
    
    .suporte-content {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .suporte-left {
        width: 100%;
        min-height: 250px;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .suporte-right {
        width: 100%;
        padding-left: 0;
    }
    
    .suporte-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .wrapper-img-suporte {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .wrapper-img-suporte img {
        width: 100%;
        max-width: 300px;
        height: auto;
        object-fit: cover;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-summary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .faq-answer ul {
        margin: 10px 0;
    }
    
    .faq-answer li {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .suporte-container {
        padding: 50px 0;
    }
    
    .suporte-content {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .suporte-left {
        width: 100%;
        min-height: 200px;
        padding-right: 0;
        margin-bottom: 25px;
    }
    
    .suporte-right {
        width: 100%;
        padding-left: 0;
    }
    
    .suporte-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .wrapper-img-suporte {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .wrapper-img-suporte img {
        width: 100%;
        max-width: 250px;
        height: auto;
        object-fit: cover;
    }
    
    .faq-item {
        margin-bottom: 10px;
    }
    
    .faq-summary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 12px 15px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .faq-answer ul {
        margin: 8px 0;
    }
    
    .faq-answer li {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
}

/* ========================================
   FOOTER SECTION
======================================== */
.footer-container {
    background: #212121;
    padding: 60px 0;
    color: white;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.footer-content > div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-content > div {
    padding: 0 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
    padding: 8px;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    text-align: left;
}

.footer-contact-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}

.footer-contact-text {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.footer-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-credential-item {
    text-align: left;
}

.footer-credential-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: white;
}

.footer-credential-image {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-links {
    text-align: left;
}

.footer-links-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: white;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-item {
    margin: 0;
}

.footer-links-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-link:hover {
    color: white;
}

.footer-links-icon {
    width: 12px;
    height: 12px;
    fill: rgba(255, 255, 255, 0.9);
}

/* ========================================
   FOOTER RESPONSIVE
   ======================================== */

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-content > div:not(:last-child)::after {
        display: none;
    }
    
    .footer-content > div {
        padding: 0 20px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-credentials {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }
    
    .footer-links-list {
        align-items: flex-start;
    }
    
    .footer-links-link {
        justify-content: flex-start;
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-content > div:not(:last-child)::after {
        display: none;
    }
    
    .footer-content > div {
        padding: 0 20px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-credentials {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links-list {
        align-items: flex-start;
    }
    
    .footer-links-link {
        justify-content: flex-start;
    }
}

/* ========================================
   CONQUISTAR SECTION
   ======================================== */
.conquistar-container {
    padding: 100px 0;
    background: #f4ecfc;
    position: relative;
    z-index: 1;
}

.conquistar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.conquistar-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.conquistar-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conquistar-button-container {
    display: flex;
    justify-content: flex-start;
}

.conquistar-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.conquistar-image {
    width: 100%;
    max-width: 600px;
    margin-left: 0;
}

.conquistar-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.conquistar-title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.conquistar-highlight {
    color: #6336C4;
}

.conquistar-description {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    text-align: left;
}

.conquistar-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    align-self: flex-start;
}

.conquistar-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.conquistar-button-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.conquistar-button-text {
    font-weight: 600;
}

.conquistar-button-icon {
    display: flex;
    align-items: center;
}

.conquistar-button-arrow {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ========================================
   CONQUISTAR RESPONSIVE
   ======================================== */

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .conquistar-button {
        width: 100%;
        text-align: center;
        display: block;
    }
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    .conquistar-container {
        padding: 60px 0;
    }
    
    .conquistar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .conquistar-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .conquistar-description {
        text-align: center;
    }
    
    .conquistar-button {
        width: 100%;
        text-align: center;
        display: block;
        align-self: center;
    }
    
    .conquistar-image {
        max-width: 300px;
        height: auto;
    }
	.conquistar-left {
		margin:0;
	}
}

/* ========================================
   ECONOMIA SECTION
   ======================================== */
.economia-container {
    padding: 100px 0;
    background: #f4ecfc;
    position: relative;
}

.economia-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.economia-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.economia-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.economia-image {
    width: 120%;
    max-width: 900px;
    margin-left: 0;
    margin-top: 100px;
}

.economia-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.economia-title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
    margin-bottom: 60px;
    text-align: left;
}

.economia-highlight {
    color: #6336C4;
}

.economia-counters {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: nowrap;
}

.economia-counter {
    text-align: center;
    background: white;
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid #6336C4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    width: 200px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.economia-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.counter-number {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #6336C4;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    font-family: "Poppins", sans-serif;
    font-size: 14pt;
    color: #333;
    font-weight: 500;
    margin-top: auto;
}

/* ========================================
   ECONOMIA RESPONSIVE
   ======================================== */

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .economia-container {
        padding: 60px 0;
    }
    
    .economia-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .economia-left {
        order: 1;
        text-align: center;
    }
    
    .economia-right {
        order: 2;
    }
    
    .economia-counters {
        gap: 12px;
    }
    
    .economia-counter {
        padding: 10px 12px;
        height: 70px;
        min-height: 70px;
    }
    
    .counter-number {
        font-size: 1.8rem;
        margin-bottom: 2px;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .economia-container {
        padding: 60px 0;
    }
    
    .economia-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .economia-left {
        order: 1;
        text-align: center;
    }
    
    .economia-right {
        order: 2;
        justify-content: center;
    }
    
    .economia-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }
    
    .economia-counters {
        justify-content: center;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .economia-counter {
        min-width: 100px;
        flex: 1;
        padding: 10px 12px;
        height: 70px;
        min-height: 70px;
    }
    
    .economia-image {
        max-width: 400px;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    
    .counter-number {
        font-size: 1.8rem;
        margin-bottom: 2px;
    }
    
    .counter-label {
        font-size: 0.9rem;
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .economia-container {
        padding: 50px 0;
    }
    
    .economia-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .economia-left {
        order: 1;
        text-align: center;
    }
    
    .economia-right {
        order: 2;
        justify-content: center;
    }
    
    .economia-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    
    .economia-counters {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .economia-counter {
        min-width: 250px;
        flex: none;
        padding: 5px 15px;
        height: 70px;
        min-height: 70px;
    }
    
    .economia-image {
        max-width: 300px;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    
    .counter-number {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    
    .counter-label {
        font-size: 0.85rem;
    }
}


/* FAQ Styles */
.suporte-faq {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 15px;
    background: #7935CC;
    border-radius: 25px;
    height: auto;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-details {
    border: none;
}

.faq-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 10px;
    cursor: pointer;
    list-style: none;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.faq-summary:hover {
    color: #3BEBEB;
}

.faq-summary:focus {
    background-color: #7935CC;
    color: white;
    outline: none;
}

.faq-question {
    flex: 1;
    margin-right: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    padding-left: 10px;
}
.faq-question:hover {
    color: #3BEBEB;
}
.faq-question:focus {
    color: #7935CC;
}

.faq-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.faq-summary:hover .faq-icon svg {
    fill: #3BEBEB;
}

.faq-summary:focus .faq-icon svg {
    fill: white;
}

.faq-icon-plus {
    display: block;
}

.faq-icon-minus {
    display: none;
}

.faq-details[open] .faq-icon-plus {
    display: none;
}

.faq-details[open] .faq-icon-minus {
    display: block;
}

.faq-details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-details[open] .faq-summary {
    background-color: #3BEBEB;
    color: #7935CC;
}

.faq-details[open] .faq-question {
    color: #7935CC;
}

.faq-details[open] .faq-icon svg {
    fill: #7935CC;
}

.faq-answer {
    padding: 0 25px 25px 25px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    background: white;
}

.faq-answer p {
    margin: 0 0 15px 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}
