/* Variáveis para cores - Mantendo consistência com o site principal */
:root {
    --primary-color: #5d3fd3;
    --secondary-color: #4b0082; 
    --accent-color: #8a2be2;
    --text-color: #e0e0e0;
    --bg-color: #0d0d2b; 
    --card-bg: #1a1a36;
    --card-border: #2c2c54;
    --gradient-1: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-2: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animação de Fundo (Estrelas) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--bg-color) 0%, #000 100%);
    z-index: -1;
    animation: star-fall 30s linear infinite;
    opacity: 0.8;
}

@keyframes star-fall {
    from {
        transform: translateY(-20%);
    }
    to {
        transform: translateY(20%);
    }
}

/* Header - Mantendo consistência */
header {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: var(--bg-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

header .logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

header .logo:hover {
    color: var(--accent-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 5px var(--accent-color);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section About */
.hero-about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px; /* Ajustado para usar o padding do container do Bootstrap */
    background: radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0) 60%), 
                radial-gradient(circle at 30% 70%, rgba(75, 0, 130, 0.2) 0%, rgba(75, 0, 130, 0) 60%);
    position: relative;
    overflow: hidden;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto; /* Centraliza o conteúdo */
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neon-glow 2s ease-in-out infinite alternate;
}

@keyframes neon-glow {
    from {
        filter: drop-shadow(0 0 5px var(--accent-color));
    }
    to {
        filter: drop-shadow(0 0 20px var(--accent-color));
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap; /* Permite quebrar linha em telas menores */
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

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

.floating-card:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    top: 70%;
    right: 40%;
    animation-delay: 4s;
}

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

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.card-text {
    font-weight: 600;
    color: var(--accent-color);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Nossa História - Timeline */
.nossa-historia {
    padding: 100px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-1);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.timeline-icon {
    font-size: 1.5rem;
}

.timeline-content {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 30px;
    margin: 0 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.timeline-content p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Nossa Missão */
.nossa-missao {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.missao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.missao-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.missao-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.missao-pillars {
    display: grid;
    gap: 20px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateX(10px);
}

.pillar-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pillar h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.pillar p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.mission-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

.orbit-item {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-color);
    animation: orbit 20s linear infinite;
}

.orbit-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 5s;
}

.orbit-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 10s;
}

.orbit-4 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 15s;
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Nossos Valores */
.nossos-valores {
    padding: 100px 0;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.valor-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.valor-card:hover::before {
    opacity: 0.1;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    border-color: var(--accent-color);
}

.valor-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.valor-card h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.valor-card p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Nossa Equipe */
.nossa-equipe {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.equipe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.equipe-text h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.equipe-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.team-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.team-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.team-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.equipe-skills h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-name {
    font-weight: 500;
    color: var(--text-color);
}

.skill-bar {
    height: 8px;
    background: var(--card-border);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 4px;
    width: 0;
    transition: width 2s ease;
}

/* Tecnologias */
.tecnologias {
    padding: 100px 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-category {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
}

.tech-category h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tech-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.4);
}

.tech-icon::after {
    content: attr(data-tech);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tech-icon:hover::after {
    opacity: 1;
}

/* Call to Action */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
    animation: float 10s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .redes {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

footer .redes a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .redes a:hover {
    color: var(--accent-color);
}

/* Media Queries para a página Sobre Nós */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-about {
    padding: 100px 20px 50px;
  }

  .hero-about h1 {
    font-size: 3rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .floating-card {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .floating-card:nth-child(1) {
    top: 10%;
    left: 5%;
  }

  .floating-card:nth-child(2) {
    top: 70%;
    left: 75%;
  }

  .floating-card:nth-child(3) {
    top: 85%;
    left: 15%;
  }

  .timeline::before {
    left: 20px; /* Alinha a linha do tempo à esquerda */
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px; /* Espaço para o marcador */
    padding-right: 20px;
    text-align: left; /* Alinha o texto à esquerda */
  }

  .timeline-item:nth-child(odd) {
    flex-direction: row; /* Garante que a ordem seja mantida */
    left: 0;
    padding-right: 20px; /* Ajusta o padding */
  }

  .timeline-item:nth-child(even) {
    left: 0; /* Alinha todos os itens à esquerda */
  }

  .timeline-item:nth-child(odd) .timeline-marker,
  .timeline-item:nth-child(even) .timeline-marker {
    left: 0px; /* Alinha os marcadores à esquerda */
    transform: translateY(-50%);
  }

  .missao-content {
    grid-template-columns: 1fr; /* Empilha em coluna */
    text-align: center;
  }

  .missao-text {
    text-align: center;
  }

  .missao-text h2 {
    text-align: center;
  }

  .missao-text p {
    text-align: center;
  }

  .missao-pillars {
    grid-template-columns: 1fr; /* Uma coluna */
  }

  .missao-visual {
    height: 300px;
    margin-top: 40px;
  }

  .mission-graphic {
    width: 250px;
    height: 250px;
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(120px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(120px) rotate(-360deg);
    }
  }

  .center-circle {
    width: 100px;
    height: 100px;
    font-size: 1.2rem;
  }

  .orbit-item {
    width: 70px;
    height: 70px;
    font-size: 0.7rem;
  }

  .valores-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .equipe-content {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .equipe-text,
  .equipe-skills {
    min-width: unset;
    width: 100%;
    max-width: 500px; /* Limita a largura em telas maiores */
  }

  .equipe-text h3 {
    text-align: center;
  }

  .equipe-text p {
    text-align: center;
  }

  .team-stats {
    justify-content: center;
  }

  .team-stat {
    align-items: center;
  }

  .tech-categories {
    grid-template-columns: 1fr;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero-about {
    padding: 90px 15px 40px;
  }

  .hero-about h1 {
    font-size: 2.5rem;
  }

  .hero-about p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .floating-card {
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  .floating-card:nth-child(1) {
    top: 5%;
    left: 2%;
  }

  .floating-card:nth-child(2) {
    top: 80%;
    left: 70%;
  }

  .floating-card:nth-child(3) {
    top: 90%;
    left: 10%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 60px;
    padding-right: 15px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .missao-content {
    gap: 30px;
  }

  .missao-text h2 {
    font-size: 1.8rem;
  }

  .missao-text p {
    font-size: 0.95rem;
  }

  .missao-pillars {
    gap: 20px;
  }

  .pillar h4 {
    font-size: 1.1rem;
  }

  .pillar p {
    font-size: 0.85rem;
  }

  .missao-visual {
    height: 250px;
    margin-top: 30px;
  }

  .mission-graphic {
    width: 200px;
    height: 200px;
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
  }

  .center-circle {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }

  .orbit-item {
    width: 60px;
    height: 60px;
    font-size: 0.6rem;
  }

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

  .valor-card h3 {
    font-size: 1.5rem;
  }

  .valor-card p {
    font-size: 0.9rem;
  }

  .equipe-content {
    gap: 30px;
  }

  .equipe-text h3 {
    font-size: 1.6rem;
  }

  .equipe-text p {
    font-size: 0.9rem;
  }

  .team-stats {
    gap: 25px;
  }

  .team-stat .stat-number {
    font-size: 2rem;
  }

  .team-stat .stat-label {
    font-size: 0.8rem;
  }

  .equipe-skills h4 {
    font-size: 1.3rem;
  }

  .skill-name {
    font-size: 0.8rem;
  }

  .tech-categories {
    gap: 30px;
  }

  .tech-category h3 {
    font-size: 1.3rem;
  }

  .tech-icon {
    width: 70px;
    height: 70px;
    font-size: 0.8rem;
  }
}

/* Mobile Pequeno (max-width: 480px) */
@media (max-width: 480px) {
  .hero-about {
    padding: 80px 10px 30px;
  }

  .hero-about h1 {
    font-size: 2rem;
  }

  .hero-about p {
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .floating-card {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .timeline-item {
    padding-left: 50px;
    padding-right: 10px;
  }

  .timeline-marker {
    width: 30px;
    height: 30px;
  }

  .timeline-icon {
    font-size: 1.2rem;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }

  .missao-text h2 {
    font-size: 1.6rem;
  }

  .missao-text p {
    font-size: 0.9rem;
  }

  .missao-visual {
    height: 200px;
  }

  .mission-graphic {
    width: 180px;
    height: 180px;
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
  }

  .center-circle {
    width: 70px;
    height: 70px;
    font-size: 0.9rem;
  }

  .orbit-item {
    width: 50px;
    height: 50px;
    font-size: 0.5rem;
  }

  .valor-card h3 {
    font-size: 1.3rem;
  }

  .valor-card p {
    font-size: 0.85rem;
  }

  .equipe-text h3 {
    font-size: 1.4rem;
  }

  .equipe-text p {
    font-size: 0.85rem;
  }

  .team-stat .stat-number {
    font-size: 1.8rem;
  }

  .team-stat .stat-label {
    font-size: 0.75rem;
  }

  .equipe-skills h4 {
    font-size: 1.2rem;
  }

  .skill-name {
    font-size: 0.8rem;
  }

  .tech-categories {
    gap: 30px;
  }

  .tech-category h3 {
    font-size: 1.3rem;
  }

  .tech-icon {
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
  }
}

/* Estilos para o botão de menu mobile */
.menu-toggle {
  display: none; /* Escondido por padrão em telas maiores */
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Mostra o botão em telas menores */
  }

  header nav {
    display: none; /* Esconde a navegação por padrão em telas menores */
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px; /* Ajuste conforme a altura do seu header */
    left: 0;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  header nav.active {
    display: flex; /* Mostra a navegação quando ativa */
  }

  header nav ul {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  header nav ul li a {
    padding: 10px 0;
    display: block;
  }
}

/* Estilos para o footer da página Sobre Nós */
footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .redes {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

footer .redes a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .redes a:hover {
    color: var(--accent-color);
}

/* Media Queries para o footer */
@media (max-width: 768px) {
    footer {
        padding: 20px 15px;
    }
    footer .redes {
        gap: 15px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  }
