/* ============================================
   Brasmobi - Proposta 11: Design Futurista com Tons Claros
   ============================================ */

:root {
    --light-blue: #60a5fa;
    --light-purple: #a78bfa;
    --light-pink: #f472b6;
    --light-cyan: #22d3ee;
    --light-bg: #ffffff;
    --light-card: #f8fafc;
    --light-border: #e2e8f0;
    --dark-text: #0f172a;
    --text-gray: #64748b;
    --white: #ffffff;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--light-bg);
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Navigation Futurista Light */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--light-border);
    box-shadow: 0 4px 30px rgba(96, 165, 250, 0.1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 8px 40px rgba(96, 165, 250, 0.15);
    border-bottom: 2px solid var(--light-blue);
}

.navbar-logo {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
    
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    margin: 0 0.75rem;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue), var(--light-purple));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--light-blue) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 16px;
        border: 1px solid var(--light-border);
        box-shadow: 0 10px 40px rgba(96, 165, 250, 0.1);
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem 0 !important;
    }
}

/* Hero Section Futurista Light */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #faf5ff 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0px;
    width: 100%;
    max-width: 100vw;
}

.hero-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(96, 165, 250, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: geometric-move 30s linear infinite;
    opacity: 0.6;
}

@keyframes geometric-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: shape-float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.3) 0%, transparent 70%);
    bottom: 20%;
    left: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, transparent 70%);
    top: 50%;
    right: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes shape-float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(50px, -50px) scale(1.1);
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-gradient-orb {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: orb-pulse 8s ease-in-out infinite;
}

@keyframes orb-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.hero-content-light {
    position: relative;
    z-index: 2;
    color: var(--dark-text);
}

.hero-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.15);
    transition: all 0.3s ease;
}

.hero-badge-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.25);
    border-color: var(--light-blue);
}

.badge-icon-light {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
}

.badge-text-light {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-display);
}

.hero-title-light {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    letter-spacing: -2px;
}

.title-line-light {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.title-line-light.accent {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple), var(--light-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 5s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(10deg); }
}

@media (max-width: 768px) {
    .hero-title-light {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-badge-light {
        padding: 0.5rem 1rem;
    }
    
    .badge-text-light {
        font-size: 0.75rem;
    }
}

.hero-subtitle-light {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 90%;
}

@media (max-width: 768px) {
    .hero-subtitle-light {
        font-size: 1rem;
        max-width: 100%;
    }
}

.hero-stats-light {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-light-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
    flex: 1;
    min-width: 120px;
}

.stat-light-card:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
}

.stat-icon-light {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.stat-icon-light i {
    font-size: 1.25rem;
    color: var(--white);
}

.stat-content-light {
    display: flex;
    flex-direction: column;
}

.stat-number-light {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-text);
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label-light {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-display);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-stats-light {
        gap: 1rem;
    }
    
    .stat-light-card {
        flex: 1;
        min-width: calc(50% - 0.5rem);
        padding: 1rem;
    }
    
    .stat-number-light {
        font-size: 1.5rem;
    }
}

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

@media (max-width: 768px) {
    .hero-buttons-light {
        flex-direction: column;
        gap: 1rem;
    }
}

.btn-light-futuristic {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-light-futuristic:hover::before {
    left: 100%;
}

.btn-light-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.4);
    color: var(--white);
}

.btn-light-outline-futuristic {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    color: var(--dark-text);
    border: 2px solid rgba(96, 165, 250, 0.3);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
}

.btn-light-outline-futuristic:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.3);
}

.hero-visual-light {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card-light {
    position: relative;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(96, 165, 250, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: glass-float 6s ease-in-out infinite;
}

.glass-card-light:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(96, 165, 250, 0.3);
}

@keyframes glass-float {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-15px);
    }
}

.glass-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: reflection-sweep 4s linear infinite;
}

@keyframes reflection-sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.glass-content-light {
    position: relative;
    z-index: 1;
    text-align: center;
}

.glass-icon-light {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.glass-content-light h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-text);
    font-family: var(--font-display);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.glass-content-light p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .hero-visual-light {
        height: 300px;
        margin-top: 3rem;
    }
    
    .glass-card-light {
        width: 280px;
        height: 280px;
    }
    
    .glass-icon-light {
        font-size: 3rem;
    }
}

/* Sections */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
    padding: 6rem 0;
}

.section-label-light {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--light-blue);
    margin-bottom: 1rem;
    display: inline-block;
    font-family: var(--font-display);
}

.section-title-light {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 3rem;
    line-height: 1.2;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .section-title-light {
        font-size: 2rem;
    }
}

/* Sobre Section */
.sobre-section {
    background: var(--white);
}

.lead-light {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.grid-item-light-futuristic {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
}

.grid-item-light-futuristic:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
}

.item-icon-light {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.grid-item-light-futuristic:hover .item-icon-light {
    transform: scale(1.1) rotate(5deg);
}

.item-icon-light i {
    font-size: 2rem;
    color: var(--white);
}

.grid-item-light-futuristic h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.grid-item-light-futuristic p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .about-grid-light {
        grid-template-columns: 1fr;
    }
}

/* Serviços Section */
.servicos-section {
    background: var(--light-card);
}

.service-card-light-futuristic {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
}

.service-card-light-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), var(--light-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-light-futuristic:hover::before {
    transform: scaleX(1);
}

.service-card-light-futuristic:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
}

