/* Reset e Variáveis */
:root {
    --primary-blue: #2A5B9C;
    --secondary-gray: #6B7280;
    --accent-blue: #60A5FA;
    --light-bg: #1E293B; /* Escurecido para contraste */
    --dark-bg: #0F172A;
    --text-dark: #F1F5F9; /* Texto claro para contraste */
    --text-light: #94A3B8;
    --card-bg: #1E293B; /* Fundo dos cards */
    --border-color: #334155;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    --gradient-dark: linear-gradient(135deg, #1E3A8A, #3B82F6);
    --gradient-card: linear-gradient(145deg, #1E293B, #0F172A);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
	color:var(--primary-blue);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.bg-white{
	background: var(--white);
	border-radius: 50%;
}

i.blue{
	color: var(--primary-blue);
}	

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.2rem;
}

.logo-text strong {
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.cta-button {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
    margin-top: 60px;
}

.dashboard-preview {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.dashboard-preview img {border-radius: var(--radius-lg);}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 50px;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 30px;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.solution-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.solution-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -9px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bi{
	color: var(--text-light);
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

/* Differential */
.differential {
    background: var(--light-bg);
}

.differential-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: var(--primary-blue);
    font-weight: bold;
}

.differential-visual {
    position: relative;
    height: 400px;
}

/* Remova ou comente os estilos do hexagon e adicione estes: */

.differential-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.ai-star-container {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Estrela principal de IA */
.ai-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    animation: starPulse 4s ease-in-out infinite;
}

.star-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 
        0 0 30px rgba(96, 165, 250, 0.8),
        0 0 60px rgba(42, 91, 156, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.star-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-blue), 
        transparent);
    border-radius: 2px;
    transform-origin: 0 50%;
}

/* Configuração dos raios */
.ray-1 { width: 100px; height: 4px; transform: translate(0, -50%) rotate(0deg); }
.ray-2 { width: 100px; height: 4px; transform: translate(0, -50%) rotate(45deg); }
.ray-3 { width: 100px; height: 4px; transform: translate(0, -50%) rotate(90deg); }
.ray-4 { width: 100px; height: 4px; transform: translate(0, -50%) rotate(135deg); }
.ray-5 { width: 100px; height: 4px; transform: translate(0, -50%) rotate(180deg); }
.ray-6 { width: 100px; height: 4px; transform: translate(0, -50%) rotate(225deg); }
.ray-7 { width: 100px; height: 4px; transform: translate(0, -50%) rotate(270deg); }
.ray-8 { width: 100px; height: 4px; transform: translate(0, -50%) rotate(315deg); }

/* Anéis concêntricos */
.ai-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.ring-1 {
    width: 200px;
    height: 200px;
    border-color: var(--accent-blue);
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    width: 250px;
    height: 250px;
    border-color: var(--primary-blue);
    animation: ringPulse 4s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    border-color: rgba(96, 165, 250, 0.2);
    animation: ringPulse 5s ease-in-out infinite 1s;
}

/* Partículas orbitando */
.ai-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.particle-1 {
    animation: orbit1 6s infinite;
    background: #60A5FA;
}
.particle-2 {
    animation: orbit2 8s infinite;
    background: #3B82F6;
}
.particle-3 {
    animation: orbit3 10s infinite;
    background: #2A5B9C;
}
.particle-4 {
    animation: orbit4 7s infinite;
    background: #93C5FD;
}

/* Animações */
@keyframes starPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        filter: brightness(1.2);
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

@keyframes orbit1 {
    0% {
        transform: 
            rotate(0deg) 
            translateX(150px) 
            rotate(0deg);
    }
    100% {
        transform: 
            rotate(360deg) 
            translateX(150px) 
            rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: 
            rotate(90deg) 
            translateX(125px) 
            rotate(-90deg);
    }
    100% {
        transform: 
            rotate(450deg) 
            translateX(125px) 
            rotate(-450deg);
    }
}

@keyframes orbit3 {
    0% {
        transform: 
            rotate(180deg) 
            translateX(100px) 
            rotate(-180deg);
    }
    100% {
        transform: 
            rotate(540deg) 
            translateX(100px) 
            rotate(-540deg);
    }
}

@keyframes orbit4 {
    0% {
        transform: 
            rotate(270deg) 
            translateX(175px) 
            rotate(-270deg);
    }
    100% {
        transform: 
            rotate(630deg) 
            translateX(175px) 
            rotate(-630deg);
    }
}

/* Efeito de brilho nos raios */
.star-ray {
    animation: rayGlow 2s ease-in-out infinite;
}

.star-ray:nth-child(2n) {
    animation-delay: 0.5s;
}

@keyframes rayGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(96, 165, 250, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(96, 165, 250, 0.8);
    }
}

