/* Fontes Poppins */

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../../fonts/Poppins-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    background: #12091f;
    color: #f7f1ff;
    padding-top: 82px;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Avoids content clipping behind fixed navbar on internal pages with custom heroes. */
main,
section:first-of-type {
    scroll-margin-top: 90px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 64px;
    z-index: 100;
}

.navbar.navbar-dark {
    background: #181818;
    color: #fff;
    box-shadow: none;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo {
    font-weight: bold;
    font-size: 1.5em;
    color: #1a73e8;
}

.logo-reinvente {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 1px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-highlight {
    color: #ff14f3;
    font-weight: 900;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0 32px 0 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color .2s;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color .2s;
    padding: 0 4px;
}

.nav-links a:hover {
    color: #92178c;
}

.nav-lang {
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-arrow {
    font-size: 0.8em;
    margin-left: 2px;
}

.nav-actions {
    display: flex;
    gap: 20px;
}

.nav-btn {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 24px;
    padding: 8px 32px;
    text-decoration: none;
    transition: background .2s, color .2s, border .2s;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #fff;
    color: #181818;
    border-color: #fff;
    box-shadow: 0 10px 30px var(--neon-purple-soft);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
  
    background: linear-gradient(90deg, #4927704f 60%, #492770b9 100%), #000;
    min-height: 400px;
    height: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    max-width: 800px;
}

.hero-text span {
    color: #ffc400;
}

.hero-text h1 {
    font-size: 1.4rem;
    margin: 0;
    color: #ffffff;
}

.hero-text p {
    font-size: 65px;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.hero-img img {
    width: 450px;
}

.cta-btn {
    background: #1a73e8;
    color: #fff;
    max-width: 200px;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background .2s;
    margin-right: 12px;
    display: inline-block;
}

.cta-btn:hover {
    background: #1565c0;
}

@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 1.3rem;
    }
    .hero-text p {
        font-size: 40px;
    }
    .hero-img img {
        width: 350px;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: 200px;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-text p {
        font-size: 26px;
    }
    .hero-img img {
        display: none;
    }
    .hero-text {
        align-items: center;
    }
}

.servicos-cards {
    background: #232323;
    padding: 48px 0 32px 0;
    text-align: center;
}

.servicos-cards-title {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.servicos-cards-highlight {
    color: #50297c;
    font-weight: 800;
}

.servicos-cards-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 32px auto;
}

.servico-card {
    background: #111;
    max-width: 320px;
    border-radius: 16px;
    padding: 36px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    min-height: 260px;
    transition: transform .15s, box-shadow .15s;
}

.servico-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 40px rgba(80,41,124,0.12), 0 6px 20px rgba(0,0,0,0.18);
}

.servico-card-icon {
    background: #50297c;
    color: #232323;
    border-radius: 10px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 18px;
}

.servico-card-title {
    color: #ffc400;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.servico-card-desc {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.servicos-cards-btn-area {
    margin-top: 24px;
    text-align: center;
}

.servicos-cards-btn {
    background: #19c37d;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 32px;
    padding: 18px 36px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(25, 195, 125, 0.15);
    transition: background .2s, box-shadow .2s;
    display: inline-block;
    letter-spacing: 0.5px;
}

.servicos-cards-btn:hover {
    background: #13a362;
    box-shadow: 0 10px 36px rgba(80,41,124,0.08);
}

.servicos-detalhados {
    padding: 64px 32px;
    background: #232323;
    color: #fff;
}

.servicos-detalhados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.servico-detalhado-card {
    background: #181818;
    border: 2px solid #492770;
    border-radius: 16px;
    padding: 32px 28px 24px 28px;
    position: relative;
    transition: max-height .3s, box-shadow .2s, border-color .2s, overflow .3s;
    cursor: pointer;
    color: #fff;
    min-height: 80px;
    max-height: 80px;
    overflow: hidden;
}

.servico-detalhado-card:hover,
.servico-detalhado-card.active {
    box-shadow: 0 4px 24px rgba(73, 39, 112, 0.12);
    border-color: #F8BF1C;
}

.servico-detalhado-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 12px;
    display: inline-block;
}

.servico-detalhado-icon {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 2rem;
    color: #F8BF1C;
    transition: transform .3s;
    cursor: pointer;
}

.servico-detalhado-card.active {
    max-height: 600px;
    overflow: visible;
}

.servico-detalhado-card.active .servico-detalhado-icon {
    transform: rotate(180deg);
}

.servico-detalhado-content {
    display: none;
    margin-top: 24px;
    animation: fadeIn .3s;
}

.servico-detalhado-card.active .servico-detalhado-content {
    display: block;
}

.servico-detalhado-content p {
    color: #fafafa;
    font-size: 1.08rem;
    margin-bottom: 18px;
}

.servico-detalhado-btn {
    background: #492770;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s;
    display: inline-block;
    margin-top: 8px;
}

.servico-detalhado-btn:hover {
    background: #F8BF1C;
    color: #492770;
}

.servico-detalhado-card.destaque {
    background: #232323;
    border: 2px solid #F8BF1C;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 120px;
}

.servico-detalhado-card.destaque .servico-detalhado-title {
    font-size: 1.2rem;
    color: #F8BF1C;
    font-weight: 700;
}

.servico-detalhado-card.destaque .servico-detalhado-btn {
    background: #F8BF1C;
    color: #492770;
    font-weight: 700;
}

.servico-detalhado-card.destaque .servico-detalhado-btn:hover {
    background: #492770;
    color: #fff;
}

/* Responsividade */
@media (max-width: 900px) {
    .servicos-detalhados-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .servico-detalhado-card {
        padding: 24px 16px 18px 16px;
    }
}

/* Animação fadeIn */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 1100px) {
    .servicos-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .servicos-cards-title {
        font-size: 1.5rem;
    }
    .servicos-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 12px;
    }
    .servico-card {
        padding: 28px 16px 24px 16px;
        min-height: 0;
    }
    .servicos-cards-btn {
        width: 100%;
        font-size: 1rem;
        padding: 14px 0;
    }
}

