* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      background-color: #000;
      color: white;
    }

/* Cabeçalho */
header {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #FFD700;
  width: 75%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  transition: all 1.2s ease;
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.95);
}

header.scrolled .logo-container {
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-left: 20px;
}

header.scrolled .logo {
  width: 80px;
}

header.scrolled nav {
  margin-left: auto;
  padding-right: 20px;
}

body {
  padding-top: 140px; /* Espaço para o header fixo */
}

    .logo {
  width: 300px;    
  height: auto;    
  /* border-radius: 50%;  */
}

    .logo-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      transition: all 1.2s ease;
    }

    header {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    header.scrolled {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .logo-text {
      font-size: 24px;
      font-weight: bold;
      color: #00aaff;
    }

    .logo-circle {
      width: 60px;
      height: 60px;
      background: radial-gradient(circle, #FFD700, #000);
      border-radius: 50%;
      border: 2px solid #FFD700;
      position: relative;
      overflow: hidden;
    }

    .logo-circle::before {
      content: '';
      position: absolute;
      top: 5px;
      left: 5px;
      right: 5px;
      bottom: 5px;
      border: 2px solid #FFD700;
      border-radius: 50%;
      transform: rotate(45deg);
    }

    /* Menu */
    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 50px; /* Aumentado de 30px para 50px */
      padding: 10px 0;
    }

    nav li {
      position: relative;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      transition: color 0.8s ease;
      position: relative;
      padding-bottom: 5px;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #FFD700;
      transition: width 0.8s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: #FFD700;
    }

    nav a.active {
      color: #FFD700;
    }

    nav a.active::after {
      width: 100%;
    }

    /* Galeria */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}



.gallery img:nth-child(3) {
  grid-column: span 2;
  height: 400px;
}

/* Responsividade */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery img:nth-child(3) {
    height: 300px;
  }
}

    /* Galeria */
    /* .gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px; 
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .gallery img {
      width: 100%;
      height: auto;
      object-fit: cover;
    } */

/* Seções */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  min-height: 60vh;
}

.section h2 {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Imagens dentro de seções: responsivas e centralizadas */
.section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

.gallery-section {
  padding: 120px 20px 80px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  color: #FFD700;
  margin-bottom: 40px;
}

.contact-info {
  margin-top: 30px;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #fff;
  border-top: 2px solid #FFD700;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  text-align: center;
}

#camera3d-container {
  width: 150px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 8px;
  overflow: hidden;
}

.footer-logo p {
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-section h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 1px solid #FFD700;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-section h3 i {
  font-size: 1.1rem;
  color: #666;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin: 8px 0;
  color: #555;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-section li:hover {
  color: #FFD700;
}

.footer-section li i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
  color: #666;
  transition: transform 0.3s ease;
}

.footer-section li:hover i {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #666;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #FFD700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #FFD700;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
}

.close:hover {
  color: white;
}

/* Carrossel Modal */
.carousel-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid #FFD700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.carousel-counter {
  color: #FFD700;
  font-size: 18px;
  margin-top: 15px;
  font-weight: bold;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 215, 0, 0.8);
  color: #000;
  border: none;
  font-size: 30px;
  font-weight: bold;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 2001;
}

.carousel-btn:hover {
  background-color: #FFD700;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 30px;
}

.carousel-next {
  right: 30px;
}

.carousel-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #FFD700;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.carousel-close:hover {
  color: white;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #FFD700;
  transform: scale(1.2);
}

.indicator:hover {
  background-color: rgba(255, 215, 0, 0.8);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-info {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 15px;
  }
  
  .section h2 {
    font-size: 2rem;
  }
}

    /* .gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid #FFD700;
  position: relative;
  z-index: 1;
}



    .gallery img:nth-child(3) {
      grid-column: span 2; /* A terceira imagem ocupa duas colunas */
      height: 400px;
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .gallery {
        grid-template-columns: 1fr;
      }
      .gallery img:nth-child(3) {
        height: 300px;
      }
    } */

/* ===== ESTILOS PÁGINA QUEM SOMOS ===== */

/* Hero Section About */
.hero-about {
    margin-top: 350px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Section */
.about-section {
    margin-top: 50px;
    padding: 80px 0;
    background: #000000;
}

.about-grid {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-text h2 i {
    color: #FFD700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mission-section h2 i {
    color: #FFD700;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mission-card i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.services-section h2 i {
    color: #FFD700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-item i {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.values-section h2 i {
    color: #FFD700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFD700;
    color: #2c3e50;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Responsividade para página About */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2,
    .mission-section h2,
    .services-section h2,
    .values-section h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .mission-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}