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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

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

/* Header visualmente mais bonito */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #843E00;
  color: #fff;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 24px rgba(132, 62, 0, 0.10);
  border-bottom: 3px solid #FFD699;
  transition: background 0.3s, box-shadow 0.3s, border-bottom 0.3s;
}

.header.scrolled {
  background: #6a2e00;
  box-shadow: 0 8px 32px rgba(132, 62, 0, 0.18);
  border-bottom: 3px solid #d2691e;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  gap: 0.8rem;
}

.logo-texto {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.logo-titulo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-nome {
  font-size: 1rem;
  font-weight: 600;
  color: #FFD699;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.logo:hover .logo-nome {
  color: #ffffff;
}

.logo-bg {
  background: #FFD699;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 214, 153, 0.18);
  overflow: hidden;
}

.logo-bg img {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2);
}

.logo i {
  margin-right: 0.5rem;
  color: #8b5f00;
  font-size: 2.2rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  transition: color 0.3s, background 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2.5px;
  background: #FFD699;
  border-radius: 2px;
  transition: width 0.3s;
}

.nav a:hover,
.nav a:focus {
  color: #843E00;
  background: #FFD699;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  font-size: 2rem;
  color: #FFD699;
  cursor: pointer;
  z-index: 1100;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.8) 0%,
      rgba(44, 44, 44, 0.6) 50%,
      rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1200px;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(210, 105, 30, 0.2);
  border: 1px solid rgba(255, 214, 153, 0.3);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFD699;
}

.hero-badge i {
  color: #d2691e;
  font-size: 1rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  hyphens: auto;
}

.hero-title-line {
  display: block;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #FFD699, #d2691e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FFD699, #d2691e);
  border-radius: 2px;
}