.quem-somos {
    display: flex;
    flex-direction: column;
    align-items: center;
   
    padding: 64px 32px;
    background-color: #181818;
    justify-content: center;
}

.container-info{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 64px 32px;
    
    justify-content: center;
}

@media (max-width: 1300px) {
    .container-info {
        flex-direction: column-reverse;
        padding: 0px;
        
    }
}
.video-container {
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    width: 100%;
    max-width: 800px;
    min-width: 260px;
    border-radius: 18px;
    
    aspect-ratio: 16/9;
    object-fit: cover;
}

.quem-somos-text {
    flex: 1 1 0;
    max-width: 650px;
    font-family: 'Poppins', Arial, sans-serif;
    color: #fff;
   
    padding: 32px 32px 32px 32px;
    
}

.quem-somos-text h2 {
    color: #50297c;
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.quem-somos h1{
    font-size: 2.5rem;
    margin: 0 0 18px 0;
    color: #F8BF1C;
}
.quem-somos-text p {
    color: #e0e0e0;
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* Responsividade para quem-somos */
@media (max-width: 1100px) {
    .quem-somos {
        flex-direction: column;
        gap: 32px;
        padding: 48px 12px;
    }
    .video-container, .quem-somos-text {
        max-width: 100%;
        
        padding: 0;
    }
    .quem-somos-text {
        padding: 24px 12px;
    }
    .video-container video {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .quem-somos {
        padding: 32px 0;
    }
    .quem-somos-text h2 {
        font-size: 1.3rem;
    }
    .quem-somos-text p {
        font-size: 1rem;
    }
    .video-container video {
        min-width: 0;
        border-radius: 10px;
    }
}

/* Hovers com sensação neon (púrpura) */
:root {
	--neon-purple: #50297c;
	--neon-purple-soft: rgba(80,41,124,0.16);
	--neon-purple-glow: rgba(80,41,124,0.40);
}

/* Links do menu — cor neon + brilho */
.nav-links a:hover {
    color: #8c59ff; /* tom mais vivo para hover */
    text-shadow: 0 0 10px rgba(140,89,255,0.35);
}

/* Botão da navbar — mantém branco, adiciona glow púrpura */
.nav-btn:hover {
    background: #fff;
    color: #181818;
    border-color: #fff;
    box-shadow: 0 10px 30px var(--neon-purple-soft);
}

/* Cartões de serviço — adiciona glow púrpura ao hover sem quebrar o estilo escuro */
.servico-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 40px rgba(80,41,124,0.12), 0 6px 20px rgba(0,0,0,0.18);
}

/* Botão principal de cards — sutil glow ao redor */
.servicos-cards-btn:hover {
    background: #13a362;
    box-shadow: 0 10px 36px rgba(80,41,124,0.08);
}

/* Partner item hover — branco do cartão com glow roxo */
.partner-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(80,41,124,0.12), 0 6px 18px rgba(0,0,0,0.18);
}

/* Destaques e links (onde houver dourado no hover, adicionamos pulso roxo) */
.footer-links a:hover,
.faq-pergunta:hover,
.contato-social-icon:hover {
    box-shadow: 0 8px 28px var(--neon-purple-soft);
}

/* Small neon accent for interactive icons */
.servico-card-icon,
.case-logo img {
    transition: filter .22s ease, box-shadow .22s ease;
}
.servico-card-icon:hover,
.case-logo img:hover {
    filter: drop-shadow(0 6px 18px var(--neon-purple-glow));
}

/* Depoimentos - grid de vídeos */
.depoimentos {
    padding: 48px 20px;
    background: linear-gradient(180deg, rgba(24,24,24,0.85), rgba(18,9,31,0.95));
}
.depoimentos h2 {
    text-align: center;
    margin: 0 0 18px 0;
    color: #F8BF1C;
}
.depoimentos-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    padding: 12px;
}
.depo-thumb {
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.depo-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
    background: #000;
    filter: brightness(0.85) saturate(0.9);
}

