/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight-void: #0B0E14;
    --electric-cyan: #00F0FF;
    --hyper-purple: #7000FF;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.7);
    --gradient: linear-gradient(135deg, var(--electric-cyan), var(--hyper-purple));
    --gradient-text: linear-gradient(135deg, var(--white), var(--electric-cyan));
    --shadow-glow: 0 0 20px rgba(0, 240, 255, 0.3), 0 0 40px rgba(0, 240, 255, 0.1);
    --shadow-glow-hover: 0 0 30px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 240, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--midnight-void);
}

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

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 20px;
    gap: 3rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}


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

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

.nav-menu a:hover {
    color: var(--electric-cyan);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
    padding-bottom: 8rem;
    overflow: hidden;
    background-color: var(--midnight-void);
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 0.1s ease-out;
    transform: scale(1.05);
}

.hero-image.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 14, 20, 0.9) 0%, rgba(11, 14, 20, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    margin-bottom: -2rem;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.hero-title:hover {
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
    transform: scale(1.05);
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Botões */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--electric-cyan);
    color: var(--midnight-void);
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    border: 2px solid var(--electric-cyan);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-hover);
    background: var(--electric-cyan);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-cyan);
    border-color: var(--electric-cyan);
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    color: var(--electric-cyan);
    box-shadow: var(--shadow-glow);
}

/* Seções Gerais */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Seção Diferenciais */
.diferenciais {
    background: var(--midnight-void);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.diferenciais-grid .diferencial-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.diferenciais-grid .diferencial-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.diferenciais-grid .diferencial-card:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    max-width: calc(50% - 1rem);
}

.diferenciais-grid .diferencial-card:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
}

.diferenciais-grid .diferencial-card:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
}

.diferenciais-grid .diferencial-card:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: 4;
    justify-self: center;
    max-width: calc(50% - 1rem);
}

.diferencial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--electric-cyan);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 240, 255, 0.1);
    transition: transform 0.8s ease, box-shadow 0.8s ease, border-color 0.8s ease, filter 0.8s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.diferencial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--electric-cyan);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.6));
}

.diferencial-icon {
    font-size: 3.5rem;
    color: var(--electric-cyan);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    width: fit-content;
}

.diferencial-title {
    font-family: 'Sora', sans-serif;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.diferencial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    flex-grow: 1;
}

.diferencial-text .highlight {
    color: var(--electric-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* Seção Produtos */
.produtos {
    background: var(--midnight-void);
    overflow: visible;
}

.produtos .container {
    overflow: visible;
}

.produtos .section-subtitle {
    margin-bottom: 0.5rem;
}

.produtos-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 0;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 0.5rem 0 5rem 0;
    margin-bottom: 2rem;
}

/* Setas do carrossel — visíveis apenas no mobile */
.produtos-carousel-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.4);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--electric-cyan);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.produtos-carousel-arrow .material-icons {
    font-size: 28px;
}
.produtos-carousel-arrow:hover:not(:disabled) {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--electric-cyan);
    color: var(--white);
}
.produtos-carousel-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.produtos-carousel-arrow--prev {
    left: 8px;
}
.produtos-carousel-arrow--next {
    right: 8px;
}

.produtos-carousel-container {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
}

.produtos-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.produto-card-carousel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s ease,
                box-shadow 0.5s ease,
                border-color 0.5s ease;
    border-top: 4px solid var(--electric-cyan);
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    opacity: 0.6;
    transform: scale(0.9);
    transform-origin: center center;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
    cursor: pointer;
}

.produto-card-carousel.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--electric-cyan);
    box-shadow: var(--shadow-glow);
    z-index: 2;
}

.produto-card-carousel:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--electric-cyan);
    box-shadow: var(--shadow-glow-hover);
    z-index: 3;
}

