/* Definições de cores e fontes */
:root {
    --smart-fit-black: #000000;
    --smart-fit-yellow: #FFB612;
    /* Amarelo (ajuste se a cor for mais forte) */
    --smart-fit-background-header: #1e1e1e;
    /* Cinza bem escuro para o fundo do header */
    --smart-fit-link-color: #f1f1f1;
    /* Cor dos links do menu */
    --smart-fit-secondary-text: #8c8c8c;
    /* Cor do texto secundário nos links */
    --smart-fit-date-bg: #000000;
    /* Fundo preto para o badge de data */
    --font-family-base: 'DM Sans', sans-serif;
}

body {
    background-color: #ECECEC;
    /* background-color: #f5f5f5; */
    font-family: var(--font-family-base);
    min-width: 320px;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1150px;
}

/* ----------------------------------- */
/* AJUSTES DO HEADER */
/* ----------------------------------- */

.header {
    font-family: var(--font-family-base);
    background-color: #fff;
    color: #000;
    padding: 15px 0;
}

.header .nav-link {
    font-weight: 900;
    color: #000;
    font-size: 16px;
}

.header form {
    gap: 9px;
    display: flex;
    align-items: center;
}

.nav-menu {
    gap: 9px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link.small-link {
    font-size: 13px;
    padding: 5px 3px;
    white-space: nowrap;
}

.logo-img {
    max-width: 120px;
}

/* Estilo do Mobile */
@media (max-width: 767.98px) {
    .header {
        background-color: #fff;
        color: #000;
        padding-top: 20px;
    }

    .header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header .col-md-10 {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .logo-container {
        flex: 0 0 auto;
    }

    .menu-toggle {
        flex: 0 0 auto;
    }

    .nav-menu {
        display: none !important;
    }

    .hamburger {
        font-size: 26px;
        cursor: pointer;
        color: #000;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 10px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
        padding: 20px;
        width: 94%;
        max-width: 390px;
        z-index: 999;
        flex-direction: column;
    }

    .mobile-menu a {
        display: block;
        margin: 12px 0;
        text-decoration: none;
        color: #000;
        font-size: 16px;
        font-weight: 500;
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 26px;
        height: 26px;
    }

    .close-btn svg {
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
    }

    .close-btn:hover svg circle {
        fill: black;
    }

    .close-btn:hover svg line {
        stroke: white;
    }

    .mobile-menu .btn-cta-header-mobile {
        color: white;
        background-color: #000;
        border-radius: 30px;
        /* Arredondamento */
        padding: 4px 9px;
        /* Padding exato */
        font-size: 13px;
        font-weight: 700;
        line-height: 1.5;
        transition: all 0.3s;
        display: inline-block;
        width: fit-content;
        text-align: center;
        text-decoration: none;
    }

}

/* Botão 'Resgatar meu Código' (CTA da direita) */
.btn-cta-header {
    color: white;
    background-color: var(--smart-fit-black);
    border: 1px solid var(--smart-fit-secondary-text);
    /* Borda sutil */
    border-radius: 30px;
    /* Arredondamento */
    padding: 4px 16px;
    /* Padding exato */
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    transition: all 0.3s;
}

.btn-cta-header:hover {
    background-color: var(--smart-fit-secondary-text);
    border-color: var(--smart-fit-secondary-text);
    color: white;
}

/* ----------------------------------- */
/* BANNER PRINCIPAL */
/* ----------------------------------- */

.hero-banner {
    background-color: #000;
    display: flex;
    justify-content: center;
}

.hero-banner .container {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-banner .banner-wrapper {
    background-color: #000;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Button no Banner */
.banner-cta-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.banner-cta-btn {
    background-color: #FFB612;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 8px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.banner-cta-btn:hover {
    background-color: #ffda6a;
    color: #000;
    transform: translateY(-2px);
}



@media (max-width: 767.98px) {
    body p {
        font-size: 16px;
    }

    .logo-container {
        flex: 0 0 auto;
    }

    .nav-menu {
        flex: 1 1 auto;
        justify-content: end;
        gap: 5px;
    }

    .logo-img {
        max-width: 81px;
    }

    .nav-link.small-link {
        font-size: 6.5px;
        padding: 12px 2px;
        font-weight: 900;
    }

    .hero-banner {
        background-color: #fff;
    }

    /* Seção Como Funciona - fundo branco no mobile */
    #como-funciona {
        background-color: #fff;
    }

    /* CTA Button ajuste mobile */
    .banner-cta-container {
        bottom: 20px;
    }

    .banner-cta-btn {
        font-size: 1rem;
        padding: 10px 30px;
    }

    /* Cards mobile com carrossel */
    .cards-carousel {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
    }

    .cards-container {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 0 24px;
        scroll-behavior: smooth;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .cards-container .card {
        min-width: 260px;
        max-width: 350px;
        width: 98%;
        height: 123px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .cards-container .card .text-como-funciona {
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .cards-container .card .text-como-funciona .card-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
        margin: 0;
    }

    .cards-container .card .text-como-funciona .card-icon-large {
        width: 42px;
        height: 42px;
    }

    .cards-container .card .text-como-funciona h5 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .cards-container .card .text-como-funciona p {
        font-size: 14px;
        line-height: 1.2;
        margin: 0;
    }

    /* Setas de navegação */
    .carousel-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: transparent;
        color: #808080;
        border: none;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 10;
        font-size: 18px;
        font-weight: bold;
        transition: opacity 0.3s;
    }

    .carousel-arrow.left {
        left: 1px;
    }

    .carousel-arrow.right {
        right: 1px;
    }

    .carousel-arrow:hover {
        opacity: 0.7;
    }
}

.hero-banner .banner-wrapper {
    background-color: #fff;
}

/* Mobile */
.mobile-banner {
    width: 95%;
    justify-content: center;
    background: none;
    /* remove fundo preto */
    padding: 0;
    /* sem padding */
}

.mobile-banner .banner-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

section {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}


/* Desktop cards grid */
.cards-grid {
    display: none;
}

@media (min-width: 768px) {
    .cards-grid {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-image: url('img/fundoCard.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 261px;
    height: 199px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.card picture {
    display: none;
}

.card .text-como-funciona {
    position: relative;
    z-index: 2;
    padding: 16px;
    color: #ffffff;
    text-align: center;
    width: 100%;
}

.card .text-como-funciona .card-icon {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 15px;
    object-fit: contain;
}

.card .text-como-funciona .card-icon-large {
    width: 48px;
    height: 48px;
}

.card .text-como-funciona h5 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.card .text-como-funciona p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
}

/* CTA Como Funciona */
.cta-como-funciona {
    background-color: #FFB612;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 8px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.cta-como-funciona:hover {
    background-color: #ffda6a;
    color: #000;
    transform: translateY(-2px);
}

.como-funciona-title {
    font-size: 38px;
    font-weight: 900;
}

@media (max-width: 767.98px) {
    .card {
        border: 1px solid #e0e0e0;
        border-radius: 18px;
        padding: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        background-image: url('img/fundoCardMobile.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
        width: 261px;
        height: 199px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .cta-como-funciona {
        font-size: 1rem;
        padding: 10px 30px;
    }

    .como-funciona-title {
        font-size: 30px;
        font-weight: 900;
    }
}


/* -------------------------------- */
/* SECTION VOCE NAO VAI FICAR DE FORA */
/* -------------------------------- */

/* Cores e estilos customizados */
:root {
    --sf-black: #000;
    --sf-yellow: #FFB612;
    /* Amarelo Smart Fit */
    --sf-neon-blue: #00FFFF;
    /* Para simular o brilho neon */
}

.sf-section {
    background-color: #000;
    color: #FFFFFF;
    padding: 0;
    overflow: hidden;
    /* Para não cortar o brilho do fundo */
    position: relative;
}

/* Título Principal */
.sf-title {
    font-size: 38px;
    font-weight: 800;
    /* Extra Bold */
    line-height: 1.1;
    margin-bottom: 5px;
    margin-top: 0;
    text-align: left;
}

/* Subtexto */
.sf-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: left;
}

/* Botão */
.sf-btn-yellow {
    background-color: #FFB612;
    color: #000;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    padding: 9px 40px;
    border-radius: 30px;
    transition: background-color 0.3s;
    margin-bottom: 0;
    display: inline-block;
}

.sf-btn-yellow:hover {
    background-color: #ffda6a;
    color: #000;
    transform: translateY(-2px);
}

/* Área da Imagem */
.sf-image-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
    padding-left: 0;
    /* Garante que a imagem e texto fiquem na frente do brilho */
}

/* Background do container com a imagem */
.sf-section-bg {
    background-image: url('img/fundoVoceNaoVaiFicardeFora.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 70%;
    position: relative;
    min-height: 700px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.sf-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* Sem bordas */
    object-fit: cover;
    /* A imagem anexada não é usada diretamente no código, mas a área é reservada para ela */
}

/* Timeline/Etapas */
.sf-timeline {
    position: relative;
    padding-left: 30px;
    z-index: 1;
    /* Espaço para a linha vertical */
}

.sf-timeline-col {
    position: relative;
    z-index: 1;
}

/* Linha Vertical */
.sf-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 2px;
    height: 90%;
    border: 1px dashed #FFB612;
}

.sf-step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 50px;
}

/* Círculo do Número */
.sf-step-number {
    position: absolute;
    top: 0;
    left: -28px;
    /* Ajusta a posição para o círculo ficar na linha */
    width: 50px;
    height: 50px;
    background-color: var(--sf-yellow);
    color: var(--sf-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    z-index: 2;
    /* Para ficar por cima da linha */
}

.sf-step-title {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.sf-step-content {
    font-size: 0.95rem;
    line-height: 1.4;
}

.sf-step-content small {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .sf-section {
        padding: 20px;
        background-color: #fff;
    }

    .sf-section-bg {
        background-image:
            linear-gradient(to top, #000 50%, transparent 85%),
            url('img/fundoMobileVoceNaoVaiFicardeFora.png');
        background-repeat: no-repeat;
        background-position: top center;
        background-size: contain;
        background-color: #000;
        position: relative;
        border-radius: 20px;
        min-height: 90vh;
        padding: 0;
        margin: 0;
    }

    .sf-section-bg>.d-md-none {
        padding-top: 300px;
        padding-bottom: 10px;
    }

    .sf-title {
        font-size: 32px;
        text-align: center;
    }

    .sf-subtitle {
        text-align: center;
    }

    .sf-section>.container>.row {
        flex-direction: column;
    }

    .sf-image-container {
        order: 1;
        text-align: center !important;
        padding: 0 20px;
        margin-bottom: 30px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
    }

    .sf-image-container .sf-title,
    .sf-image-container .sf-subtitle {
        text-align: center !important;
        width: 100%;
    }

    .sf-timeline-col {
        order: 2;
    }

    /* Carousel de Steps Mobile */
    .sf-steps-carousel-arrows {
        position: absolute;
        top: 70%;
        left: 5px;
        right: 5px;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 100;
    }

    .sf-steps-container {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
        position: relative;
        width: 100%;
    }

    .sf-steps-container::-webkit-scrollbar {
        display: none;
    }

    .sf-step {
        flex: 0 0 100%;
        scroll-snap-align: center;
        background-color: transparent;
        backdrop-filter: none;
        border-radius: 0;
        padding: 20px;
        margin-bottom: 0;
        position: relative;
        padding-left: 20px;
        padding-top: 60px;
        padding-bottom: 3px;
        min-width: 100%;
        box-sizing: border-box;
    }

    .sf-step::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 20px;
        right: 20px;
        height: 2px;
        border-top: 2px dashed #FFB612;
        z-index: 0;
    }

    .sf-step-number {
        position: absolute;
        top: 0;
        left: 20px;
        margin: 0;
        z-index: 1;
    }

    .sf-step-title {
        text-align: center;
        margin-bottom: 10px;
        padding-top: 5%;
    }

    .sf-step-content {
        text-align: center;
        font-size: 14px;
        padding: 3px 27px;
    }

    .sf-arrow {
        position: absolute;
        top: 65%;
        transform: translateY(-50%);
        background-color: transparent;
        color: #969696;
        border: none;
        width: 40px;
        height: 40px;
        font-size: 24px;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s;
        pointer-events: all;
    }

    .sf-arrow:hover {
        opacity: 0.7;
    }

    .sf-arrow.left {
        left: 10px;
    }

    .sf-arrow.right {
        right: 10px;
    }

    .sf-btn-yellow {
        margin: 0 auto 10px;
        display: block;
        width: fit-content;
        text-align: center;
    }

    .sf-timeline {
        padding-left: 0;
    }

    .sf-timeline::before {
        display: none;
    }

    .sf-description-mobile {
        text-align: center;
        font-size: 14px;
        color: #fff;
        padding: 0 20px;
        margin-top: 20px;
    }
}






/* ----------------------------------- */
/* FORM SECTION: */
/* ----------------------------------- */


.form-section {
    padding: 80px 0;
    text-align: center;
}

/* Títulos */
.form-title {
    font-size: 38px;
    font-weight: 900;
    /* Extra Bold */
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 50px;
}

/* Estilo dos Campos de Formulário (Simulando as caixas brancas "elevadas") */
.form-control-custom {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    /* Bordas arredondadas */
    padding: 20px 15px;
    /* Altura maior do campo */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Sombra suave para "elevar" */
    transition: box-shadow 0.3s;
    height: auto;
    /* Permite o padding definir a altura */
    font-size: 1rem;
    color: #555;

}

/* Placeholder mais escuro e na fonte da Smart Fit */
.form-control-custom::placeholder {
    color: #AAA;
    /* Cinza claro */
    font-weight: 700;
    opacity: 1;
}

.form-control-custom:focus {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-color: transparent;
    /* Remove borda de foco padrão */
    outline: 0;
}

.form-group-margin {
    margin-bottom: 20px;
    /* Espaçamento entre as linhas */
}

/* Botão CTA */
.sf-btn-black {
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    margin-top: 50px;
    /* Espaço do botão para os checkboxes */
}

.sf-btn-black:hover {
    opacity: 0.9;
    color: #FFB612;
    /* Mantém a cor do texto no hover */
}

/* Botão Mobile Amarelo */
.sf-btn-yellow-mobile {
    background-color: #FFB612;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border: none;
    padding: 8px 50px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: opacity 0.3s;
    margin-top: 30px;
}

.sf-btn-yellow-mobile:hover {
    opacity: 0.9;
    color: #000;
}

/* Checkbox customizado (para alinhar com o visual limpo) */
.form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.15em;
    margin-right: 0.5rem;
    border-radius: 0.25rem;
    background-color: #fff;
    border: 1px solid #ccc;
}

.form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.form-check-label {
    font-size: 11px;
    text-align: left;
    line-height: 1.4;
    color: #000;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .form-title {
        font-size: 32px;
    }

    /* No mobile, os campos ficam em uma única coluna */
    .col-lg-4 {
        width: 100%;
    }
}


/* ----------------------------------- */
/* SHARE SECTION */
/* ----------------------------------- */

/* Cores e estilos customizados */
:root {
    --sf-black: #000;
    --sf-yellow: #FFB612;
    /* Amarelo Smart Fit */
    --sf-text-color: #000;
}

.share-section {
    color: #000;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    /* Adicione aqui a sua imagem de fundo para o efeito de marca d'água/padrão */
    /* Exemplo para você adaptar: */
    background-image: url('img/fundoChameSeusAmigos.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

.share-content {
    z-index: 10;
    position: relative;
}

/* Títulos */
.share-title {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 10px;
}

.share-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #222;
    /* Um preto um pouco mais suave no amarelo */
}

/* Container de Compartilhamento (Onde ficam os ícones e o link) */
.share-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 900px;
    /* Limita a largura do container */
    margin: 0 auto;
    gap: 15px;
}

.social-buttons-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.input-share-row {
    display: flex;
    gap: 0;
}

/* Botões de Mídia Social (Quadrados Pretos) */
.social-btn {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    transition: background-color 0.3s;
}

.social-btn img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.social-btn:hover {
    background-color: #333;
    color: var(--sf-yellow);
}

/* Campo de Link */
.link-input {
    flex-grow: 1;
    /* Ocupa o máximo de espaço possível */
    padding: 0px 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 320px;
}

/* Botão de Compartilhamento (Compartilhamento nativo/Outros) */
.share-icon-btn {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 8px 0;
    font-size: 1.5rem;
}

.share-icon-btn img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Ajuste de responsividade */
@media (max-width: 576px) {
    .share-section {
        background-image: url('img/fundoMobileChameSeusAmigos.png');
        padding: 30px 20px;
    }

    .share-title {
        font-size: 32px;
    }

    .share-box-container {
        flex-direction: column;
    }

    .social-buttons-row {
        width: 100%;
    }

    .social-btn {
        flex: 1;
        max-width: calc(33.333% - 7px);
    }

    .input-share-row {
        width: 100%;
    }

    .link-input {
        min-width: auto;
    }
}

.bg-success {
    background-color: #48C77F !important;
    color: white !important;
}

.bg-orange {
    background-color: #E6A35E !important;
    color: black !important;
}

.bg-danger {
    background-color: #CF4D5A !important;
    color: white !important;
}

.modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
}

/* ----------------------------------- */
/* TIK TOK SECTION */
/* ----------------------------------- */

.tiktok-section {
    background-color: var(--sf-background-light);
    padding: 80px 20px;
    text-align: center;
}

/* Títulos */
.tiktok-title {
    font-size: 1.8rem;
    font-weight: 800;
    /* Extra Bold */
    margin-bottom: 10px;
    color: var(--sf-black);
}

.tiktok-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: #555;
}

/* Estilo do Card/Thumbnail do Vídeo */
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* Cantos arredondados */
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Sombra suave para "elevar" */
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    /* Espaço entre as colunas no mobile */
}

.video-card:hover {
    transform: translateY(-5px);
    /* Efeito de elevação no hover */
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Usando um gradiente para simular a imagem, pois a imagem real não pode ser usada */
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)), url('URL_DA_SUA_THUMBNAIL.jpg') center center no-repeat;
    background-size: cover;
    height: 400px;
    /* Altura fixa para todos os cards */
}