/* Stronger selector in case other rules override the thumbnail styling */
.depo-thumb .depo-thumb-img {
    object-fit: contain !important;
    object-position: center !important;
    background: #000;
}
.depo-thumb .thumb-label {
    position: absolute;
    left: 12px;
    bottom: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    background: linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.2));
    padding: 6px 10px;
    border-radius: 8px;
}
.depo-thumb .play-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.depo-thumb .play-btn {
    pointer-events: auto;
    background: rgba(248,191,28,0.95);
    color: #12091f;
    border: none;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 28px rgba(80,41,124,0.12);
    transition: transform .12s ease;
}
.depo-thumb .play-btn:hover { transform: scale(1.05); }

/* Overlay do player */
.video-overlay {
    position: fixed;
    inset: 0;
    display: none; /* hidden by default; JS will add .open to show */
    place-items: center;
    z-index: 2000;
}
.video-overlay.open {
    display: grid;
}
.video-overlay[hidden] {
    display: none !important;
}
.video-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}
.video-overlay-content {
    position: relative;
    width: min(1100px, 96%);
    max-height: 92vh;
    z-index: 2001;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    padding: 8px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.6);
}
.video-overlay-content video {
    width: 100%;
    height: auto;
    max-height: 88vh;
    display: block;
    background: #000;
}
.video-overlay-close {
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 2010;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

@media (max-width: 600px) {
    .depoimentos-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
    }
    .depo-thumb {
        min-height: 120px;
        aspect-ratio: 16 / 10;
    }
    .depo-thumb .play-btn { width: 56px; height: 56px; }
}

.cta-secundaria {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 48px 32px;
    background: #e3f2fd;
    justify-content: space-between;
}

