
.sobre-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #88d3ce, #6e45e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
}

.sobre-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}


.historia-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.historia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(110, 69, 226, 0.1), transparent 70%);
    z-index: -1;
}

.historia-content {
    display: block;
}

.historia-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #88d3ce;
    font-weight: 600;
    text-align: center;
}

.historia-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-align: center;
}


.destaques-historia {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.destaque-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 150px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.destaque-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.destaque-numero {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.destaque-texto {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #ffffff;
}


.valores-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    text-align: center;
}

.valores-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff5e7d 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    z-index: -1;
}

.valores-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #88d3ce;
    font-weight: 600;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.valor-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6e45e2, transparent, #88d3ce);
    z-index: -1;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.valor-card:hover::before {
    opacity: 1;
    animation: borderAnimation 3s linear infinite;
}

.valor-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.valor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #88d3ce;
    font-weight: 600;
}

.valor-card p {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 0;
    color: #ffffff;
}

.valor-card ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.valor-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    opacity: 0.9;
    color: #ffffff;
}

.valor-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #88d3ce;
    font-weight: bold;
}


.infraestrutura-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.infraestrutura-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #88d3ce;
    font-weight: 600;
}

.infraestrutura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.infra-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.infra-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.infra-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.infra-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #88d3ce;
    font-weight: 600;
}

.infra-item p {
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    color: #ffffff;
}


.diferenciais-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    text-align: center;
}

.diferenciais-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #88d3ce;
    font-weight: 600;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.diferencial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6e45e2, #88d3ce);
    transition: width 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.diferencial-card:hover::before {
    width: 8px;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #88d3ce;
    font-weight: 600;
}

.diferencial-card p {
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    color: #ffffff;
}


@keyframes borderAnimation {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}


@media (max-width: 768px) {
    .sobre-hero {
        padding: 150px 0 60px;
        min-height: 50vh;
    }
    
    .historia-text h2 {
        font-size: 2rem;
    }
    
    .destaques-historia {
        gap: 20px;
    }
    
    .destaque-item {
        min-width: 120px;
        padding: 15px;
    }
    
    .destaque-numero {
        font-size: 1.5rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .valor-card {
        padding: 30px 20px;
    }
    
    .infraestrutura-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .valores-section h2,
    .infraestrutura-section h2,
    .diferenciais-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .sobre-hero-content h1 {
        font-size: 2rem;
    }
    
    .sobre-hero-content p {
        font-size: 1.1rem;
    }
    
    .historia-text h2 {
        font-size: 1.8rem;
    }
    
    .destaques-historia {
        flex-direction: column;
        align-items: center;
    }
    
    .destaque-item {
        width: 100%;
        max-width: 200px;
    }
}



/* DROPDOWN DE PROJETOS */
.projetos-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(5, 5, 9, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(110, 69, 226, 0.3);
  border-radius: 10px;
  padding: 15px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  transform: rotate(45deg);
}

.projetos-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(110, 69, 226, 0.2);
  color: var(--secondary);
  padding-left: 25px;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover .dropdown-icon {
  transform: scale(1.2);
}

/* MOBILE - Versão simplificada */
@media (max-width: 768px) {
  .projetos-dropdown {
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 0 10px 30px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    animation: none;
  }
  
  .dropdown-menu::before {
    display: none;
  }
  
  .projetos-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 10px 15px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .dropdown-menu a:hover {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.05);
  }
}

/* ANIMAÇÃO SUAVE */
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu {
  animation: dropdownFadeIn 0.3s ease;
}

/* Garantir que o dropdown fique acima de outros elementos */
header {
  z-index: 1000;
}

.projetos-dropdown {
  z-index: 1001;
}


/* ===== CORREÇÃO DO MENU MOBILE ===== */
header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: rgba(5, 5, 9, 0.95) !important;
    backdrop-filter: blur(10px) !important;
}

.nav-menu {
    z-index: 1001 !important;
}

/* Garantir que o menu mobile fique acima de tudo */
.nav-menu.open {
    z-index: 1002 !important;
}

.menu-toggle {
    z-index: 1003 !important;
}

/* Espaço para o header fixo não sobrepor o conteúdo */
body {
    padding-top: 80px !important;
}

.banner {
    margin-top: -80px !important;
    position: relative;
    z-index: 1 !important;
}

.container {
    position: relative;
    z-index: 1 !important;
}