/* Prevenção global de barra de rolagem horizontal */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* =========================
   PALETA CTRL 3D
   ========================= */
:root {
    /* Cores Originais */
    --turquoise: #01c6ce;
    --turquoise-light: #a9f3f5;
    --blue: #3a82ff;
    --orange: #f6af32;
    --green: #02b45a;
    --purple: #8b5cf6;
    --blue-dark: #4318ff;
    --pink: #ff6b6b;
    --pb-1-color: #05BA68;
    --pb-2-color: #FF8507;
    --pb-3-color: #1EBEC8;
    --pb-4-color: #FFA900;
    --pb-5-color: #B300AC;

    /* Novas cores do BLOCOS2 */
    --pb-yellow: #f5b414;
    --pb-blue-light: #549ef8;
    --pb-green-mint: #00c06f;
    --pb-purple: #8b5cf6;
    --pb-red: #ff6b6b;

    --text-dark: #111111;
    --text-light: #ffffff;

    --section-padding: 4rem;
    --radius: 24px;
    --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.18);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* =========================
   RESET SIMPLES
   ========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    /* Evita rolagem lateral indesejada */
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    margin: 0 0 0.5em;
}

/* =========================
   LAYOUT BÁSICO
   ========================= */
.container {
    width: min(1200px, 100% - 2rem);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.2rem;
    border-radius: 999px;
    background: var(--blue-dark);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* MENU DESKTOP */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: var(--blue-dark);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* BOTÃO HAMBÚRGUER (MOBILE) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    height: 3px;
    border-radius: 999px;
    background: var(--text-dark);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================
   ÍCONE HOME NO MENU
   ========================= */

/* Ajusta o tamanho e alinhamento do SVG */
.home-icon {
    width: 22px;
    /* Tamanho do ícone */
    height: 22px;
    vertical-align: middle;
    /* Alinha verticalmente com o texto dos outros links */
    margin-bottom: 4px;
    /* Pequeno ajuste fino para subir/descer */
    transition: fill 0.25s ease;
}

/* O item do menu (li) precisa permitir que o SVG herde a cor */
.main-nav .home-item a {
    display: flex;
    align-items: center;
    padding: 0 5px;
    /* Um pouco de espaço clique */
}

/* Remove a linha sublinhada padrão do link apenas para o ícone */
.main-nav .home-item a::after {
    display: none;
}

/* Efeito Hover: Muda a cor igual aos textos */
.main-nav .home-item a:hover .home-icon {
    fill: var(--blue-dark);
    /* Usa o azul escuro da sua paleta */
}

/* =========================
   HERO & JORNADA
   ========================= */
.hero {
    background: var(--turquoise);
    padding: var(--section-padding) 0;
    color: var(--text-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-box {
    background: var(--blue-dark);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.hero-title-box {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.hero-list-box {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-top: 1.2rem;
}

.hero-title-box h1 {
    font-size: clamp(1.8rem, 3vw + 1rem, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.hero-list-box ul {
    margin: 0;
    padding-left: 1rem;
    font-size: 1.5rem;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* JORNADA */
.journey {
    /* padding: 0;
    margin: 0;
    background: var(--turquoise-light);*/
    position: relative;
    z-index: 0;
    /* Cria um contexto de empilhamento */
    overflow: hidden;
    /* Garante que a imagem não saia da borda se houver bug */
    padding: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
}

.journey::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* --- CONFIGURE SUA IMAGEM AQUI --- */
    background-image: url('../static-images/jorney-background.webp');

    background-repeat: repeat;
    /* Faz a imagem repetir */
    background-size: 300px;
    /* Ajuste o tamanho do padrão (aumente ou diminua) */
    background-position: center;

    /* --- AJUSTE A TRANSPARÊNCIA AQUI --- */
    opacity: 0.15;
    /* 0.1 é bem suave, 1.0 é total. Teste entre 0.05 e 0.2 */

    z-index: -1;
    /* Joga para trás do conteúdo */
    pointer-events: none;
    /* Garante que não atrapalhe cliques */
}

.journey-inner {
    /* padding: 2rem 0;*/
    position: relative;
    z-index: 2;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.journey-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0;
}

/* =========================
   TÍTULO DA JORNADA (BOX LARANJA)
   ========================= */
.journey-title-box {
    background: var(--orange);
    color: var(--text-light);
    padding: 1.5rem 2rem;
    border-radius: 22px;
    text-align: center;
    margin-bottom: 20px;
    /* Espaço entre o título e os blocos abaixo */
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.journey-title-box h2 {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    /* Fonte responsiva (cresce no desktop, diminui no mobile) */
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    /* Opcional: Deixa em caixa alta como parece na imagem */
}

/* Ajuste fino para Mobile para não ocupar muito espaço vertical */
@media (max-width: 768px) {
    .journey-title-box {
        padding: 1.2rem;
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .journey-title-box h2 {
        font-size: 1.4rem;
    }
}

.jc-header {
    padding: 1rem;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.jc-header span {
    display: inline-block;
    animation: slide-in 1s ease-out forwards;
    transform: translateX(-120%);
    opacity: 0;
}

@keyframes slide-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.jc-body {
    padding: 1.2rem 1.4rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.jc-blue {
    background: var(--blue);
    color: var(--text-light);
}

.jc-green {
    background: var(--green);
    color: var(--text-light);
}

.jc-orange {
    background: var(--orange);
    color: var(--text-light);
}

.journey-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =======================================================
   PLATFORM BLOCKS (CORRIGIDO PARA MOBILE)
   ======================================================= */

#platform-blocks {
    margin: 0;
    padding: 0;
    width: 100%;
}

.pb-section {
    position: relative;
    overflow: visible;
    /* Necessário para a aba aparecer */
    padding: 90px 20px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
    font-family: "Poppins", "Montserrat", sans-serif;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    /* Garante ordem base */
}

/* Estado Expandido */
.pb-section.expanded {
    padding: 120px 20px 240px;
}

.pb-content {
    flex: 1;
    max-width: 620px;
    /* Centraliza o conteúdo dentro da caixa flex */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pb-section h2 {
    margin: 0 0 12px;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.pb-section p {
    margin: 0 0 15px;
    line-height: 1.6rem;
    font-size: 1.1rem;
}

/* Imagem Lateral (Desktop) */
.pb-img {
    /* Força o tamanho fixo quadrado */
    width: 200px;
    height: 200px;

    /* ESSENCIAL: Recorta a imagem para caber no quadrado sem esticar */
    object-fit: cover;

    border-radius: 10px;
    margin-left: 30px;
    flex-shrink: 0;
    box-shadow: none;
}

/* Conteúdo Extra */
.pb-extra {
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    text-align: left;
    margin-top: 1rem;
}

.pb-extra p {
    text-align: justify;
}

.pb-extra-img {
    margin-top: 1rem;
    border-radius: 10px;
    max-width: 400px;
}

.pb-section.expanded .pb-extra {
    display: block;
    opacity: 1;
}

/* Botão Toggle */
.pb-btn-toggle {
    margin-top: 20px;
    padding: 10px 28px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background: #fff;
    color: var(--text-dark);
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
    box-shadow: var(--shadow-soft);
}

.pb-btn-toggle:hover {
    transform: scale(1.05);
}

/* Cores dos Blocos */
.pb-section--1 {
    background: var(--pb-1-color);
    z-index: 5;
}

.pb-section--2 {
    background: var(--pb-2-color);
    z-index: 4;
}

.pb-section--3 {
    background: var(--pb-3-color);
    z-index: 3;
}

.pb-section--4 {
    background: var(--pb-4-color);
    z-index: 2;
}

.pb-section--5 {
    background: var(--pb-5-color);
    z-index: 1;
}

/* Encaixes / Quebra-cabeça (Padrão Desktop) */
.pb-section--2::before,
.pb-section--3::before,
.pb-section--4::before,
.pb-section--5::before {
    content: "";
    position: absolute;
    top: -59px;
    /* Ajuste fino para não deixar linha branca */
    width: 360px;
    height: 120px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    pointer-events: none;
}

/* Posições desktop */
.pb-section--2::before {
    right: 10%;
    background: var(--pb-1-color);
}

.pb-section--3::before {
    left: 10%;
    background: var(--pb-2-color);
}

.pb-section--4::before {
    right: 10%;
    background: var(--pb-3-color);
}

.pb-section--5::before {
    left: 10%;
    background: var(--pb-4-color);
}

/* =========================
   SEÇÃO COMO CONTRATAR
   ========================= */

.hiring-section {
    width: 100%;
    /* Remove margens para as faixas tocarem umas nas outras */
    margin: 0;
    padding: 0;
    color: var(--text-light);
    text-align: center;
}

/* --- CABEÇALHOS (FAIXA TURQUESA) --- */
.hire-header {
    background-color: var(--turquoise);
    padding: 1.5rem 0;
    position: relative;
    /* Garante que o mascote possa vazar um pouco se precisar */
    z-index: 2; 
}

.hire-header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 80px; /* Altura mínima para o mascote caber */
}

.hire-header h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    /* Sombra leve no texto para destacar no turquesa */
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); 
    width: 100%;
    text-align: center;
    /* Padding lateral para o texto não ficar embaixo do mascote no desktop */
    padding-inline: 100px; 
}

/* Mascotes (Cobra / Capivara) */
.hire-mascot {
    position: absolute;
    right: 0;
    bottom: -10px; /* Levemente deslocado para baixo para efeito 3D */
    height: 110px; /* Ajuste o tamanho da imagem aqui */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

/* --- CONTEÚDO (FAIXAS COLORIDAS) --- */
.hire-content {
    padding: 3rem 1rem;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
}

.hc-blue {
    background-color: #005bd4; /* Um azul um pouco mais vibrante que o blue-dark padrão */
}

.hc-orange {
    background-color: var(--orange);
}

.hire-content p {
    margin: 0;
    max-width: 900px;
    margin-inline: auto;
}


/* =========================================
   RESPONSIVO E CORREÇÃO MOBILE
   ========================================= */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    /*.hero-image { order: -1; }*/
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .journey-img,
    .journey-card {
        grid-column: 1 / -1;
    }

    .pb-extra-img {
        max-width: 300px;
    }
}


/* Menu Mobile */
@media (max-width: 720px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .logo-area {
        flex: 1 1 auto;
    }

    .nav-toggle {
        order: 2;
        display: flex;
    }

    .main-nav {
        order: 3;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .site-header.nav-open .main-nav {
        max-height: 280px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1rem;
    }

    .btn-cta {
        order: 4;
        width: 100%;
        margin-top: 0.5rem;
        display: flex;
    }


    .hero-title-box {
        border-bottom-left-radius: 22px !important;
        border-bottom-right-radius: 22px !important;
        margin-bottom: 1rem;
    }

    .hero-list-box {
        border-top-left-radius: 22px !important;
        border-top-right-radius: 22px !important;
    }
}

@media (max-width: 768px) {

    /* --- 1. AJUSTES DO HERO (CABEÇALHO AZUL UNIFICADO) --- */
    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        /* Espaço entre os blocos azuis e a imagem do esqueleto */
    }

    /* Container dos dois blocos azuis */
    .hero-left {
        width: 100%;
        padding-inline: 10px;
        display: flex;
        flex-direction: column;
        gap: 0;
        /* ESSENCIAL: Remove o espaço entre o título e a lista */
    }

    /* Estilo genérico das caixas */
    .hero-box {
        padding: 1.5rem;
        width: 100%;
        box-shadow: none;
        /* Opcional: remove sombra interna da junção para parecer mais plano */
    }

    /* BLOCO DE CIMA (TÍTULO) */
    .hero-title-box {
        background: var(--blue-dark);
        color: var(--text-light);

        /* Remove curvas de baixo */
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;

        margin-bottom: 0 !important;
        /* Garante que não haja margem empurrando */
        padding-bottom: 0.5rem;
        /* Reduz espaço interno para aproximar do texto de baixo */
    }

    .hero-title-box h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0;
    }

    /* BLOCO DE BAIXO (LISTA) */
    .hero-list-box {
        background: var(--blue-dark);
        color: var(--text-light);

        /* Remove curvas de cima */
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 22px;
        border-bottom-right-radius: 22px;

        margin-top: 0 !important;
        /* Cola no bloco de cima */
        padding-top: 0.5rem;
        /* Equilibra o espaçamento visual */
    }

    .hero-list-box ul {
        font-size: 1.1rem;
        margin: 0;
    }

    /* Imagem do Esqueleto */
    .hero-image {
        width: 100%;
        margin-top: 0.5rem;
        /* Pequeno ajuste para afastar do bloco azul */
        padding-inline: 10px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    /* --- 4. REORDENAR A JORNADA (CONECTAR -> CRIAR -> EXPLORAR) --- */
    .journey-grid {
        display: flex;
        flex-direction: column;
    }

    /* Definimos a ordem explícita para garantir a sequência Texto - Imagem */

    /* 1. Conectar (Texto) */
    .journey-grid> :nth-child(1) {
        order: 1;
    }

    /* 2. Imagem do Conectar */
    .journey-grid> :nth-child(2) {
        order: 2;
    }

    /* AQUI ESTÁ O TRUQUE: INVERTER 3 E 4 */

    /* 3. O texto "Criar" (que é o 4º no HTML) sobe para a posição 3 */
    .journey-grid> :nth-child(4) {
        order: 3;
    }

    /* 4. A imagem do "Criar" (que é o 3º no HTML) desce para a posição 4 */
    .journey-grid> :nth-child(3) {
        order: 4;
    }

    /* 5. Explorar (Texto) segue normal */
    .journey-grid> :nth-child(5) {
        order: 5;
    }

    /* 6. Imagem do Explorar segue normal */
    .journey-grid> :nth-child(6) {
        order: 6;
    }

    /* --- 2. CORREÇÃO DOS BLOCOS DE PLATAFORMA (COLORIDOS) --- */
    .pb-section {
        flex-direction: column;
        /* Reduzi o padding lateral para 15px para dar espaço ao texto */
        padding: 90px 15px 60px;
        text-align: center;
        width: 100%;
    }

    .pb-content {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pb-section h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .pb-section p {
        margin: 0 0 15px;
        line-height: 1.5rem;
        font-size: 1rem;
        /* Garante que o texto quebre linha e não vaze a tela */
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    /* IMAGEM SEMPRE QUADRADA E CENTRALIZADA */
    .pb-img {
        display: block;
        margin: 25px auto 0;
        /* Centraliza horizontalmente */
        width: 100%;
        max-width: 300px;
        /* Tamanho controlado */

        /* Força o quadrado perfeito */
        aspect-ratio: 1 / 1;
        height: auto;

        object-fit: cover;
        /* Recorta o excesso sem distorcer */
        border-radius: 12px;
        box-shadow: none;
    }

    .pb-extra-img {
        max-width: 300px;
    }

    /* CORREÇÃO DAS ABAS (O QUEBRA-CABEÇA) */
    .pb-section--2::before,
    .pb-section--3::before,
    .pb-section--4::before,
    .pb-section--5::before {
        width: 180px;
        height: 50px;
        /* Aba um pouco mais discreta */
        top: -49px;

        /* Centralização absoluta */
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);

        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    /* Ajuste quando o bloco está aberto (expanded) */
    .pb-section.expanded {
        padding: 90px 15px 100px;
    }

    /* Conteúdo extra (o texto que abre) */
    .pb-extra {
        width: 100%;
        box-sizing: border-box;
    }

    /* --- 3. JORNADA (CONECTAR, CRIAR...) --- */
    .journey-grid {
        display: flex;
        flex-direction: column;
    }

    .journey-card,
    .journey-img {
        width: 100%;
        min-height: auto;
    }

    .journey-img img {
        min-height: 250px;
        /* Altura fixa para imagens da jornada não sumirem */
    }

    .jc-header {
        font-size: 2rem;
        /* Reduzi para não estourar */
        padding: 1.5rem 1rem;
    }

    .hire-header-inner {
        flex-direction: column;
        justify-content: center;
    }

    .hire-header h2 {
        padding-inline: 0; /* Remove o espaço lateral */
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    /* No mobile, o mascote fica embaixo do texto, centralizado */
    .hire-mascot {
        position: relative;
        right: auto;
        bottom: auto;
        height: 80px;
        margin-top: 5px;
    }

    .hire-content {
        padding: 2rem 1rem;
        font-size: 1.1rem;
    }
}

/* =========================
   RODAPÉ
   ========================= */
.site-footer {
    background: var(--blue);
    color: var(--text-light);
    padding-block: 1.8rem;
}

.footer-inner {
    text-align: center;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.footer-buttons img {
    width: 27px;
    height: 27px;
    object-fit: contain;

}

.footer-info {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.footer-info p {
    margin: 4px 0;
}

/* Área do Copyright e CNPJ */
.footer-copy {
    display: block;
    /* Garante que o small se comporte como bloco */
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0.7;
    /* Deixa um pouco mais discreto que o resto */
    line-height: 1.6;
}

.cnpj-text {
    display: inline-block;
    margin-left: 5px;
}

.btn-round.small-btn {
    width: 35px;
    height: 35px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-round.small-btn.whatsapp {
    background: #3f413f;
}

.btn-round.small-btn.instagram {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.btn-round.small-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-info {
        font-size: 0.9rem;
    }

    /* No celular, força a quebra de linha entre o Copyright e o CNPJ */
    .mobile-break {
        display: block;
        content: "";
        margin-top: 2px;
    }

    .cnpj-text {
        margin-left: 0;
    }
}

/* No desktop, esconde a quebra forçada (opcional, se quiser tudo na mesma linha) */
@media (min-width: 769px) {
    .mobile-break {
        display: none;
    }

    /* Adiciona um separador visual no Desktop */
    .cnpj-text::before {
        content: "•";
        margin-right: 8px;
        margin-left: 3px;
    }
}