.hero-description {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 150px;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(210, 105, 30, 0.3);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD699;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.cta-button.primary {
  background: linear-gradient(135deg, #d2691e, #b8860b);
  color: white;
  box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(210, 105, 30, 0.4);
  background: linear-gradient(135deg, #b8860b, #d2691e);
}

.cta-button.secondary {
  background: transparent;
  color: #FFD699;
  border-color: #FFD699;
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 214, 153, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 153, 0.2);
}

.cta-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: scale(1.1);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 500;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid #d2691e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d2691e;
}

/* Móveis pequenos */
@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
    padding: 1rem 0.75rem;
  }
  
  .hero-content {
    padding: 0 0.75rem;
    gap: 1.2rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    max-width: 95%;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 0.8rem;
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
  
  .hero-stats {
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
  }
  
  .stat-item {
    padding: 0.8rem 1.2rem;
    max-width: 220px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .hero-actions {
    max-width: 280px;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-button {
    padding: 0.9rem 1.3rem;
    font-size: 0.95rem;
    max-width: 260px;
  }
}


/* Sobre Section */
.sobre {
  padding: 6rem 0;
  background: #EAD2B7;
}

.sobre-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre h2 {
  font-size: 2.5rem;
  color: #843E00;
  margin-bottom: 2rem;
  font-weight: 600;
}

.sobre p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
}

.experiencia {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

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

.numero {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d2691e;
}

.texto {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.sobre-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Serviços Section */
.servicos {
  padding: 6rem 0;
  background: #f8f8f8;
}

.servicos h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
  font-weight: 600;
}

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

.servico-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(132, 62, 0, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid #d2691e;
}

.servico-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(132, 62, 0, 0.18);
}

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

.servico-icon i {
  font-size: 2rem;
  color: white;
}

.servico-card h3 {
  font-size: 1.3rem;
  color: #8b4513;
  margin-bottom: 1rem;
  font-weight: 600;
}

.servico-card p {
  color: #666;
  line-height: 1.6;
}

/* Projetos Section */
.projetos {
  padding: 6rem 0;
  background: white;
  position: relative;
}

.projetos h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
  font-weight: 600;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track .projeto-item {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.projeto-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin: 0;
}

.projeto-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  background: rgba(132, 62, 0, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(132, 62, 0, 0.3);
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(132, 62, 0, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(132, 62, 0, 0.4);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.carousel-btn:hover i {
  transform: scale(1.2);
}

.prev-btn {
  margin-left: 20px;
}

.next-btn {
  margin-right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
  padding: 0 1rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(132, 62, 0, 0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.carousel-indicator:hover {
  background: rgba(132, 62, 0, 0.6);
  transform: scale(1.2);
}

.carousel-indicator.active {
  background: #d2691e;
  border-color: #FFD699;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.2);
}

.carousel-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-indicator.active::before {
  opacity: 1;
}

.projeto-imagem-principal {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.imagem-principal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projeto-item:hover .imagem-principal {
  transform: scale(1.05);
}

.projeto-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.projeto-categoria {
  background: rgba(132, 62, 0, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
}

.projeto-info {
  padding: 1.5rem;
}

.projeto-info h3 {
  font-size: 1.3rem;
  color: #8b4513;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.projeto-info p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.projeto-fotos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.foto-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.foto-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.foto-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.foto-item:hover img {
  transform: scale(1.1);
}

.foto-legenda {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsividade para as fotos */
@media (max-width: 768px) {
  .projeto-fotos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .foto-item img {
    height: 80px;
  }

  .projeto-imagem-principal {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .projeto-fotos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .foto-item img {
    height: 70px;
  }

  .projeto-imagem-principal {
    height: 200px;
  }

  .projeto-categoria {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Modal para ampliar fotos */
.foto-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.foto-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.foto-modal-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.foto-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.foto-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.foto-modal-legenda {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .foto-modal-content {
    max-width: 95%;
  }

  .foto-modal-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  .foto-modal-legenda {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}

/* Contato Section */
.contato {
  padding: 6rem 0;
  background: #f8f8f8;
}

.contato h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #8b4513;
  margin-bottom: 3rem;
  font-weight: 600;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contato-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.contato-item i {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d2691e, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 1.5rem;
}

.contato-item h3 {
  color: #8b4513;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contato-item p {
  color: #666;
  font-size: 1rem;
}

.contato-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d2691e;
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.form-group input:invalid,
.form-group textarea:invalid {
  border-color: #e74c3c;
}

.form-group input:valid,
.form-group textarea:valid {
  border-color: #27ae60;
}

.submit-button {
  width: 100%;
  background: #d2691e;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #b8860b;
  transform: translateY(-2px);
}

.submit-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.submit-button:disabled:hover {
  background: #ccc;
  transform: none;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #843E00, #d2691e, #FFD699, #d2691e, #843E00);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
  color: #FFD699;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #d2691e, #FFD699);
  border-radius: 2px;
}

/* Footer Info Section */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-bg {
  background: linear-gradient(135deg, #FFD699, #d2691e);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 214, 153, 0.3);
  transition: transform 0.3s ease;
}

.footer-logo:hover .logo-bg {
  transform: scale(1.05) rotate(5deg);
}

.footer-logo .logo-bg img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: brightness(0.8) contrast(1.2);
}

.footer-logo .logo-texto {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-logo .logo-nome {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-logo .logo-titulo {
  font-size: 1rem;
  font-weight: 600;
  color: #FFD699;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 300px;
}

/* Footer Contact Section */
.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding-left: 0.5rem;
}

.footer-contact .contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.footer-contact .contact-item i {
  width: 20px;
  height: 20px;
  color: #d2691e;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact .contact-item span {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Footer Services Section */
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  color: #cccccc;
  margin-bottom: 0.8rem;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-services li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #d2691e;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-services li:hover {
  color: #FFD699;
  transform: translateX(5px);
}

.footer-services li:hover::before {
  transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #aaaaaa;
  font-size: 0.9rem;
  margin: 0;
}

.developer-credit a {
  color: #d2691e;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.developer-credit a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFD699;
  transition: width 0.3s ease;
}

.developer-credit a:hover {
  color: #FFD699;
}

.developer-credit a:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .sobre-content {
    gap: 3rem;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .projetos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .nav ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .nav a:hover {
    background-color: #FFD699;
    color: #843E00;
    border-color: #FFD699;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 214, 153, 0.3);
  }
}


@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(132, 62, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding-top: 80px;
  }

  .nav.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    animation: slideIn 0.3s ease-out;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 100svh;
    /* Usa small viewport height - melhor para mobile */
    height: auto;
    /* Permite crescimento do conteúdo */
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 90%;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 100%;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
  }

  .hero-description {
    font-size: 1.1rem;
    max-width: 95%;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
  }

  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: 250px;
    min-width: auto;
    padding: 1rem 1.5rem;
    margin: 0;
  }

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

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

  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }

  .hero-scroll {
    position: static;
    transform: none;
    margin-top: 1rem;
  }

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

  .sobre-image {
    order: -1;
  }

  .sobre-image img {
    max-width: 300px;
    margin: 0 auto;
  }

  .experiencia {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }

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

  .servico-card {
    padding: 2rem;
  }

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

  .contato-form {
    padding: 2rem;
  }

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

  .footer-info {
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-description {
    max-width: 100%;
    text-align: center;
  }

  .footer-contact .contact-item {
    justify-content: center;
  }

  .footer-services ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-services li {
    padding-left: 0;
    padding-right: 1.5rem;
  }

  .footer-services li::before {
    left: auto;
    right: 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .carousel-container {
    margin: 0 1rem;
  }

  .carousel-track .projeto-item {
    padding: 0 0.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 1rem;
  }

  .prev-btn {
    margin-left: 10px;
  }

  .next-btn {
    margin-right: 10px;
  }

  .carousel-indicators {
    gap: 8px;
    margin-top: 1.5rem;
  }

  .carousel-indicator {
    width: 10px;
    height: 10px;
  }

  .projeto-info {
    padding: 1.5rem;
  }

  .projeto-info h3 {
    font-size: 1.2rem;
  }

  .projeto-info p {
    font-size: 0.95rem;
  }
}


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

/* Melhorias para foco */
.nav a:focus,
.cta-button:focus,
.submit-button:focus,
.whatsapp-button:focus,
.foto-item:focus {
  outline: 2px solid #843E00;
  outline-offset: 2px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.servico-card,
.projeto-item {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1200;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 32px rgba(40, 167, 69, 0.25);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: whatsapp-pulse 1.5s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(40, 167, 69, 0.35);
}

.whatsapp-button:focus {
  outline: 2px solid #128C7E;
  outline-offset: 2px;
}

.whatsapp-button::after {
  content: "Fale conosco no WhatsApp";
  position: absolute;
  right: 110%;
  bottom: 50%;
  transform: translateY(50%);
  background: #222;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s, right 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.whatsapp-button:hover::after,
.whatsapp-button:focus::after {
  opacity: 1;
  right: 120%;
}

@media (max-width: 768px) {
  .whatsapp-button {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-button::after {
    font-size: 0.85rem;
    padding: 6px 10px;
    right: 105%;
  }
}