.cta-secundaria img {
    width: 180px;
    border-radius: 12px;
}

.lead-form {
    padding: 64px 32px;
    background: #fff;
}

.lead-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
}

.lead-form input,
.lead-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1em;
}

.lead-form button {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background .2s;
}

.lead-form button:hover {
    background: #1565c0;
}

.faq {
    padding: 64px 32px;
    background: #e3f2fd;
}

.faq-lista {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
}

.faq-pergunta {
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 16px;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background .2s;
}

.faq-pergunta:hover {
    background: #e3f2fd;
}

.faq-resposta {
    display: none;
    padding: 12px 16px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 4px;
}

.footer {
    display: flex;
    flex-direction: column;
    background: #0a0a0f;
    text-align: center;
    color: #fff;
    padding: 48px 32px 24px 32px;
}
.footer-info {
    display: flex;
    justify-content: space-around;
    
    gap: 32px;
    width: 100%;
}
.footer-logo {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.footer-logo img {
    margin-bottom: 8px;
    height: 120px;
}
.footer-logo p{
    margin: 0;
}

.footer-links {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-links h4 {
    margin: 0;
    color: #F8BF1C;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.footer-links a:hover {
    color: #F8BF1C;
    text-decoration: underline;
}

.footer-contact {
   
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-contact h4 {
    margin: 0px;
    color: #F8BF1C;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-contact p {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    color: #fff;
}
.footer-copy {
    margin-top: 32px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 900px) {
    .footer-info {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .footer-logo,
    .footer-links,
    .footer-contact {
        align-items: center;
        width: 100%;
    }
}

/* Responsividade */

@media (max-width: 900px) {
    .hero,
    .quem-somos,
    .case-destaque,
    .cta-secundaria,
    .footer-info {
        flex-direction: column;
        gap: 24px;
    }
    .cards-container,
    .depoimentos-lista,
    .servicos-lista,
    .cases-galeria {
        flex-direction: column;
        gap: 16px;
    }
    .navbar {
        padding: 0 16px;
    }
    .hero {
        padding: 96px 16px 48px 16px;
    }
    .servicos-cards,
    .quem-somos,
    .servicos-detalhados,
    .cases,
    .depoimentos,
    .cta-secundaria,
    .lead-form,
    .faq,
    .footer {
        padding: 32px 16px;
    }
    .hero-text {
        align-items: center;
        text-align: center;
    }
}


/* Navbar responsiva: ajuste de fonte */

.navbar.navbar-dark,
.logo-reinvente,
.nav-links a,
.nav-btn {
    transition: font-size .2s;
}

@media (max-width: 1474px) {
    .logo-reinvente {
        font-size: 1.6rem;
    }
    .nav-links a {
        font-size: 0.98rem;
    }
    .nav-btn {
        font-size: 0.95rem;
        padding: 8px 24px;
    }
}

@media (max-width: 1347px) {
    .logo-reinvente {
        font-size: 1.3rem;
    }
    .nav-links a {
        font-size: 0.93rem;
    }
    .nav-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 1264px) {
    .logo-reinvente {
        font-size: 1.1rem;
    }
    .nav-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .nav-actions {
        display: none !important;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
}


/* Mobile menu hamburguer */

.navbar-hamburger {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 16px;
    padding: 8px;
}

.navbar-hamburger .bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 5px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}


/* Dropdown mobile menu */

.navbar-mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #181818;
    width: 100vw;
    max-width: 320px;
    box-shadow: -2px 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 32px 0 16px 0;
}

.navbar-mobile-menu ul {
    list-style: none;
    padding: 0 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.navbar-mobile-menu a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color .2s;
}

.navbar-mobile-menu a:hover {
    color: #00dae9;
}


/* Esconde links e mostra hamburguer no mobile */

@media (max-width: 879px) {
    .nav-links {
        display: none !important;
    }
    .navbar-hamburger {
        display: block;
    }
    .navbar-mobile-menu {
        display: none;
    }
    .navbar-mobile-menu.open {
        display: block;
    }
}

.cases {
    padding: 64px 32px;
    background: #181818;
}

.cases-logos-grid {
    display: flex;
    gap: 32px;
    justify-items: center;
    align-items: center;
    margin: 40px auto 0 auto;
    max-width: 1100px;

}

:root {
    --brand-purple-950: #1b082d;
    --brand-purple-900: #28093f;
    --brand-purple-800: #421465;
    --brand-purple-700: #5a2183;
    --brand-purple-600: #6f2c9c;
    --brand-gold-500: #f8bf1c;
    --brand-gold-400: #ffd24d;
    --brand-text-strong: #fff8ff;
    --brand-text-soft: rgba(255, 244, 255, 0.78);
    --brand-line: rgba(255, 255, 255, 0.13);
    --brand-glass: rgba(255, 255, 255, 0.08);
    --brand-shadow: 0 18px 48px rgba(14, 3, 24, 0.34);
}

body {
    background:
        radial-gradient(circle at 15% 0%, rgba(248, 191, 28, 0.08), transparent 24%),
        radial-gradient(circle at 86% 12%, rgba(122, 52, 168, 0.18), transparent 30%),
        linear-gradient(180deg, #12091f 0%, #12081d 100%);
    color: var(--brand-text-strong);
}

.navbar {
    height: 82px;
    padding: 0 28px;
}

.navbar.navbar-dark {
    height: 82px;
    padding: 0 28px;
    background: rgba(73, 20, 112, 0.94);
    border-bottom: 1px solid rgba(248, 191, 28, 0.16);
    box-shadow: 0 14px 28px rgba(17, 4, 27, 0.28);
    backdrop-filter: blur(16px);
}

.logo-reinvente img {
    height: 46px !important;
    width: auto;
}

.nav-links {
    gap: clamp(14px, 2vw, 30px);
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--brand-text-strong);
    font-weight: 500;
    font-size: 0.94rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--brand-gold-500);
    text-shadow: none;
}

.nav-actions {
    align-items: center;
    gap: 12px;
}

.nav-btn {
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-text-strong);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: none;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--brand-text-strong);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: none;
}