/* Versão simplificada para mobile */
@media (max-width: 768px) {
    .differential-visual {
        height: 300px;
    }
    
    .ai-star-container {
        width: 250px;
        height: 250px;
    }
    
    .ai-star {
        width: 100px;
        height: 100px;
    }
    
    .star-core {
        width: 30px;
        height: 30px;
    }
    
    .star-ray {
        height: 3px;
    }
    
    .ray-1, .ray-2, .ray-3, .ray-4,
    .ray-5, .ray-6, .ray-7, .ray-8 {
        width: 80px;
    }
    
    .ring-1 { width: 150px; height: 150px; }
    .ring-2 { width: 200px; height: 200px; }
    .ring-3 { width: 250px; height: 250px; }
    
    @keyframes orbit1 {
        0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
    }
    
    @keyframes orbit2 {
        0% { transform: rotate(90deg) translateX(80px) rotate(-90deg); }
        100% { transform: rotate(450deg) translateX(80px) rotate(-450deg); }
    }
    
    @keyframes orbit3 {
        0% { transform: rotate(180deg) translateX(60px) rotate(-180deg); }
        100% { transform: rotate(540deg) translateX(60px) rotate(-540deg); }
    }
    
    @keyframes orbit4 {
        0% { transform: rotate(270deg) translateX(120px) rotate(-270deg); }
        100% { transform: rotate(630deg) translateX(120px) rotate(-630deg); }
    }
}

/* Versão acessível - reduz movimento se preferido */
@media (prefers-reduced-motion: reduce) {
    .ai-star,
    .star-ray,
    .ai-ring,
    .ai-particle {
        animation: none !important;
    }
    
    .ai-star {
        filter: brightness(1.2);
    }
    
    .ai-ring {
        opacity: 0.1;
    }
}

/* Adicione ao seu style.css */

/* Efeito de partículas digitais flutuando */
.ai-digital-particle {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--accent-blue);
    opacity: 0;
    animation: digitalFloat 8s linear infinite;
}

@keyframes digitalFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) rotate(360deg);
        opacity: 0;
    }
}

/* Efeito de conexão neural entre partículas */
.ai-neural-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-blue), 
        transparent);
    opacity: 0.3;
    animation: neuralPulse 3s ease-in-out infinite;
}

@keyframes neuralPulse {
    0%, 100% {
        opacity: 0.1;
        width: 0;
    }
    50% {
        opacity: 0.5;
        width: 100%;
    }
}

/* Texto "AI" flutuante (opcional) */
.ai-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 24px;
    color: white;
    text-shadow: 
        0 0 10px var(--accent-blue),
        0 0 20px var(--accent-blue),
        0 0 30px var(--accent-blue);
    opacity: 0.8;
    animation: aiLabelGlow 3s ease-in-out infinite;
    z-index: 15;
}

@keyframes aiLabelGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Efeito de digital scan (como um scanner passando) */
.ai-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-blue), 
        transparent);
    box-shadow: 0 0 10px var(--accent-blue);
    animation: scan 3s linear infinite;
    opacity: 0;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Responsividade extra */
@media (max-width: 480px) {
    .ai-star-container {
        width: 200px;
        height: 200px;
    }
    
    .ai-star {
        width: 80px;
        height: 80px;
    }
    
    .ai-label {
        font-size: 18px;
    }
}

/* Identity */
.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.identity-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.logo-display {
    margin-top: 20px;
}

.logo-preview {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.logo-km {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
}

.color-palette {
    margin-top: 20px;
}

.color-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
}

.color-sample {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
}

.primary-color .color-sample {
    background: var(--primary-blue);
}

.secondary-color .color-sample {
    background: var(--secondary-gray);
}

.accent-color .color-sample {
    background: var(--accent-blue);
}

.color-info {
    flex: 1;
}

.color-info strong {
    display: block;
    margin-bottom: 5px;
}

.color-info span {
    display: block;
    font-family: monospace;
    color: var(--text-light);
    margin-bottom: 5px;
}

.typography-display {
    margin-top: 20px;
}

.font-sample {
    font-size: 2rem;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
}

.unbounded-bold {
    font-weight: 700;
}

.unbounded-regular {
    font-weight: 400;
}

.unbounded-light {
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    font-family: 'Unbounded', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-blue);
}


/* Estilos para a nova seção de vídeo */
.video-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a2238 100%);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: var(--gradient-card);
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(42, 91, 156, 0.1), rgba(96, 165, 250, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transform: scale(0.9);
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.5);
}

.video-caption {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.video-caption h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.video-caption p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
	padding-bottom: 45px;
}

.video-feature {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    min-width: 180px;
}

.video-feature .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

.video-feature h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1rem;
}

.video-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}