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

:root {
  --primary-color: #ff6b35;
  --secondary-color: #1a1a1a;
  --dark-color: #0d0d0d;
  --gray-color: #333333;
  --light-gray: #666666;
  --white-color: #ffffff;
  --text-color: #f5f5f5;
  --border-color: #444444;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(-45deg, #0d0d0d, #1a1a1a, #2d1b1b, #1a1a1a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      45deg,
      transparent 24%,
      rgba(255, 107, 53, 0.02) 25%,
      rgba(255, 107, 53, 0.02) 26%,
      transparent 27%,
      transparent 74%,
      rgba(255, 107, 53, 0.02) 75%,
      rgba(255, 107, 53, 0.02) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      -45deg,
      transparent 24%,
      rgba(255, 255, 255, 0.01) 25%,
      rgba(255, 255, 255, 0.01) 26%,
      transparent 27%,
      transparent 74%,
      rgba(255, 255, 255, 0.01) 75%,
      rgba(255, 255, 255, 0.01) 76%,
      transparent 77%,
      transparent
    );
  background-size: 60px 60px;
  animation: patternMove 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

/* Elementos geométricos flutuantes */
.geometric-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.geometric-shape {
  position: absolute;
  opacity: 0.1;
  animation: float-geometric 20s infinite linear;
}

.geometric-shape:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  border-radius: 50%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.geometric-shape:nth-child(2) {
  top: 60%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation-delay: 5s;
  animation-duration: 30s;
}

.geometric-shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 30%;
  animation-delay: 10s;
  animation-duration: 35s;
}

.geometric-shape:nth-child(4) {
  top: 30%;
  right: 30%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  animation-delay: 15s;
  animation-duration: 40s;
}

.geometric-shape:nth-child(5) {
  bottom: 40%;
  right: 20%;
  width: 90px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 20s;
  animation-duration: 28s;
}

@keyframes float-geometric {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.1;
  }
  75% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.1;
  }
}

/* Ondas animadas */
.wave-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 53, 0.03));
  pointer-events: none;
  z-index: -1;
}

.wave-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ff6b35'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ff6b35'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ff6b35'/%3E%3C/svg%3E")
    repeat-x;
  background-size: 1200px 120px;
  animation: wave-move 10s ease-in-out infinite;
  opacity: 0.1;
}

@keyframes wave-move {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

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

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

/*.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-color);
}*/

.highlight {
  color: var(--primary-color);
}

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

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

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 80px; /* Aumentar de 20px para 80px */
}

.hero-photo {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--primary-color);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: hero-glow 8s ease-in-out infinite alternate;
  opacity: 0.8;
}

@keyframes hero-glow {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.6;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0; /* Remover padding superior */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--white-color);
  color: var(--dark-color);
  border-color: var(--white-color);
}