.nav-actions .nav-btn:last-child {
    background: linear-gradient(180deg, var(--brand-gold-400), var(--brand-gold-500));
    border-color: transparent;
    color: #5a2d00;
    font-weight: 700;
    padding: 0 24px;
    box-shadow: 0 14px 28px rgba(248, 191, 28, 0.26);
}

.nav-actions .nav-btn:last-child:hover {
    background: linear-gradient(180deg, #ffe07f, var(--brand-gold-500));
    color: #4d2902;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 24px;
    min-height: 50px;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.navbar-hamburger {
    margin-left: auto;
    padding: 8px 0 8px 8px;
}

.navbar-hamburger .bar {
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background: #fff7ff;
}

.navbar-mobile-menu {
    top: 82px;
    right: 16px;
    width: min(320px, calc(100vw - 32px));
    max-width: none;
    border: 1px solid rgba(248, 191, 28, 0.18);
    border-radius: 24px;
    background: rgba(34, 8, 54, 0.96);
    box-shadow: var(--brand-shadow);
    padding: 20px 0 14px;
    overflow: hidden;
}

.navbar-mobile-menu ul {
    gap: 10px;
}

.navbar-mobile-menu a {
    color: var(--brand-text-strong);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 14px;
    padding: 12px 14px;
}

.navbar-mobile-menu a:hover {
    color: var(--brand-gold-500);
    background: rgba(255, 255, 255, 0.05);
}

.footer {
    background:
        radial-gradient(circle at 16% 0%, rgba(248, 191, 28, 0.08), transparent 26%),
        linear-gradient(180deg, #26093f 0%, #160826 100%);
    color: var(--brand-text-strong);
    padding: 54px 32px 24px;
    border-top: 1px solid rgba(248, 191, 28, 0.14);
}

.footer-info {
    width: min(1240px, 100%);
    margin: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo img {
    height: 92px;
    margin-bottom: 12px;
}

.footer-logo p,
.footer-contact p,
.footer-copy {
    color: var(--brand-text-soft);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--brand-gold-500);
    letter-spacing: 0.04em;
}

.footer-links a {
    color: var(--brand-text-strong);
}

.footer-links a:hover {
    color: var(--brand-gold-500);
    text-decoration: none;
}

.footer-contact {
    max-width: 320px;
}

.footer-copy {
    width: min(1240px, 100%);
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
    .nav-actions .nav-btn:first-child {
        display: none;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 78px;
    }

    .navbar,
    .navbar.navbar-dark {
        height: 78px;
        padding: 0 18px;
    }

    .navbar-mobile-menu {
        top: 78px;
    }
}

@media (max-width: 900px) {
    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-info {
        align-items: center;
        text-align: center;
    }

    .footer-contact {
        max-width: none;
    }
}

@media (max-width: 879px) {
    .nav-links {
        display: none !important;
    }

    .navbar-hamburger {
        display: block;
    }
}

@media (max-width: 560px) {
    .nav-actions {
        display: none !important;
    }

    .logo-reinvente img {
        height: 42px !important;
    }

}

.case-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    background: #fff;
    border-radius: 50%;
    transition: box-shadow .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.case-logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
    transition: transform 0.2s;
}

.case-logo img:hover {
    transform: scale(1.18);
}

.cases h2 {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.cases-underline {
    width: 120px;
    height: 3px;
    background: #492770;
    margin: 0 auto 24px auto;
    border-radius: 2px;
}

.depoimentos {
    background: #232323;
    color: #fff;
    padding: 64px 32px;
    position: relative;
}

.depoimentos h2 {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.depoimentos-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}

.depoimento-card {
    background: #181818;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(73, 39, 112, 0.08);
    border: 2px solid #492770;
    padding: 24px 24px 0 24px;
    max-width: 340px;
    min-width: 260px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.depoimento-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 12px;
    width: 100%;
}

.depoimento-card-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.depoimento-card-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.depoimento-stars {
    color: #F8BF1C;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.depoimento-verified img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.depoimento-google img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.depoimento-card-text {
    font-size: 1.08rem;
    color: #fafafa;
    margin-bottom: 32px;
    min-height: 48px;
}

.depoimento-card-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    
    left: 24px;
    bottom: -32px;
}

.depoimento-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #F8BF1C;
    background: #fff;
    object-fit: cover;
}

.depoimento-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.depoimento-nome {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.depoimento-data {
    font-size: 0.95rem;
    color: #F8BF1C;
}

@media (max-width: 900px) {
    .depoimentos-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .depoimento-card {
        width: 100%;
        
    }
}

.faq-dark {
    background: #181818;
    color: #fff;
    padding: 64px 32px;
}

.faq-dark h2 {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.faq-lista {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-pergunta {
    background: #181818;
    border: 2px solid #492770;
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 1.15em;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 2px 8px rgba(73,39,112,0.08);
    transition: background .2s, border-color .2s;
    font-weight: 600;
}

.faq-pergunta:hover {
    background: #492770;
    border-color: #F8BF1C;
    color: #fff;
}

.faq-resposta {
    display: none;
    padding: 16px 20px;
    background: #181818;
    border-radius: 8px;
    margin-top: 6px;
    color: #fafafa;
    border-left: 4px solid #F8BF1C;
    font-size: 1.05em;
    box-shadow: 0 2px 8px rgba(73,39,112,0.08);
}

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

@media (max-width: 700px) {
    .faq-dark {
        padding: 32px 8px;
    }
    .faq-lista {
        max-width: 98vw;
    }
    .faq-pergunta {
        font-size: 1em;
        padding: 14px 12px;
    }
    .faq-resposta {
        font-size: 0.98em;
        padding: 12px 12px;
    }
}

.contato-reinvente {
    background: #222;
    color: #fff;
    padding: 64px 32px;
}

.contato-reinvente h2 {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #b879ff;
}

.contato-grid {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
 .contato-form-card {
    background: #181818;
    box-shadow: 0 2px 12px rgba(73,39,112,0.08);
}
.contato-social-card, .contato-form-card {
    
    border-radius: 16px;
    
    padding: 32px 28px;
    min-width: 280px;
    max-width: 420px;
    flex: 1 1 320px;
    display: flex;
    
    flex-direction: column;
    align-items: center;
}

.contato-social-card h3,
.contato-form-card h3 {
    color: #F8BF1C;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.contato-social-icons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 18px;
    margin: 0 16px 16px 16px;
}

.contato-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #181818;
    color: #fff;
    border: 2px solid #492770;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 1.08rem;
    text-decoration: none;
    font-weight: 500;
    transition: background .2s, border-color .2s;
    width: 100%;
    max-width: 135px;
}

.contato-social-icon i {
    font-size: 1.7em;
    width: 32px;
    text-align: center;
    color: #F8BF1C;
    transition: color .2s;
}

.contato-social-icon:hover i {
    color: #fff;
}

.contato-social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(73,39,112,0.08));
}

.contato-social-icon:hover {
    background: #492770;
    border-color: #F8BF1C;
    color: #fff;
}

.contato-form-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.contato-form-card input,
.contato-form-card textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1.5px solid #492770;
    font-size: 1em;
    background: #222;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.contato-form-card textarea {
    min-height: 80px;
    resize: vertical;
}

.contato-form-card button {
    background: #F8BF1C;
    color: #492770;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.08em;
    transition: background .2s, color .2s;
    width: 100%;
    box-sizing: border-box;
}

.contato-form-card button:hover {
    background: #492770;
    color: #fff;
}

@media (max-width: 900px) {
    .contato-grid {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }
    .contato-social-card, .contato-form-card {
        max-width: 98vw;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    /* Hero */
    .cta-btn {
        max-width: 100%;
        width: auto;
        margin-right: 6px;
        margin-bottom: 8px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Serviços Cards Button */
    .servicos-cards-btn-area {
        margin-top: 16px;
    }

    .servicos-cards-btn {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
        font-size: 0.95rem;
        padding: 12px 20px;
        display: block;
    }

    /* Podcasts e Auditório */
    .podcasts-btn,
    .auditorio-btn {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    /* Contato */
    .contato-social-card,
    .contato-form-card {
        padding: 16px 12px;
        max-width: 100%;
    }

    .contato-social-icon {
        max-width: 100%;
        width: 100%;
    }

    .contato-form-card input,
    .contato-form-card textarea,
    .contato-form-card button {
        font-size: 16px; /* Evita zoom em inputs no iOS */
    }

    /* Body overflow prevention */
    body {
        overflow-x: hidden;
    }

    main, section {
        overflow-x: hidden;
    }
}

@media (max-width: 500px) {
    
    .contato-social-icon  {
        max-width: 100px;
        font-size: 0.9rem;
    }
    .contato-social-card{
        padding: 0px;
    }
    .contato-reinvente h2 {
        font-size: 1.8rem;
}
}

/* Podcasts Section */
.podcasts-section {
    background: #232323;
    color: #fff;
    padding: 64px 32px;
}

.podcasts-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 48px;
    
    margin: 0 auto;
    flex-wrap: wrap;
}

.podcasts-text {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    min-width: 260px;
}

.podcasts-text h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #F8BF1C;
}

.podcasts-text p {
    font-size: 1.18rem;
    color: #fafafa;
    margin-bottom: 28px;
    line-height: 1.6;
}

.podcasts-btn {
    background: #492770;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 16px 36px;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    box-shadow: 0 2px 8px rgba(73,39,112,0.08);
    display: inline-block;
}

.podcasts-btn:hover {
    background: #F8BF1C;
    color: #492770;
}

.podcasts-content .video-container {
    display: flex;
    min-width: 260px;
    justify-content: center;
    align-items: center;
}

.podcasts-content .video-container video {
    width: 100%;
    max-width: 800px;
    min-width: 260px;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(73,39,112,0.10);
}

/* Auditório Section */
.auditorio-section {
    background: #181818;
    color: #fff;
    padding: 64px 32px;
}

.auditorio-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    
    margin: 0 auto;
    flex-wrap: wrap;
}

.auditorio-text {
    display: flex;
    
    height: 100%;
    
    flex-direction: column;
    max-width: 600px;
    min-width: 260px;
}

.auditorio-text h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #19c37d;
}

