/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-silver: #c0c0c0;
    --color-light-silver: #e8e8e8;
    --color-white: #ffffff;
    --color-blue: #455E89;
    --color-blue-dark: #1e40af;
    --color-blue-light: #3b82f6;
	--color-yellow: #FECB29;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

.fas.yellow{
	color:var(--color-yellow);
	fill:var(--color-yellow);
	font-size:22pt;
}

.btn, a{text-decoration: none;}

@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?s7de1z');
  src:  url('fonts/icomoon.eot?s7de1z#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?s7de1z') format('truetype'),
    url('fonts/icomoon.woff?s7de1z') format('woff'),
    url('fonts/icomoon.svg?s7de1z#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-star:before {
  content: "\e900";
  color: #ffcc29;
}
.icon-hand:before {
  content: "\e901";
  color: #ffcc29;
}
.icon-light:before {
  content: "\e902";
  color: #ffcc29;
}
.icon-target:before {
  content: "\e903";
  color: #ffcc29;
}
.icon-rocket:before {
  content: "\e904";
  color: #ffcc29;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
}

/* Container fixo (seu código original) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Container fluid (novo) */
.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Versão alternativa com padding responsivo opcional */
.container-fluid-responsive {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Versão completamente sem padding */
.container-fluid-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    background-color: var(--color-black);
    padding: var(--spacing-sm) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-white);
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-hero {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

.btn-secondary:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
}

.btn-hero {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background-color: var(--color-blue);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(40, 40, 40, 0.90) 0%, rgba(69, 94, 137, 0.75) 100%),
        url('business.png') center center / cover no-repeat;
    color: var(--color-white);
    padding: calc(var(--spacing-xl) + 60px) 0 var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-black);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #455E89;
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-white);
    position: relative;
}

.section-title-dark::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #455E89;
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}
/* About Section */
.about {
    background-color: var(--color-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

/* Vision Section */
.vision {
    background: linear-gradient(180deg, var(--color-light-silver) 0%, var(--color-white) 100%);
	
}

.vision-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-gray);
}

.vision-subtitle {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 colunas para ter mais controle */
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Primeira linha: cada card ocupa 2 colunas (3 cards = 6 colunas) */
.vision-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1;
}

.vision-card:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1;
}

.vision-card:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1;
}

/* Segunda linha: cada card ocupa 2 colunas, mas deixa 1 coluna de margem de cada lado */
.vision-card:nth-child(4) {
    grid-column: 2 / 4; /* começa na coluna 2 (deixa 1 vazia à esquerda) */
    grid-row: 2;
}

.vision-card:nth-child(5) {
    grid-column: 4 / 6; /* termina na coluna 6 (deixa 1 vazia à direita) */
    grid-row: 2;
}

.vision-card {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--color-light-silver);
}

/* Responsivo */
@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .vision-card {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}


.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    border-color: var(--color-blue);
	
}

.vision-icon {
	margin: 0 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 3rem;
    width: 80px;
    height: 80px;
    background-color: #455E89;
    border-radius: 50%;
    padding: 2px;
    margin-bottom: var(--spacing-sm);
}

.vision-card h3,
.benefit-card h3 {
    min-height: 3.6rem; /* 2 linhas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-footer {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-blue);
    font-style: italic;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--color-white);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-silver) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--color-blue);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-blue);
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
}

.step-content p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray);
    font-size: 1.05rem;
}

.points-list {
    list-style: none;
    margin: var(--spacing-sm) 0;
}

.points-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}

.points-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: bold;
}

.highlight {
    font-weight: 600;
    color: var(--color-blue);
    font-style: italic;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    color: var(--color-white);
}

.benefits .section-title {
    color: var(--color-white);
}

.benefits .section-title::after {
    background: linear-gradient(90deg, var(--color-white) 0%, var(--color-silver) 100%);
}

.benefits-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-silver);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.benefit-card {
    background-color: var(--color-gray);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.benefit-header {
    margin-bottom: var(--spacing-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.benefit-card ul {
    list-style: none;
}

.benefit-card li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: var(--spacing-sm);
    color: var(--color-silver);
    line-height: 1.6;
}

.benefit-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-weight: bold;
}

.benefits-footer {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-blue-light);
    margin-bottom: var(--spacing-lg);
}

.cta-section {
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-silver);
    padding: var(--spacing-md) 0;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #000000 !important;
	color:#455E89 !important;
	padding:4px;
    margin: 0 auto;
    padding: 4px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 5px 10px 40px rgba(69, 94, 137, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: var(--color-blue);
    position: absolute;
    right: var(--spacing-md);
    top: var(--spacing-md);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre o texto e o ícone */
}

.close:hover {
    color: var(--color-white);
}

/* Ajustar tamanhos para ficarem proporcionais */
.close span {
    font-size: 12pt;
}

.close i {
    font-size: 1.2rem; /* Proporcional ao texto */
}



.modal-content h2 {
    color: var(--color-blue);
    margin: 0 auto;
    text-align: center;
}