/* Overlay com o Ícone de Play */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    background-color: var(--sf-yellow);
    color: var(--sf-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
    transform: scale(1.1);
    /* Pequena animação no play no hover */
}

/* Hashtag no canto superior direito */
.hashtag-pill {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    /* Fundo preto transparente */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 5;
}

/* Ajuste do ícone de play para centralizar o triângulo */
.fa-play {
    margin-left: 3px;
}

/* Carousel TikTok Mobile */
.tiktok-carousel {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 0 5px;
}

.tiktok-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 0 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tiktok-container::-webkit-scrollbar {
    display: none;
}

.tiktok-video-wrapper {
    flex: 0 0 280px;
    scroll-snap-align: center;
}

.tiktok-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #969696;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.tiktok-arrow:hover {
    opacity: 0.7;
}

.tiktok-arrow.left {
    left: -40px;
}

.tiktok-arrow.right {
    right: -40px;
}

@media (min-width: 768px) {
    .video-card {
        margin-bottom: 0;
    }
}


/* -------------------------------*/
/*  FAQ SECTION  */
/*--------------------------------*/


.faq {
    /* Fundo Preto com Imagem (Corpo da sua section) */
    background-color: #000 !important;
    color: #fff;
    /* --- Imagem de fundo com gradient fade --- */
    background-image:
        url('img/fundoFaq.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: auto;
    position: relative;
}

.faq-item {
    background-color: transparent;
    /* Garante que o item não tenha bordas nem fundo estranho */
    border: none;
    max-width: 1250px;
    /* Limita a largura para centralizar e melhorar a leitura */
    margin-left: auto;
    margin-right: auto;
}

.faq-question {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    position: relative;
    color: #fff;
    /* Pergunta em branco */
    /* Borda inferior sutil para separação */
    border-bottom: 1px solid #333 !important;
    padding-left: 0 !important;
    /* Remove o padding horizontal extra */
    padding-right: 0 !important;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

/* Seta SVG em Branco */
.faq-arrow svg path {
    stroke: #fff !important;
    /* Cor branca para a seta */
    stroke-width: 2.5;
}

.faq-answer {
    display: none;
    /* Fundo sutil para a resposta */
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item p {
    color: #ccc;
    /* Resposta em cinza claro */
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Títulos e Subtítulos */
.faq h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 800 !important;
}

.faq p {
    font-size: 15px;
    color: #ccc;
}

@media (max-width: 767.98px) {
    .faq {
        background-image: url('img/fundoMobileFaq.png');
        background-attachment: scroll;
        background-size: 100% auto;
        background-position: top center;
    }

    .faq h2 {
        display: none;
    }

    .faq .subtitle {
        margin-top: 20px;
        font-size: 16px;
    }
}