/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --primary-purple: #8b5cf6;
    --secondary-purple: #a855f7;
    --accent-purple: #7c3aed;
    --gold: #fbbf24;
    --gold-dark: #f59e0b;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray: #6b7280;
    --gray-dark: #374151;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --gradient-purple: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-dark));
    --gradient-dark: linear-gradient(135deg, var(--primary-black), var(--secondary-black));
    --shadow-purple: 0 10px 25px rgba(139, 92, 246, 0.3);
    --shadow-gold: 0 10px 25px rgba(251, 191, 36, 0.3);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-gold);
}

/* Seleção de texto */
::selection {
    background: var(--primary-purple);
    color: var(--white);
}

/* Focus outline */
*:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--white);
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

.btn-play {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.btn-play::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-play:hover::before {
    left: 0;
}

.btn-play:hover {
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: var(--white);
}

.btn-comprar {
    background: var(--gradient-gold);
    color: var(--primary-black);
    font-weight: 700;
    width: 100%;
    justify-content: center;
}

.btn-comprar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-outline-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--primary-purple);
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-small:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.nav-logo i {
    color: var(--gold);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

/* Tribal Decoration */
.tribal-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    animation: tribalFloat 15s ease-in-out infinite;
}

.tribal-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: auto;
    max-height: 450px;
    opacity: 0.4;
    object-fit: contain;
    filter: blur(0.5px);
}

@keyframes tribalFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-10px) rotate(1deg); 
        opacity: 0.4; 
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
   
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-line {
    font-size: 2.3rem;
    display: block;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-brand {
    display: block;
    font-size: 2rem;
    color: var(--gold);
    margin-top: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    border: 3px solid var(--gold);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    transform-origin: center;
    will-change: transform;
}

.player-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Partículas Subindo */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.7;
    animation: particle-rise 8s linear infinite;
}

.particle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: particle-glow 2s ease-in-out infinite;
}

.particle-1 { left: 10%; animation-delay: 0s; }
.particle-2 { left: 20%; animation-delay: 0.8s; }
.particle-3 { left: 30%; animation-delay: 1.6s; }
.particle-4 { left: 40%; animation-delay: 2.4s; }
.particle-5 { left: 50%; animation-delay: 3.2s; }
.particle-6 { left: 60%; animation-delay: 4s; }
.particle-7 { left: 70%; animation-delay: 4.8s; }
.particle-8 { left: 80%; animation-delay: 5.6s; }
.particle-9 { left: 90%; animation-delay: 6.4s; }
.particle-10 { left: 95%; animation-delay: 7.2s; }

@keyframes particle-rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.7;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

@keyframes particle-glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--gold), 0 0 10px var(--gold);
    }
    50% {
        box-shadow: 0 0 15px var(--gold), 0 0 25px var(--gold);
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.2rem;
    animation: float-element 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    }
    50% { 
        transform: scale(1.08); 
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--secondary-black);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-modal.show .video-modal-content {
    transform: scale(1);
}

