:root {
    /* Core colors */
    --primary-dark: #0F2847;
    --primary-medium: #1E5A96;
    --primary-light: #2E7DB4;
    --accent-purple: #7C3AED;
    --accent-gold: #D4AF37;
    --true-black: #0A0E27;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--true-black), var(--primary-dark), var(--primary-medium));
    --gradient-accent: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10,14,39,0.08);
    --shadow-md: 0 4px 16px rgba(10,14,39,0.12);
    --shadow-lg: 0 12px 30px rgba(10,14,39,0.15);
    
    /* Glass effect */
    --glass-bg: rgba(255,255,255,0.1);
    --glass-border: rgba(255,255,255,0.2);
    --glass-shadow: 0 8px 32px rgba(10,14,39,0.1);
}

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--true-black);
    line-height: 1.5;
    background-color: #122844;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
    white-space: normal; /* Remove nowrap to show full text */
    max-width: 1200px;
    margin: 0 auto 24px;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    height: 90px; /* Increased header height */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-left: 0;
    max-width: none; /* Allows logo to touch left edge */
}

/* Navigation */
.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: var(--white);
    opacity: 0.9;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 1;
}

/* New styles for .nav-links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.cta-button {
    background: #ffd700;
    color: #122844;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--true-black);
}

/* Destaque para o botão "Começar agora" */
.btn.start-eval {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #082034;
  background: linear-gradient(90deg, #ffd84a 0%, #ffc700 100%);
  border: none;
  text-decoration: none;
  box-shadow:
    0 18px 40px rgba(2,8,24,0.45),
    0 8px 26px rgba(212,175,55,0.10);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

/* hover / focus */
.btn.start-eval:hover,
.btn.start-eval:focus {
  transform: translateY(-4px);
  box-shadow:
    0 28px 70px rgba(2,8,24,0.55),
    0 18px 48px rgba(212,175,55,0.18);
  filter: saturate(1.05);
  outline: none;
}

/* foco acessível */
.btn.start-eval:focus-visible {
  outline: 3px solid rgba(255,215,0,0.18);
  outline-offset: 6px;
  border-radius: 12px;
}

/* pequeno indicador (sutil) */
.btn.start-eval::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(255,215,0,0.95);
  box-shadow: 0 0 16px rgba(255,215,0,0.12);
  vertical-align: middle;
  transform: translateY(0);
  transition: transform .4s ease, opacity .4s ease;
  opacity: 0.95;
}

/* animação sutil de pulso (opcional) */
@keyframes startPulse {
  0%   { transform: scale(0.95); opacity: .95; }
  60%  { transform: scale(1.08); opacity: .7; }
  100% { transform: scale(0.95); opacity: .95; }
}
.btn.start-eval:hover::after { animation: startPulse 1.4s ease-in-out infinite; }

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* logo de fundo - estática com pulso sutil */
.hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;              /* ajustar conforme quiser */
    height: auto;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    object-fit: contain;
    animation: pulse 3.5s ease-in-out infinite;
}

/* conteúdo acima da logo */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
}

/* animação de pulso leve */
@keyframes pulse {
    0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.25; }
    50%  { transform: translate(-50%, -50%) scale(1.03); opacity: 0.22; }
    100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.25; }
}

/* TEXTO DOURADO (APENAS neste H1) */
.gold-text {
    display: inline-block;
    font-weight: 800;
    font-size: clamp(2rem, 6vw, 5.2rem); /* ajuste responsivo */
    line-height: 1.05;

    /* textura: caminho relativo ao arquivo CSS */
    background-image: url('../assets/gold-texture.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* ou 'auto' / '200%' conforme teste */

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* fallback */
    color: #d4af37;
    filter: contrast(1.02) saturate(1.05);
}

/* subtítulo */
.hero-sub {
    color: #ffffff;
    opacity: 0.95;
    margin-top: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
    height: 90px; /* Increased header height */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-left: 0;
    max-width: none; /* Allows logo to touch left edge */
}

/* Navigation */
.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: var(--white);
    opacity: 0.9;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 1;
}

/* New styles for .nav-links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.cta-button {
    background: #ffd700;
    color: #122844;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--accent-gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--true-black);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    background: var(--gradient-hero);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    opacity: 0.50;
    pointer-events: none;
    z-index: 0;
    object-fit: contain;
    margin: auto;
    animation: pulse 3s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1800px; /* Increased even more for full text */
    margin: 0 auto;
    text-align: center;
    padding: 0 60px; /* Increased padding for better edge spacing */
}