.form-container {
    margin: 0 auto;
	
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }

    .benefits-grid,
    .vision-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-hero {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* ============================================
   ESTRUTURA DE PONTOS MASTER - CANVAS HTML
============================================ */
.points-structure-master {
    background: linear-gradient(180deg, #050505 0%, #0f0f0f 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.points-structure-master::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Container do Canvas */
.points-canvas-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(10, 10, 10, 0.7);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Centralização com Flexbox */
    margin-left: auto;
    margin-right: auto;
    
    /* OU também pode usar display: flex no pai se necessário */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Canvas layers */
#points-radial-canvas,
#points-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Conteúdo sobreposto */
.points-content-overlay {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    height: 100%;
    padding: 40px;
    gap: 60px;
}

/* Colunas */
.points-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.points-col-left {
    align-items: flex-end;
}

.points-col-right {
    align-items: flex-start;
}

/* Itens individuais */
.points-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
}

.points-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.points-col-left .points-item {
    flex-direction: row-reverse;
}

.points-col-right .points-item {
    flex-direction: row;
}

/* Badges Master */
.points-badge-master {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.points-badge-master span {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
}

/* Cores dos badges */
.points-badge-master:not([class*="highlight-"]) {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: #ffffff;
}

.points-badge-master.highlight-200 {
    background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
    color: #ffffff;
}

.points-badge-master.highlight-300 {
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
    color: #1a202c;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 20px rgba(160, 174, 192, 0.3);
}

.points-badge-master.highlight-400 {
    background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
    color: #1a202c;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 20px rgba(203, 213, 224, 0.4);
}

.points-badge-master.highlight-500 {
    background: linear-gradient(135deg, #edf2f7 0%, #cbd5e0 100%);
    color: #1a202c;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 20px rgba(237, 242, 247, 0.5);
}

/* Cards Master */
.points-card-master {
    background: linear-gradient(135deg, 
        rgba(248, 248, 248, 0.95) 0%, 
        rgba(232, 232, 232, 0.95) 100%);
    color: #111111;
    padding: 1.5rem 2.5rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 300px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.points-card-master i {
    font-size: 1.5rem;
    color: #455E89;
}

.points-card-master h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.4;
}

.points-card-master:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 30px rgba(37, 99, 235, 0.3);
}

/* Centro Master */
.points-center-master {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.center-logo-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(59, 130, 246, 0.1) 30%,
        transparent 70%
    );
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.center-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    filter: brightness(1.1) contrast(1.1);
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.center-rings {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: expandRing 4s linear infinite;
}

.ring-1 {
    width: 450px;
    height: 450px;
    animation-delay: 0s;
}

.ring-2 {
    width: 500px;
    height: 500px;
    animation-delay: 1s;
}

.ring-3 {
    width: 550px;
    height: 550px;
    animation-delay: 2s;
}

@keyframes expandRing {
    0% {
        width: 400px;
        height: 400px;
        opacity: 1;
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

.center-text {
    margin-top: 30px;
    text-align: center;
    z-index: 3;
    position: relative;
}

.center-text h3 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 3px;
}

.center-text p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a0aec0;
    margin: 5px 0 0 0;
    letter-spacing: 2px;
}

/* Controles do Canvas */
.canvas-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.canvas-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.canvas-btn:hover {
    background: rgba(37, 99, 235, 0.7);
    transform: translateY(-2px);
}

.canvas-btn.active {
    background: rgba(37, 99, 235, 0.9);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

/* Legenda */
.points-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.legend-item span {
    font-weight: 600;
    color: #cbd5e0;
}

/* Responsividade */
@media (max-width: 1400px) {
    .points-canvas-container {
        height: 700px;
    }
    
    .center-logo-container {
        width: 350px;
        height: 350px;
    }
    
    .points-card-master {
        min-width: 250px;
        padding: 1.2rem 2rem;
    }
}

@media (max-width: 1200px) {
    .points-content-overlay {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 40px;
    }
    
    .points-col-left,
    .points-col-right {
        align-items: center;
    }
    
    .points-center-master {
        order: -1;
        margin-bottom: 40px;
    }
    
    .center-logo-container {
        width: 300px;
        height: 300px;
    }
    
    .points-legend {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .points-canvas-container {
        height: auto;
        min-height: 600px;
    }
    
    .center-logo-container {
        width: 250px;
        height: 250px;
    }
    
    .points-card-master {
        min-width: 200px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .points-badge-master {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .canvas-controls {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 20px;
    }
}



/* ================================
   BENEFÍCIOS - LAYOUT FINAL
================================ */
.benefits-points {
    background-color: #1a1a1a;
    padding: var(--spacing-xl) 0;
}

.benefits-header {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.section-title-benefits {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
}

.benefits-subtitle-header {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin: 0;
}

.benefits-logos {
    display: flex;
    gap: 1.5rem;
}

.benefits-logos img {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    border-radius: 50%;
    border: 1px #7a7a7a solid;
    padding: 2px;
    
    /* Efeito prateado */
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(192, 192, 192, 0.3) 25%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(192, 192, 192, 0.3) 75%,
        rgba(255, 255, 255, 0.1) 100%);
    
    /* Brilho metálico */
    box-shadow: 
        inset 0 0 10px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.1);
    
    /* Para melhorar o efeito de metal */
    position: relative;
    overflow: hidden;
}

/* Efeito de reflexo adicional (opcional) */
.benefits-logos img::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    pointer-events: none;
}

/* Efeito de transição suave para hover */
.benefits-logos img:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Grid de benefícios */
.benefits-grid-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-row {
    display: grid;
    grid-template-columns: 130px 1fr 130px 1fr;
    gap: 1.5rem;
    align-items: center;
}

/* Badge de pontos */
.benefit-pts {
    background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.benefit-pts span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

.benefit-pts.highlight {
    background: linear-gradient(135deg, #6a6a6a 0%, #4a4a4a 100%);
}

/* Card de descrição */
.benefit-desc {
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.benefit-desc h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.benefit-desc p {
    font-size: 1rem;
    color: #2a2a2a;
    line-height: 1.5;
}

.benefit-desc small {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .benefits-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .benefit-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .benefit-row {
        grid-template-columns: 1fr;
    }
}

.back-to-top {
    position: fixed;
    bottom: 90px; /* Acima do botão do WhatsApp (ajuste conforme necessário) */
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(69, 94, 137, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #3a4f73; /* Tom mais escuro do azul */
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(69, 94, 137, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Responsivo */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}