.video-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.video-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Sobre Section */
.sobre {
    padding: 6rem 0;
    background: var(--secondary-black);
    position: relative;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.sobre-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sobre-card {
    background: rgba(139, 92, 246, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sobre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.sobre-card:hover::before {
    left: 100%;
}

.sobre-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.sobre-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.card-highlight {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--gold);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-highlight i {
    color: var(--gold);
    font-size: 1.2rem;
}

.mission-points {
    list-style: none;
    margin-top: 1rem;
}

.mission-points li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.mission-points i {
    color: var(--success);
    font-size: 0.9rem;
}

.vision-goals {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.goal-item {
    text-align: center;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.goal-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.goal-text {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Valores Section */
.valores {
    padding: 6rem 0;
    background: var(--primary-black);
    position: relative;
}

.valores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.valores-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.valores-image {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    filter: blur(1px);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.valor-card {
    background: var(--secondary-black);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.valor-card:hover::before {
    transform: scaleX(1);
}

.valor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.valor-card:hover .valor-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-gold);
}

.valor-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.valor-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Contato Section */
.contato {
    padding: 6rem 0;
    background: var(--secondary-black);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-black);
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
}

.contato-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.contato-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.contato-details h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.contato-details p {
    color: var(--gray);
    line-height: 1.6;
}

.social-links-contato h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--primary-black);
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
    color: var(--primary-purple);
}

.contato-form {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.contato-form h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Orbitron', monospace;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.formulario-contato .form-group {
    margin-bottom: 1.5rem;
}

.formulario-contato .form-group input,
.formulario-contato .form-group select,
.formulario-contato .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-black);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.formulario-contato .form-group input:focus,
.formulario-contato .form-group select:focus,
.formulario-contato .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
}
.form-group label {
    margin-bottom: 6px;
    color: #fff;
    font-size: 1rem;
    opacity: 0.85;
    position: static !important;
    display: block;
}
.form-group input[type='date'] {
    margin-bottom: 0;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* Time Section */
.time {
    padding: 6rem 0;
    background: var(--primary-black);
    position: relative;
}

.equipe-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
}

.equipe-bola {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 180px;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    filter: blur(1px);
    animation: float 6s ease-in-out infinite;
}

.equipe-estatua {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 200px;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    filter: blur(1px);
    animation: float 8s ease-in-out infinite reverse;
}

.time-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.equipe-tecnica h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Orbitron', monospace;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.membro-card {
    background: var(--secondary-black);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
}

.membro-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.membro-foto {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.foto-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.membro-imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--transition);
}

.membro-card:hover .membro-imagem {
    transform: scale(1.05);
}

.membro-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.membro-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.equipe-info {
    text-align: left;
    font-size: 1.05rem;
    margin-top: 4px;
    color: #787777;
}

/* Inscrições Section */
.inscricoes {
    padding: 6rem 0;
    background: var(--secondary-black);
    position: relative;
    overflow: hidden;
}

.inscricoes-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.inscricoes-pente {
    position: absolute;
    width: 80px;
    height: auto;
    top: 50%;
    right: 8%;
    opacity: 0.2;
    animation: float 10s ease-in-out infinite;
}

.inscricoes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.categorias {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.categoria-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.categoria-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.categoria-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.categoria-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.categoria-card ul {
    list-style: none;
    margin-top: 1rem;
}

.categoria-card li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.categoria-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

.formulario-container {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.formulario-inscricao h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-black);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-purple);
    background: var(--primary-black);
    padding: 0 0.5rem;
}

/* Personal Volei Section */
.personal-trainer {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.personal-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.personal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.personal-card {
    background: var(--primary-black);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.personal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.personal-card:hover::before {
    transform: scaleX(1);
}

.personal-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.personal-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.personal-card:hover .personal-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-purple);
}

.personal-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.personal-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.personal-benefits {
    list-style: none;
    text-align: left;
}

.personal-benefits li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
}