.hero h1 {
    font-size: clamp(3.5rem, 5.5vw, 6rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1.1;
    white-space: normal; /* Remove nowrap to show full text */
    max-width: 1200px;
    margin: 0 auto 24px;
}

.hero p {
    font-size: 1.25rem;
    margin: 24px 0 32px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Glass Card */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    margin-left: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo:hover::after {
    transform: translateX(100%);
}

.logo-image {
    height: 85px; /* Increased to nearly touch top/bottom */
    width: auto;
    object-fit: contain;
    margin: 2px 0; /* Small margin to prevent touching edges */
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: rotate(-3deg);
}

.nav-logo {
    display: block;
}

.nav-logo img {
    width: 150px;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

/* Remova qualquer texto roxo ou decoração indesejada */
.nav-logo:hover {
    text-decoration: none;
}

.gold-text {
    display: inline-block;             /* necessário para background-clip funcionar bem */
    font-weight: 800;
    line-height: 1.05;
    color: #d4af37;                     /* fallback caso o clip não funcione */

    /* textura dourada */
    background-image: url('../assets/gold-texture.png');
    background-repeat: repeat;          /* repetir para garantir preenchimento */
    background-position: center;
    background-size: 180px auto;        /* ajuste esse valor até ficar bom visualmente */

    /* recortar o background para dentro do texto */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    /* garantir suavidade */
    -webkit-font-smoothing: antialiased;
    filter: contrast(1.05) saturate(1.05);
    /* aumentar especificidade visual caso outro estilo sobrescreva */
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .nav {
        display: none;
    }
    
    .logo-image {
        height: 60px; /* Adjusted mobile size */
    }
}

@media (max-width: 1200px) {
    h1 {
        white-space: normal; /* Allow wrapping on smaller screens */
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1.1;
    }
}

@media (max-width: 1400px) {
    h1 {
        font-size: clamp(2.5rem, 4vw, 4.5rem);
    }
    
    .hero-content {
        padding: 0 40px;
    }
}

/* ===== SEÇÃO "COMO FUNCIONA" ===== */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(180deg, #F3F4F6 0%, #FFFFFF 50%, #F3F4F6 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* How it Works & Sectors Section */
.section-dark {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0A0E27 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-200);
    opacity: 0.9;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    object-fit: cover;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.feature-card h3 {
    color: #ffd700;
    font-size: 1.1rem; /* Reduced from 1.2rem */
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: auto; /* Remove fixed height if present */
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(212, 175, 55, 0.5));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card p {
    color: var(--gray-200);
    line-height: 1.6;
}

.feature-card ul {
    margin-top: 16px;
    margin-bottom: 0;
    padding-left: 20px;
    color: var(--gray-200);
    font-size: 1rem;
    line-height: 1.5;
}

.icon {
    font-size: 1.8rem;
}

/* Corrija fundo dos cards e seções para azul escuro */
.section-dark,
.how-it-works,
.feature-card,
.cards-grid {
    background: var(--primary-dark) !important;
    color: var(--accent-gold);
}

/* Corrija títulos para dourado sólido, sem textura */
h1, h2, h3, h4, .section-header h2, .feature-card h3 {
    color: var(--accent-gold) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: var(--accent-gold) !important;
    text-shadow: none !important;
}

/* Corrija textos para branco ou dourado */
body, p, .feature-card p, .section-subtitle {
    color: var(--white) !important;
    background: none !important;
}

/* Remova qualquer textura de mármore */
.section-header h2, h1, h2, h3, h4 {
    background-image: none !important;
}

/* Corrija botões para dourado e azul escuro */
.btn-primary, .cta-btn {
    background: var(--accent-gold) !important;
    color: var(--primary-dark) !important;
    border: none;
}

.btn-primary:hover, .cta-btn:hover {
    background: #bfa22e !important;
    color: var(--primary-dark) !important;
}

/* ===== SEÇÃO "BENEFÍCIOS" ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.benefit-hex {
    width: 100%;
    padding-top: 115%;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s;
    cursor: pointer;
    margin-bottom: 30px;
    z-index: 2;
}

.hex-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #122844 0%, #2d2d5a 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 3;
}

.hex-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    z-index: 4;
}

.hex-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-hex:hover {
    transform: translateY(-10px);
}

.benefit-hex::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #ffd700, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.benefit-hex:hover::before {
    opacity: 0.2;
}

.hex-container:nth-child(7),
.hex-container:nth-child(8) {
    background: linear-gradient(135deg, #122844 0%, #2d2d5a 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: transform 0.3s ease;
}

.hex-container:nth-child(7):hover,
.hex-container:nth-child(8):hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .nav {
        display: none;
    }
    
    .logo-image {
        height: 60px; /* Adjusted mobile size */
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Ajustes para os hexágonos */
.benefits-grid {
    position: relative;
    z-index: 1;
}

.benefit-hex {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.hex-inner {
    z-index: 3;
}

.hex-content {
    z-index: 4;
}

/* Ajuste para os dois últimos hexágonos */
.benefit-hex:nth-last-child(-n+2) {
    margin-bottom: 0;
}

/* ===== SEÇÃO "DEPOIMENTOS" ===== */
.testimonials-section {
    background: #122844;
    padding: 80px 0;
}

.testimonials-container {
    background-color: #122844;
    padding: 80px 0;
    width: 100%;
}

.testimonials-title {
    color: #ffd700;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 48px;
    background-color: #122844;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #122844;
}

.testimonial-card {
    background-color: #0A1625;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.author-name {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-company {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Styles */
.faq-card {
    background: #0A1625;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #fff;
    line-height: 1.6;
}

.faq-card.active .faq-answer {
    padding: 0 24px 24px 24px;
}

.faq-section {
    background-color: #122844;
    padding: 80px 0;
    width: 100%;
}

.section-title {
    color: #ffd700;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 20px;
    background: #0A1625;
    border-radius: 12px;
    overflow: hidden;
}

.faq-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: #0A1625;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-button:hover {
    transform: translateY(-5px);
    background: #122844;
}

/* Add these styles to your existing CSS */

.quiz-section {
    padding: 80px 0;
    background: #122844;
}

.quiz-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    background: rgba(10, 22, 37, 0.8);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.quiz-card h2 {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.quiz-card p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.quiz-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #ffd700;
    color: #122844;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quiz-button:hover {
    transform: translateY(-5px);
    background: #fff;
}

.quiz-button .arrow {
    transition: transform 0.3s ease;
}

.quiz-button:hover .arrow {
    transform: translateX(8px);
}

/* Faixinha superior central discreta */
.top-strip {
    position: fixed;
    left: 50%;
    top: 18px;                        /* ajuste vertical */
    transform: translateX(-50%);
    z-index: 1200;                    /* acima do header */
    pointer-events: auto;
    width: min(920px, calc(100% - 40px));
    display: flex;
    justify-content: center;
    align-items: center;
}

/* contêiner interno para borda arredondada e sombras */
.top-strip-inner {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    background: rgba(10,14,39,0.6);   /* discreto sobre o fundo */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 8px 18px;
    box-shadow: 0 6px 20px rgba(10,14,39,0.35);
    border: 1px solid rgba(255,255,255,0.04);
}

/* links internos */
.strip-link,
.strip-cta {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 999px;
    transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* hover suave para os links normais */
.strip-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
    opacity: 0.98;
}

/* botão principal destacado dentro da faixa */
.strip-cta {
    background: linear-gradient(90deg, var(--accent-gold), #b8862b);
    color: #081026;
    box-shadow: 0 6px 18px rgba(212,175,55,0.18);
    padding: 8px 16px;
    font-weight: 700;
    border: none;
}

/* efeito hover do CTA */
.strip-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212,175,55,0.24);
}

/* pequena sombra quando o usuário rolar (opcional) */
.has-scrolled .top-strip-inner {
    box-shadow: 0 8px 26px rgba(10,14,39,0.45);
}

/* responsividade */
@media (max-width: 768px) {
    .top-strip { top: 12px; width: calc(100% - 28px); }
    .top-strip-inner { gap: 8px; padding: 6px 12px; }
    .strip-link { font-size: 0.88rem; padding: 6px 8px; }
    .strip-cta { padding: 6px 10px; font-size: 0.9rem; }
}

@media (max-width: 420px) {
    .top-strip-inner { gap: 6px; padding: 6px 10px; }
    .strip-link { display:none; } /* esconde links secundários em telas muito pequenas */
    .strip-cta { padding: 6px 10px; }
}

/* Mini logo botão sobre o hero (voltar ao topo) */
.mini-logo {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 8px 22px rgba(4,10,30,0.45);
    transition: transform .18s ease, box-shadow .18s ease;
    z-index: 60;
}
.mini-logo img {
    width: 68%;
    height: auto;
    display: block;
}
.mini-logo:hover,
.mini-logo:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(4,10,30,0.55);
    outline: none;
}

/* responsivo */
@media (max-width: 768px) {
    .mini-logo { left: 16px; top: 12px; width: 40px; height: 40px; }
    .mini-logo img { width: 72%; }
}
@media (max-width: 420px) {
    .mini-logo { left: 12px; top: 10px; width: 36px; height: 36px; }
}

/* garanta que o container do hero seja position:relative para o posicionamento funcionar */
.hero { position: relative; /* já deve existir, mantido */ }

/* Mini-logo dentro da top-strip (inline) */
.top-strip .mini-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 6px 16px rgba(4,10,30,0.35);
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
    flex-shrink: 0;
}
.top-strip .mini-logo img {
    width:100%;
    height:100%;
    object-fit:contain;
    border-radius:50%;
}
.top-strip .mini-logo:hover,
.top-strip .mini-logo:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(4,10,30,0.44);
    opacity: 0.98;
}

/* Se existir ainda a regra antiga que posicionava absolute, sobrescrever */
.mini-logo { position: static !important; left: auto !important; top: auto !important; }

/* responsivo: reduzir tamanho em telas pequenas */
@media (max-width: 480px) {
  .top-strip .mini-logo { width: 36px; height: 36px; margin-right: 8px; }
  .top-strip a:not(.strip-cta) { font-size: 0.92rem; padding:6px 10px; }
}

/* Garantir que só a mini-logo dentro da top-strip apareça */
.mini-logo { display: none !important; }

/* permitir a mini-logo dentro da faixa superior */
.top-strip .mini-logo {
  display: inline-flex !important;
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 6px 16px rgba(4,10,30,0.35);
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
  flex-shrink: 0;
}
.top-strip .mini-logo img { width:100%; height:100%; object-fit:contain; border-radius:50%; }