.produto-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.produto-icon .material-icons {
    font-size: 4rem;
    color: var(--electric-cyan);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.produto-card-carousel h3 {
    font-family: 'Sora', sans-serif;
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.produto-card-carousel p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}

.produto-preco {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--electric-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.produto-btn {
    margin-top: 1.5rem;
    text-align: center;
    width: 100%;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--electric-cyan);
    color: var(--electric-cyan);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover:not(:disabled) {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(0, 240, 255, 0.3);
}

.carousel-btn .material-icons {
    font-size: 28px;
}

/* Seção Clientes */
.clientes {
    background: var(--midnight-void);
}

.clientes-video-wrapper {
    margin-top: 2rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.clientes-video-container {
    max-width: 900px;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.clientes-video-container:hover {
    border-color: var(--electric-cyan);
    box-shadow: var(--shadow-glow);
}

.clientes-video {
    display: block;
    width: 100%;
    height: auto;
}

.clientes-video-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    padding: 1rem 1.5rem;
    margin: 0;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
}

.clientes-projeto-desc {
    max-width: 900px;
    margin: 0 auto;
}

.clientes-projeto-texto {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.clientes-projeto-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.clientes-projeto-icon {
    font-size: 1.25rem;
    color: var(--electric-cyan);
}

.clientes-projeto-vias {
    margin-left: auto;
    color: var(--electric-cyan);
    font-weight: 600;
}

.clientes-projeto-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.clientes-tag {
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.cliente-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cliente-card:hover {
    border-color: var(--electric-cyan);
    box-shadow: var(--shadow-glow);
}

.cliente-logo {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--electric-cyan);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.cliente-testimonial {
    font-style: italic;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cliente-name {
    color: var(--text-light);
    font-weight: 600;
}

/* Seção Tecnologias */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--electric-cyan);
    background: rgba(0, 240, 255, 0.1);
}

.tech-name {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.tech-item:hover .tech-name {
    color: var(--electric-cyan);
}

.tech-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
    max-width: 100%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.tech-item:hover .tech-desc {
    opacity: 1;
    max-height: 120px;
}

/* Seção Nossos Valores */
.nossos-valores {
    background: var(--midnight-void);
}

.nossos-valores .section-title {
    margin-bottom: 2.5rem;
}

.valores-content {
    max-width: 960px;
    margin: 0 auto;
}

.valores-bloco-titulo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.valores-paragrafo {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.valores-intro {
    margin-bottom: 2rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.valores-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.valores-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--electric-cyan);
}

.valores-card-central {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 1rem);
}

.valores-card-icon {
    font-size: 3rem;
    color: var(--electric-cyan);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}

.valores-card-titulo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--electric-cyan);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
}

.valores-item-num {
    color: var(--electric-cyan);
    margin-right: 0.25rem;
}

.valores-lista-chave {
    list-style: none;
    margin: 0.75rem 0 0 0;
    padding: 0;
}

.valores-lista-chave li {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.valores-destaque {
    color: var(--electric-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Seção Quem Somos */
.quem-somos {
    background: var(--midnight-void);
}

.quem-somos .section-title {
    margin-bottom: 4rem;
}

.quem-somos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.quem-somos-col-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quem-somos-titulo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.quem-somos-subtitulo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--electric-cyan);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.quem-somos-paragrafo {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.quem-somos-destaque {
    color: var(--electric-cyan);
    font-weight: 600;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
}

.quem-somos-separador {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), rgba(112, 0, 255, 0.4), transparent);
    margin: 1.5rem 0;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.quem-somos-bloco-titulo {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.quem-somos-lista {
    list-style: none;
    margin: 0 0 1.25rem 0;
    padding: 0;
}

.quem-somos-lista li {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.quem-somos-citacao {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    margin: 0;
    padding: 1.25rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(var(--midnight-void), var(--midnight-void)) padding-box,
                linear-gradient(135deg, var(--electric-cyan), var(--hyper-purple)) border-box;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.25),
                0 0 30px rgba(112, 0, 255, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.quem-somos-citacao:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5),
                0 0 50px rgba(112, 0, 255, 0.3),
                0 0 60px rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.quem-somos-col-visual {
    display: flex;
    justify-content: center;
    align-items: start;
}

.quem-somos-foto-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 6px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--electric-cyan), var(--hyper-purple));
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.25), 0 0 50px rgba(112, 0, 255, 0.15);
}

.quem-somos-foto-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 240, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
    position: relative;
}

.quem-somos-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1), filter 0.6s ease;
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.quem-somos-foto-wrapper:hover .quem-somos-foto {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.15) saturate(1.2) drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
}

.quem-somos-foto-placeholder .quem-somos-foto-icon {
    font-size: 4rem;
    color: rgba(0, 240, 255, 0.4);
}

.quem-somos-foto-texto {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--electric-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Seção Contato */
.contato {
    background: var(--midnight-void);
}

.contato-cta {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.contato-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
}

.info-item h3 {
    font-family: 'Sora', sans-serif;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--midnight-void);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--midnight-void);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 240, 255, 0.2);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .quem-somos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quem-somos-titulo {
        font-size: 1.5rem;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }

    .valores-card-central {
        max-width: 100%;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid .diferencial-card:nth-child(1),
    .diferenciais-grid .diferencial-card:nth-child(2),
    .diferenciais-grid .diferencial-card:nth-child(3),
    .diferenciais-grid .diferencial-card:nth-child(4),
    .diferenciais-grid .diferencial-card:nth-child(5),
    .diferenciais-grid .diferencial-card:nth-child(6) {
        grid-column: 1;
        grid-row: auto;
        max-width: none;
        justify-self: stretch;
    }

    .produtos-grid,
    .clientes-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .produto-card-carousel {
        flex: 0 0 calc(100% - 2rem);
        min-width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
    }

    .produtos-carousel-track {
        padding: 0 1rem;
    }

    .produtos-carousel-arrow {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