.personal-benefits li i {
    color: var(--success);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.personal-cta {
    background: var(--primary-black);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 92, 246, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.personal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.personal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.personal-buttons .btn {
    min-width: 200px;
}

/* Responsive adjustments for Personal Volei */
@media (max-width: 768px) {
    .personal-info {
        grid-template-columns: 1fr;
    }
    
    .personal-card {
        padding: 2rem;
    }
    
    .personal-cta {
        padding: 2rem;
    }
    
    .personal-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .personal-buttons .btn {
        min-width: 250px;
    }
}

/* Loja Section */
.loja {
    padding: 6rem 0;
    background: var(--primary-black);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.produto-card {
    background: var(--secondary-black);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.produto-imagem {
    position: relative;
    height: 300px;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-placeholder {
    width: 80%;
    height: 80%;
    background: var(--primary-black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
}

.produto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.produto-card:hover .produto-img {
    transform: scale(1.05);
}

.produto-flip-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    cursor: pointer;
}

.produto-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.produto-flip-container:hover .produto-flip-card {
    transform: rotateY(180deg);
}

.produto-flip-front,
.produto-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
}

.produto-flip-back {
    transform: rotateY(180deg);
}

.produto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.produto-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.produto-info {
    padding: 2rem;
}

.produto-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.produto-info p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.produto-preco {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preco-atual {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.preco-antigo {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.produto-tamanhos {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tamanho {
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tamanho:hover {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* Depoimentos Section */
.depoimentos {
    padding: 6rem 0;
    background: var(--secondary-black);
}

.depoimentos-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.depoimento-foto {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.depoimento-texto p {
    color: var(--white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.depoimento-autor h4 {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.depoimento-autor span {
    color: var(--gray);
    font-size: 0.9rem;
}

.comunidade h3 {
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.comunidade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.comunidade-item {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.comunidade-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.comunidade-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
}

.comunidade-item h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.comunidade-item p {
    color: var(--gray);
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: var(--primary-black);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.blog-card {
    background: var(--secondary-black);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
}

.blog-card.featured {
    grid-row: span 2;
}

.blog-imagem {
    position: relative;
    height: 200px;
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder {
    width: 80%;
    height: 80%;
    background: var(--primary-black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.blog-categoria {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-meta span {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--gold);
}

.footer-slogan {
    color: var(--gold);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info p,
.horarios p {
    color: var(--gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    background: var(--primary-black);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: var(--white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--gray);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        z-index: 999;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        font-size: 1.2rem;
    }
    
    .tribal-image {
        width: 400px;
        height: auto;
        max-height: 300px;
        opacity: 0.3;
    }
    
    .nav-actions {
        display: none;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .valores-image {
        width: 180px;
        max-height: 250px;
        opacity: 0.12;
    }
    
    .equipe-bola {
        width: 140px;
        max-height: 180px;
        opacity: 0.1;
    }
    
    .equipe-estatua {
        width: 160px;
        max-height: 200px;
        opacity: 0.1;
    }
    
    .inscricoes-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-row: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .tribal-image {
        width: 300px;
        height: auto;
        max-height: 225px;
        opacity: 0.25;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .produto-flip-container {
        perspective: 800px;
    }
    
    .produto-imagem {
        height: 350px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .comunidade-grid {
        grid-template-columns: 1fr;
    }
    
    .valores-image {
        width: 140px;
        max-height: 180px;
        opacity: 0.1;
    }
    
    .equipe-bola {
        width: 100px;
        max-height: 130px;
        opacity: 0.08;
    }
    
    .equipe-estatua {
        width: 120px;
        max-height: 150px;
        opacity: 0.08;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* HERO VISUAL CENTRALIZADO - ÍCONES EM CÍRCULO AO REDOR DO LOGO MESMO À DIREITA */
.hero-visual-bvm {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  z-index: 1;
}
.hero-logo-central {
  position: absolute;
  z-index: 0;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: 520px;
  max-width: 95vw;
  max-height: 80vh;
  display: block;
  filter: drop-shadow(0 0 32px #0008);
  object-fit: contain;
}
.hero-icon {
  position: absolute;
  z-index: 3;
  opacity: 0.97;
  transition: transform 0.3s;
  width: 56px;
  height: auto;
}
.hero-icon:hover {
  transform: scale(1.15) rotate(-2deg);
  z-index: 4;
}
/* Distribuição circular ao redor do logo, mesmo à direita */
.hero-africa {
  right: 12vw;
  top: 8%;
}
.hero-homedeblack0 {
  right: 2vw;
  top: 18%;
}
.hero-homem {
  right: -4vw;
  top: 38%;
}
.hero-mulheragachada {
  right: -6vw;
  top: 60%;
}
.hero-mulhuer {
  right: 0vw;
  top: 78%;
}
.hero-pente {
  right: 10vw;
  top: 72%;
}
.hero-homemsacando {
  right: 16vw;
  top: 40%;
}
@media (max-width: 1400px) {
  .hero-visual-bvm {
    min-height: 600px;
  }
  .hero-logo-central {
    width: 500px;
    height: 320px;
    right: -8vw;
    top: 50%;
  }
  .hero-icon {
    width: 36px;
  }
  .hero-africa { right: 10vw; top: 10%; }
  .hero-homedeblack0 { right: 0vw; top: 22%; }
  .hero-homem { right: -6vw; top: 40%; }
  .hero-mulheragachada { right: -8vw; top: 62%; }
  .hero-mulhuer { right: -2vw; top: 80%; }
  .hero-pente { right: 8vw; top: 74%; }
  .hero-homemsacando { right: 14vw; top: 44%; }
}
@media (max-width: 900px) {
  .hero {
    min-height: 125vh;
    justify-content: flex-start;
    padding-top: 120px;
  }
  .hero-flex-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: 60px !important;
    padding-top: 40px;
    padding-left: 0;
  }
  .hero-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    order: 1;
    position: static;
  }
  .hero-bg-image {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin-top: 0;
    order: 2;
    position: relative;
    background: none !important;
    transform: translateX(-30px);
  }
  .hero-logo-centralizada {
    width: 420px;
    max-width: 98vw;
    margin-bottom: 32px;
    position: relative;
  }
  .hero-bola-animada {
    width: 260px;
    max-width: 90vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .hero-logo-centralizada {
    width: 260px;
    max-width: 98vw;
  }
  .hero-bola-animada {
    width: 180px;
    max-width: 90vw;
  }
}

/* HERO BACKGROUND IMAGE FIXA NA DIREITA - AJUSTADA MAIS PARA ESQUERDA */
.hero-bg-image {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 0;
  background: none !important;
}
.hero-bg-image > * {
  display: block;
}
.hero-logo-centralizada {
  position: relative;
  z-index: 2;
  width: 840px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s;
}
.hero-logo-centralizada.pulsar {
  animation: pulsarLogo 1s ease;
}
.hero-bola-animada {
  position: absolute;
  left: 50%;
  top: 36%;
  transform: translate(-50%, -60%);
  width: 380px;
  max-width: 60%;
  z-index: 1;
  opacity: 0.92;
}
.hero-bola-animada.girar {
  animation: girarBola 1.0s linear infinite;
}
@keyframes girarBola {
  0% { transform: translate(-50%, -60%) rotate(0deg); }
  100% { transform: translate(-50%, -60%) rotate(360deg); }
}
@keyframes pulsarLogo {
  0% { transform: scale(1); }
  30% { transform: scale(1.13); }
  60% { transform: scale(0.93); }
  100% { transform: scale(1); }
}
@media (max-width: 900px) {
  .hero-bg-image {
    height: 220px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .hero-logo-centralizada {
    width: 120px;
    position: static;
    margin: 0 auto 12px auto;
    display: block;
  }
  .hero-bola-animada {
    position: static;
    display: block;
    margin: 0 auto;
    width: 80px;
    left: auto;
    top: auto;
    transform: none;
    max-width: 100px;
  }
}
@media (max-width: 600px) {
  .hero-bg-image {
    height: 110px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .hero-logo-centralizada {
    width: 70px;
    position: static;
    margin: 0 auto 8px auto;
    display: block;
  }
  .hero-bola-animada {
    position: static;
    display: block;
    margin: 0 auto;
    width: 40px;
    left: auto;
    top: auto;
    transform: none;
    max-width: 60px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero-content, .hero-text {
  position: relative;
  z-index: 2;
}

.inscricao-contato-info {
  margin: 32px auto 0 auto;
  max-width: 500px;
  background: #18151e;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0002;
  padding: 32px 24px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.6;
}
.inscricao-contato-info div {
  margin-bottom: 18px;
}
.inscricao-contato-info div:last-child {
  margin-bottom: 0;
}
.inscricao-whatsapp-btn {
  text-align: center;
  margin: 32px 0 0 0;
}
.inscricao-whatsapp-btn .btn {
  font-size: 1.2rem;
  padding: 16px 32px;
  display: inline-block;
}
@media (max-width: 600px) {
  .inscricao-contato-info {
    max-width: 98vw;
    padding: 18px 6vw;
    font-size: 0.98rem;
  }
  .inscricao-whatsapp-btn .btn {
    width: 100%;
    font-size: 1rem;
    padding: 14px 0;
  }
}

@media (max-width: 600px) {
  .contato-whatsapp {
    padding: 32px 0 18px 0 !important;
    text-align: center;
    overflow-x: hidden;
  }
  .contato-whatsapp h2 {
    font-size: 1.3rem !important;
    margin-bottom: 18px !important;
  }
  .contato-whatsapp .btn {
    width: 100%;
    font-size: 1.05rem !important;
    padding: 14px 0 !important;
    margin-bottom: 24px;
  }
  .contato-whatsapp .contato-imgs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 36px auto 0 auto;
    gap: 0;
  }
  .contato-whatsapp .contato-imgs img {
    width: 160px;
    max-width: 22vw;
    height: auto;
    opacity: 0.88;
  }
}

@media (max-width: 900px) {
  .contato-whatsapp .contato-imgs {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
    max-width: 100vw;
  }
  .contato-whatsapp .contato-imgs img {
    width: 80px !important;
    max-width: 40vw !important;
  }
}

.hero-flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 64px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 420px;
  padding: 0 5vw;
}
.hero-content {
  flex: 1 1 0;
  min-width: 260px;
  max-width: 600px;
  z-index: 2;
  padding-left: 0;
}
.hero-bg-image {
  flex: 0 0 auto;
  width: 420px;
  min-width: 220px;
  max-width: 40vw;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: none !important;
}
.hero-logo-centralizada {
  position: relative;
  z-index: 2;
  width: 840px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-bola-animada {
  position: absolute;
  left: 52%;
  top: 33%;
  transform: translate(-50%, -60%);
  width: 380px;
  max-width: 60%;
  z-index: 1;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .hero-bg-image {
    height: 220px;
    justify-content: center;
  }
  .hero-logo-centralizada {
    width: 420px;
    max-width: 98vw;
    margin-bottom: 32px;
    position: relative;
  }
  .hero-bola-animada {
    width: 260px;
    max-width: 90vw;
    position: absolute;
    left: 60%;
    top: 11%;
    
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .hero-bg-image {
    height: 110px;
    justify-content: center;
  }
  .hero-logo-centralizada {
    width: 260px;
    max-width: 98vw;
  }
  .hero-bola-animada {
    width: 180px;
    max-width: 90vw;
  }
}

/* Sobre Background Images */
.sobre-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sobre-africa {
    position: absolute;
    width: 120px;
    height: auto;
    top: 10%;
    right: 5%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.sobre-homedeblack {
    position: absolute;
    width: 100px;
    height: auto;
    bottom: 15%;
    left: 5%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.faq-homem {
    position: absolute;
    width: 100px;
    height: auto;
    top: 20%;
    left: 3%;
    opacity: 0.25;
    animation: float 7s ease-in-out infinite;
}

.faq-mulhuer {
    position: absolute;
    width: 110px;
    height: auto;
    bottom: 20%;
    right: 3%;
    opacity: 0.25;
    animation: float 9s ease-in-out infinite reverse;
}

.faq-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-purple);
    border-color: rgba(139, 92, 246, 0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-question h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.faq-answer {
    color: var(--gray-light);
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--gold);
    font-weight: 600;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    /* Background images responsive */
    .sobre-africa {
        width: 80px;
        top: 5%;
        right: 3%;
    }
    
    .sobre-homedeblack {
        width: 70px;
        bottom: 10%;
        left: 3%;
    }
    
    .faq-homem {
        width: 70px;
        top: 15%;
        left: 2%;
    }
    
    .faq-mulhuer {
        width: 80px;
        bottom: 15%;
        right: 2%;
    }
    
    .inscricoes-pente {
        width: 60px;
        top: 40%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .faq-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Background images mobile */
    .sobre-africa {
        width: 60px;
        top: 3%;
        right: 2%;
    }
    
    .sobre-homedeblack {
        width: 50px;
        bottom: 5%;
        left: 2%;
    }
    
    .faq-homem {
        width: 50px;
        top: 10%;
        left: 1%;
    }
    
    .faq-mulhuer {
        width: 60px;
        bottom: 10%;
        right: 1%;
    }
    
    .inscricoes-pente {
        width: 40px;
        top: 30%;
        right: 3%;
    }
}

@media (max-width: 1200px) {
  .hero-flex-container {
    max-width: 98vw;
    gap: 32px;
    padding: 0 2vw;
  }
}

.destaque-quilombo {
  color: #a259ff; /* Roxo vibrante, pode trocar para amarelo se preferir: #ffd700 */
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 1.08em;
  padding: 0 2px;
}

 