.auditorio-text p {
    font-size: 1.18rem;
    color: #fafafa;
    margin-bottom: 28px;
    line-height: 1.6;
}

.auditorio-btn {
    background: #19c37d;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 16px 36px;
    font-size: 1.08rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s;
    box-shadow: 0 2px 8px rgba(25,195,125,0.10);
    display: inline-block;
}

.auditorio-btn:hover {
    background: #fff;
    color: #19c37d;
}

.auditorio-content .video-container {
    
    min-width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auditorio-content .video-container video {
    width: 100%;
    max-width: 800px;
    min-width: 260px;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(25,195,125,0.10);
}

.carousel {
    display: flex;
    min-width: 260px;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(73,39,112,0.10);
}

.carousel img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 18px;
    transition: opacity 0.5s ease;
}

/* Responsividade para Podcasts e Auditório */
@media (max-width: 900px) {
    .podcasts-content,
    .auditorio-content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .podcasts-content .carousel,
    .auditorio-content .carousel {
        margin-top: 32px;
    }
    .podcasts-content .carousel img,
    .auditorio-content .carousel img {
        max-width: 98vw;
    }
    .podcasts-text,
    .auditorio-text {
        text-align: center;
        padding: 0;
    }
    body h2{
        margin-top: 0px;
    }
}
.whatsapp-float {
    position: fixed;
    text-decoration: none;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 35px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: pulse 3s infinite; /* Updated animation */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 1);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade para o botão de WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 20px;
        bottom: 10px;
        right: 10px;
    }
}
/*solucoes.html Soluções detalhadas */
.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #111;
   
    color: #00ff88;
    font-family: monospace;
    font-size: 1.5rem;
    padding: 10px 0;
    white-space: nowrap;
  }

  .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
  }

  .marquee-content {
    display: inline-block;
    padding-right: 2rem;
  }

  /* ⚡ Duplicamos o conteúdo várias vezes para preencher qualquer lacuna */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

/* Variáveis (ajuste paleta aqui) */

/* Global purple harmonization */
:root {
    --purple-bg-900: #1a0c2b;
    --purple-bg-850: #221036;
    --purple-bg-800: #2b1541;
    --purple-bg-750: #341a4d;
}

body {
    background:
        radial-gradient(circle at 14% 0%, rgba(248, 191, 28, 0.06), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(154, 89, 208, 0.14), transparent 32%),
        linear-gradient(180deg, var(--purple-bg-900) 0%, var(--purple-bg-850) 100%);
}

.navbar.navbar-dark {
    background: linear-gradient(180deg, rgba(72, 27, 110, 0.95), rgba(59, 20, 94, 0.94));
    border-bottom: 1px solid rgba(248, 191, 28, 0.18);
}

.navbar-mobile-menu {
    background: linear-gradient(180deg, rgba(52, 17, 82, 0.97), rgba(40, 14, 63, 0.97));
}

.footer {
    background:
        radial-gradient(circle at 16% 0%, rgba(248, 191, 28, 0.07), transparent 26%),
        linear-gradient(180deg, #31134a 0%, #1f0d31 100%);
}