.service-number-light {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(96, 165, 250, 0.1);
    font-family: var(--font-display);
    line-height: 1;
}

.service-icon-light-futuristic {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.service-card-light-futuristic:hover .service-icon-light-futuristic {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-light-futuristic i {
    font-size: 2rem;
    color: var(--white);
}

.service-card-light-futuristic h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.service-card-light-futuristic p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Eventuxi Section */
.eventuxi-section {
    background: var(--light-card);
}

.eventuxi-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
    transition: all 0.3s ease;
}

.eventuxi-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
    border-color: var(--light-blue);
}

.eventuxi-logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

@media (max-width: 768px) {
    .eventuxi-logo {
        max-height: 150px;
    }
}

/* Jogos Section */
.jogos-section {
    background: var(--white);
}

.game-card-light-futuristic {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
}

.game-card-light-futuristic:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
}

.game-image-light {
    width: 100%;
    height: 250px;
    background: var(--light-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

.game-image-light::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card-light-futuristic:hover .game-image-light::after {
    opacity: 1;
}

.game-image-light img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.game-card-light-futuristic:hover .game-image-light img {
    transform: scale(1.05);
}

.game-content-light {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-content-light h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.game-content-light p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-game-light-futuristic {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
}

.btn-game-light-futuristic:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.4);
    color: var(--white);
}

.btn-store-light-futuristic {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    color: var(--dark-text);
    border: 2px solid rgba(96, 165, 250, 0.3);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-display);
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
}

.btn-store-light-futuristic:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.3);
}

/* Clientes Section */
.clientes-section {
    background: var(--light-card);
}

.client-card-light-futuristic {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
}

.client-card-light-futuristic:hover {
    border-color: var(--light-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
}

.client-name-light {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

/* Equipe Section */
.equipe-section {
    background: var(--white);
}

.team-card-light-futuristic {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
}

.team-card-light-futuristic:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
}

.team-image-light {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-card);
    position: relative;
}

.team-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(167, 139, 250, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-card-light-futuristic:hover .team-overlay-light {
    opacity: 1;
}

.team-image-light img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card-light-futuristic:hover .team-image-light img {
    transform: scale(1.05);
}

.team-info-light {
    padding: 2rem;
}

.team-info-light h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.team-role-light {
    color: var(--light-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-display);
}

.team-bio-light {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Layout Horizontal para Equipe */
.team-card-light-futuristic-horizontal {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    isolation: isolate;
}

.team-card-light-futuristic-horizontal:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
    box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
}

.team-thumb-light {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--light-card);
    border: 3px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.team-card-light-futuristic-horizontal:hover .team-thumb-light {
    border-color: var(--light-blue);
    transform: scale(1.05);
}

.team-thumb-light img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.team-card-light-futuristic-horizontal:hover .team-thumb-light img {
    transform: scale(1.1);
    filter: none;
    -webkit-filter: none;
}

.team-card-light-futuristic-horizontal .team-info-light {
    padding: 0;
    flex: 1;
}

.team-card-light-futuristic-horizontal .team-info-light h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-card-light-futuristic-horizontal .team-role-light {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.team-card-light-futuristic-horizontal .team-bio-light {
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .team-card-light-futuristic-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .team-thumb-light {
        width: 120px;
        height: 120px;
    }
    
    .team-card-light-futuristic-horizontal .team-info-light h3 {
        font-size: 1.1rem;
    }
}

/* Contato Section */
.contato-section {
    background: var(--light-card);
}

.contact-form-light-futuristic .form-group-light-futuristic {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-light-futuristic {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    color: var(--dark-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-family: var(--font-body);
}

.form-control-light-futuristic:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.input-line-light {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-blue), var(--light-purple));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.form-control-light-futuristic:focus ~ .input-line-light {
    width: 100%;
}

.contact-form-light-futuristic label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.contact-form-light-futuristic .form-control-light-futuristic:focus + label,
.contact-form-light-futuristic .form-control-light-futuristic:not(:placeholder-shown) + label,
.contact-form-light-futuristic label.active {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.75rem;
    background: var(--light-card);
    padding: 0 0.5rem;
    color: var(--light-blue);
    font-weight: 700;
}

.btn-submit-light-futuristic {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

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

.btn-submit-light-futuristic:hover::before {
    left: 100%;
}

.btn-submit-light-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.4);
}

.form-message-light-futuristic {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    display: none;
}

.form-message-light-futuristic.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid #10b981;
    display: block;
}

.form-message-light-futuristic.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid #ef4444;
    display: block;
}

/* Footer */
.footer-light-futuristic {
    background: var(--dark-text);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-light-futuristic h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.footer-light-futuristic p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-light-futuristic i {
    margin-right: 0.5rem;
    color: var(--light-blue);
}

.social-links-light-futuristic {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links-light-futuristic a {
    width: 45px;
    height: 45px;
    background: rgba(96, 165, 250, 0.1);
    color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-light-futuristic a:hover {
    background: linear-gradient(135deg, var(--light-blue), var(--light-purple));
    border-color: var(--light-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.3);
}

.copyright-light-futuristic {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-top: 2rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-buttons-light .btn {
        width: 100%;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .service-card-light-futuristic,
    .game-card-light-futuristic,
    .team-card-light-futuristic {
        margin-bottom: 2rem;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        width: 150px;
        height: 150px;
    }
}

