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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
}

.header {
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
}

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

/* Logo */

.logo {
  height: 60px;
  width: auto;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1001;
  position: relative;
}

.logo-container {
  flex-shrink: 0;
  overflow: visible; /* Garante que nada seja cortado */
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  height: 40px;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-menu ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-menu a:hover {
  color: #00aaff;
}

.translate-btn {
  background: transparent;
  border: 1px solid #00aaff;
  color: #00aaff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.translate-btn:hover {
  background: #00aaff;
  color: white;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-menu ul {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: #000;
    padding: 1rem 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .main-menu ul.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }
}

/* Sections */
.section {
  padding: 80px 0;
  position: relative;
  text-align: center;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cGF0aCBkPSJNMjAwIDBoLTEwMGwtMTAwIDEwMHYtMTAwTjAgMjAwSDIwMEgweiIgZmlsbD0ibm9uZSIgc3R5bGU9ImZpbGw6I2QzZDNkMztmaWxsLXJ1bGU6ZXVlbm9kZDtmaWxsLXJ1bGU6ZXVlbm9kZCI+PC9wYXRoPjwvc3ZnPg==') repeat;
  opacity: 0.05;
  z-index: 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #000000, #111111);
  padding: 100px 0;
  text-align: center;
}

/* === BADGE NO TOPO (COR LARANJA) === */
.badge {
  background: #e7873a;
  color: #ff8800; /* Cor laranja padrão da página */
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(255, 243, 0, 0.5);
  display: inline-block;
  width: auto;
  max-width: fit-content;
  white-space: nowrap;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.2;
}

.highlight {
  color: #00aaff;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid #00aaff;
  color: #00aaff;
  max-width: 180px;
  min-width: 140px;
  text-align: center;
}

.btn-primary {
  background: #00aaff;
  color: white;
  border: none;
}

.btn-outline {
  background: transparent;
  color: #00aaff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
}

.contact-info {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.contact-info i {
  margin-right: 0.5rem;
  color: #00aaff;
}

/* === TÍTULOS COM DESTAQUE === */
.section-title {
  font-size: 0;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.title-main,
.title-highlight {
  font-size: 2.5rem;
  font-weight: 600;
}

.title-main {
  color: white;
}

.title-highlight.blue {
  color: #00aaff;
}

.title-highlight.orange {
  color: #ff8800;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #00aaff;
}

.section-title.orange::after {
  background: #ff8800;
}

.big-title {
  font-size: 2.2rem;
  color: #fff300;
  margin-bottom: 1rem;
  text-align: center;
}

.orange {
  color: #ff8800;
  font-weight: 600;
}

/* Profile */
.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.text h2 {
  margin-bottom: 1rem;
  color: white;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.stat-box {
  background: #111;
  border: 1px solid #222;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-box i {
  color: #00aaff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-box span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff300;
}

.stat-box p {
  font-size: 0.8rem;
  color: #aaa;
}

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

.card {
  background: #111;
  border: 1px solid #222;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s;
}

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

.card i {
  color: #00aaff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card h4 {
  margin-bottom: 0.5rem;
  color: white;
}

.card p {
  font-size: 0.9rem;
  color: #aaa;
}

.image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.image p {
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
  margin-top: 0.5rem;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.project-card {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s;
  text-align: left;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card i {
  color: #00aaff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category {
  background: #00aaff;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  font-size: 0.7rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.project-card h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.project-card p {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 1rem;
}

.btn-small {
  color: #00aaff;
  text-decoration: none;
  font-size: 0.8rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.service-card {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  color: #00aaff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: white;
}

.service-card p {
  margin-bottom: 1rem;
  color: #aaa;
}

.service-card ul {
  list-style: none;
  padding-left: 1rem;
}

.service-card li {
  margin: 0.5rem 0;
  color: #aaa;
}

.consulting-box {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

.consulting-box i {
  color: #00aaff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.consulting-box h3 {
  margin-bottom: 1rem;
  color: white;
}

.consulting-box p {
  margin-bottom: 1rem;
  color: #aaa;
}

.tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tags span {
  background: #00aaff;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  font-size: 0.8rem;
}

/* Awards */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.award-card {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}

.award-card:hover {
  transform: translateY(-5px);
}

.award-card i {
  color: #fff300;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.award-card h3 {
  margin-bottom: 0.5rem;
  color: #fff300;
}

.award-card p {
  font-size: 0.9rem;
  color: #aaa;
}

.gold {
  border: 2px solid #fff300;
}

.achievement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}

.achievement img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.text {
  text-align: center;
  padding: 1rem;
}

.content {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.content h3 {
  color: #fff300;
  margin-bottom: 1rem;
}

.content p {
  margin-bottom: 1rem;
  color: #aaa;
}

/* === BADGE NO TOPO: FUNDO LARANJA, TEXTO PRETO === */
.badge {
  background: #ff8800; /* Laranja padrão da página */
  color: #000000;       /* Texto preto */
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
  display: inline-block;
  width: auto;
  max-width: fit-content;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.testimonial-card {
  background: #111;
  border: 1px solid #222;
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
  text-align: left;
}

.testimonial-card i {
  position: absolute;
  top: 0;
  left: 0;
  color: #00aaff;
  font-size: 3rem;
}

.rating {
  color: #fff300;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin-bottom: 1rem;
  color: #aaa;
}

.client {
  font-size: 0.9rem;
  color: #aaa;
}

.call-to-action {
  text-align: center;
  margin-top: 2rem;
}

.call-to-action h3 {
  margin-bottom: 1rem;
  color: white;
}

.call-to-action p {
  margin-bottom: 1rem;
  color: #aaa;
}

/* Video */
.video iframe {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas de tamanho igual */
  gap: 10px; /* espaço entre as imagens */
  margin-top: 20px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  justify-content: center;
}

.info-box h3,
.form-box h3 {
  margin-bottom: 1rem;
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
}

.contact-item i {
  color: #00aaff;
  margin-right: 0.5rem;
}

.contact-item strong {
  color: white;
}

.contact-item div {
  color: #aaa;
}

.note {
  background: #111;
  border: 1px solid #222;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  color: #aaa;
}

.note i {
  color: #00aaff;
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background: #000;
  padding: 4rem 0 2rem;
  border-top: 1px solid #222;
}

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

.footer-col h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
  color: #aaa;
}

.footer-col li a {
  color: #aaa;
  text-decoration: none;
}

.footer-col li a:hover {
  color: #00aaff;
}

.copyright {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
}

/* Modal Form */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  color: white;
  text-align: left;
}

.modal-content h3 {
  margin-bottom: 1rem;
  color: white;
}

.modal-content .form-row {
  margin-bottom: 1rem;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #222;
  background: #111;
  color: white;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
}

.modal-content textarea {
  min-height: 120px;
  resize: vertical;
}

.modal-content .btn-primary {
  background: #00aaff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  margin-top: 1rem;
}

.modal-content .btn-primary:hover {
  background: #0088cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
}

.close {
  color: white;
  font-size: 1.5rem;
  float: right;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-content {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero h1 {
    font-size: 2.8rem;
  }

  .title-main,
  .title-highlight {
    font-size: 2rem;
  }
}

/* === FORMULÁRIO DE CONTATO === */
.form-box input,
.form-box textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #222;
  background: #111;
  color: white;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-box input:focus,
.form-box textarea:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
}

.form-box textarea {
  min-height: 120px;
  resize: vertical;
}

.form-box .btn-primary {
  background: #00aaff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  margin-top: 1rem;
}

.form-box .btn-primary:hover {
  background: #0088cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
}

.tags {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tags span {
  background: #00aaff;
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 5px;
  font-size: 0.85rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Garantir que botões sejam clicáveis */
.btn,
.btn-primary,
.btn-outline {
  pointer-events: auto !important;
  cursor: pointer;
  text-decoration: none;
}

/* Evitar overlays invisíveis */
section::before,
section::after {
  pointer-events: none !important;
}

.header,
.footer {
  pointer-events: auto;
}

/* Reset para links de ação */
.call-to-action .btn,
.btn-group .btn {
  position: relative;
  z-index: 10;
}

/* Oculta a barra do Google Translate e remove seu espaço */
.goog-te-banner-frame {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
}

/* Remove qualquer elemento pai ou irmão indesejado */
body > :first-child[name="google_translate_frame"],
body > iframe[name="google_translate_frame"] {
  display: none !important;
  height: 0 !important;
  position: absolute !important;
  top: -9999px !important;
}

/* Garante que o body não tenha margin-top forçada */
body {
  top: 0 !important;
  position: static !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}