.btn-whatsapp-hero {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white-color);
  border: 2px solid #25d366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-hero:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: var(--white-color);
  border-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-sm:hover {
  background: #ff8c42;
  border-color: #ff8c42;
  color: var(--white-color);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.hero-image {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

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

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

.floating-card:nth-child(3) {
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

.floating-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.floating-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.floating-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

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

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Produtos Section */
.produtos {
  background: var(--secondary-color);
  position: relative;
  z-index: 2; /* Garantir que não invada o hero */
}

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

.produto-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.produto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.produto-card:hover::before {
  left: 100%;
}

.produto-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.produto-card.featured {
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.produto-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.produto-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.produto-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.produto-card p {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--light-gray);
}

.features i {
  color: var(--primary-color);
}

/* Serviços Section */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.servico-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.servico-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.05);
}

.servico-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.servico-card:hover .servico-icon {
  background: var(--primary-color);
}

.servico-icon i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.servico-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.servico-card p {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.5;
}

.servicos-cta {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white-color);
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.btn-whatsapp i {
  font-size: 1.3rem;
}

/* Sobre Section */
.sobre {
  background: var(--secondary-color);
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch; /* Mudar de center para stretch */
}

.sobre-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.sobre-text p {
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.sobre-features {
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.2rem;
}

.feature h4 {
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

.sobre-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed var(--border-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.image-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.empresa-photo {
  width: 100%;
  max-width: 400px;
  height: 100%; /* Altura igual ao container */
  min-height: 400px; /* Altura mínima */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary-color);
}

.empresa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.empresa-img:hover {
  transform: scale(1.02);
}

/* Contato Section */
.contato-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  transition: all 0.3s ease;
  flex: 1;
  min-height: 120px;
}

.contato-item:last-child {
  margin-bottom: 0;
}

.contato-item:hover {
  border-color: var(--primary-color);
  background: rgba(255, 107, 53, 0.05);
}

.contato-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-icon i {
  font-size: 1.2rem;
  color: var(--white-color);
}

.contato-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contato-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contato-details p {
  color: var(--light-gray);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contato-details small {
  color: var(--light-gray);
  font-size: 0.8rem;
}

.contato-mapa {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mapa-container {
  flex: 1;
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  min-height: 300px;
}

.mapa-container iframe {
  height: 100% !important;
  min-height: 300px;
}

.endereco-info {
  text-align: left;
  margin-top: auto;
}

.endereco-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.endereco-info p {
  margin-bottom: 0.5rem;
  color: var(--light-gray);
  line-height: 1.6;
}

.endereco-info strong {
  color: var(--white-color);
}

/* Form */
.contato-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--white-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

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

/* Footer */
.footer {
  background: var(--dark-color);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--dark-color);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

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

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .sobre-content,
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-image {
    height: 300px;
  }

  .floating-card {
    padding: 1rem;
  }

  .floating-card h3 {
    font-size: 1rem;
  }

  .floating-card p {
    font-size: 0.8rem;
  }

  .hero-photo {
    height: 300px;
  }

  .empresa-photo {
    height: 250px;
  }

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

  .hero {
    padding-top: 80px; /* Aumentar de 60px para 80px */
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-container {
    padding: 2rem 15px; /* Manter o padding interno */
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .produto-card,
  .servico-card {
    padding: 1.5rem;
  }

  .contato-item {
    padding: 1rem;
  }

  .contato-form {
    padding: 1.5rem;
  }

  .hero-photo {
    height: 250px;
  }

  .empresa-photo {
    height: 200px;
  }

  .contato-mapa {
    padding: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 1200px) {
  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 480px) {
  .servicos-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* Partículas flutuantes */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  animation: particle-float 15s infinite linear;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 20s;
}
.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 18s;
}
.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  animation-duration: 22s;
}
.particle:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
  animation-duration: 16s;
}
.particle:nth-child(5) {
  left: 50%;
  animation-delay: 8s;
  animation-duration: 24s;
}
.particle:nth-child(6) {
  left: 60%;
  animation-delay: 10s;
  animation-duration: 19s;
}
.particle:nth-child(7) {
  left: 70%;
  animation-delay: 12s;
  animation-duration: 21s;
}
.particle:nth-child(8) {
  left: 80%;
  animation-delay: 14s;
  animation-duration: 17s;
}
.particle:nth-child(9) {
  left: 90%;
  animation-delay: 16s;
  animation-duration: 23s;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Efeito de brilho nos cards */
.produto-card,
.servico-card {
  position: relative;
  overflow: hidden;
}

.produto-card::after,
.servico-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.produto-card:hover::after,
.servico-card:hover::after {
  animation: shine 0.6s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

/* Responsividade para animações */
@media (max-width: 768px) {
  .geometric-shape {
    display: none;
  }

  .particle {
    animation-duration: 12s;
  }

  body::after {
    background-size: 30px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .servicos-cta {
    margin-top: 3rem;
    padding: 2rem 1rem;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .btn-whatsapp {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 60px;
    padding: 0 15px;
  }

  .logo-img {
    height: 35px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-container {
    padding: 2rem 15px;
    gap: 2rem;
  }

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

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1rem;
    justify-content: space-around;
  }

  .hero-photo {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    top: 60px;
    padding: 1rem 0;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }

  .nav-link {
    padding: 0.8rem 1rem;
    display: block;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 15px;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .produto-card,
  .servico-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .contato-grid-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contato-item {
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: auto;
  }

  .contato-mapa {
    padding: 1rem;
  }

  .mapa-container {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}
