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

:root {
  --vh: 1vh; /* Variável para altura mobile */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

/* Header */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Estilo do mouse */
.mouse {
  display: inline-flex;
  width: 25px;
  height: 50px;
  border: 4px solid #000;
  border-radius: 20px;
  margin-bottom: 0px;
  margin-top: 80px;
}

.mouse-wheel {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  margin: auto;
  animation: moveWheel 1.5s linear infinite;
}

@keyframes moveWheel {
  0% {
    opacity: 0;
    transform: translateY(-16px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

.scroll-text {
  font-family: Arial, sans-serif;
  margin-top: 20px;
  color: #000;
  font-weight: 700;
  font-size: 18px; 
  letter-spacing: 1px;
}

.scroll-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.logo {
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80px;
}

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

.nav {
  display: flex;
  gap: 2rem;
}

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

.nav-link:hover,
.nav-link.active {
  color: #ff6b35;
}

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

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


.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Hero Section - Versão otimizada */
.hero-about {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff8000;
  z-index: -1;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-down .hero-bg {
  transform: translateY(-100%);
}

.scroll-down .hero-content {
  opacity: 0;
  transform: translateY(30px);
}

.hero-title {
  color: #000000;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.hero-white, 
.hero-black {
  display: inline-block;
  white-space: nowrap;
  
}

.hero-white {
  color: #fff;
  font-weight: 400;
}

.hero-black {
  color: #000;
  font-weight: 800;

}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  line-height: 1.5;
  margin: 0 auto;
}

/* Estilos para o carrossel */
.carousel-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel {
    position: relative;
    height: 500px; /* Ajustado para combinar com a altura da imagem */
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.carousel-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 128, 0, 0.2); /* cor laranja transparente */
    backdrop-filter: blur(6px); /* efeito vidro */
    -webkit-backdrop-filter: blur(6px); /* suporte Safari */
    border: 1px solid rgba(255, 128, 0, 0.4); /* borda sutil */
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control.active {
    background: #FF8000; /* cor sólida */
    transform: scale(1.2);
    box-shadow: 0 0 10px #FF8000, 0 0 20px rgba(255, 128, 0, 0.6); /* glow ao redor */
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Animações para o conteúdo ao lado do carrossel */
.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade para o carrossel */
@media (max-width: 992px) {
    .carousel-container {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 300px;
    }
    
    .carousel-controls {
        bottom: 15px;
    }
}



.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.separator {
  margin: 0 0.5rem;
}

.current {
  color: #fff;
  font-weight: 600;
}

.about-content {
  padding: 6rem 0;
  background: #fff;
}

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

.content-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.lead {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 2rem;
  line-height: 1.7;
 

}

.content-text p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #ff6b35;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-content h3 {
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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



.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Buttons */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #20b954;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-weight: 500;
}

/* About Specific Styles */
.values-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

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

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

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.value-item {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.value-item h3 {
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.value-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.mission-vision {
  padding: 6rem 0;
  background: white;
}

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

.mv-item {
  text-align: center;
  padding: 3rem 2rem;
  background: #f8f9fa;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

.mv-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
}

.mv-item h3 {
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.mv-item p {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

.team-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.team-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 90%;           /* Faz a imagem ocupar toda a largura do container */
  max-width: 1300px;      /* Altere aqui para aumentar ou diminuir a largura */
  height: 800px;         /* Altere aqui para aumentar ou diminuir a altura */
  margin: 0 auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image img {
  border-radius: 15px;
  width: 100%;
  height: 1400%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #fff; /* opcional: deixa fundo branco se sobrar espaço */
}

.team-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  /* Ajuste a opacidade acima para mais ou menos laranja */
}

.team-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.team-text p {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0;
  opacity: 0.9;
}

.cta-about {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  text-align: center;
}

.cta-content h1 {
  margin-bottom: 5px;
  font-size: 2.0rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo h3 {

  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-logo p {
  color: #ccc;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff6b35;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
}


/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Animations */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 1s ease-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-out;
}

.slide-in-up {
  animation: slideInUp 1s ease-out;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    padding: 7rem 2rem 3rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {

  .nav {
    display: none;
  }

  .hero-about {
    min-height: -webkit-fill-available;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .content-grid,
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-text h2 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  
  .service-content,
  .about-content,
  .values-section,
  .mission-vision,
  .team-section,
  .cta-about {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .scroll-text {
    font-size: 16px;
  }
  
  .mouse {
    margin-top: 30px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-whatsapp {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-black {
    font-size: 26px !important;
  }
}

/* Correção específica para Safari iOS */
@supports (-webkit-touch-callout: none) {
  .hero-about {
    height: -webkit-fill-available;
  }
}

/* Ajuste para telas muito curtas */
@media (max-height: 700px) and (max-width: 767px) {
  .hero-about {
    min-height: 700px;
    height: auto;
  }
}


/* style das paginas contato.html e serviços.html */

/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Container */
.container-contato {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 90px;
}

/* Seção Hero */
.hero-section {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-top: 55px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Títulos de seção */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  color: #000;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f97316;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Seção de informações de contato */
.contact-info-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.contact-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background-color: #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.contact-card p {
  color: #666;
  line-height: 1.8;
}

/* Seção do formulário */
.contact-form-section {
  padding: 80px 0;
  background-color: #fff;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #000;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

/* Botões */
.btn-primary {
  background-color: #f97316;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #f97316;
  padding: 15px 40px;
  border: 2px solid #f97316;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #f97316;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

/* Seção do mapa */
.map-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Seção de serviços */
.services-section {
  padding: 80px 0;
  background-color: #fff;
}

.service-item {
  margin-bottom: 100px;
}

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

/* Corrigindo layout alternado com classes específicas */
/* Layout padrão: texto à esquerda, imagem à direita */
.service-item.text-left .service-text {
  order: 1;
}

.service-item.text-left .service-image {
  order: 2;
}

/* Layout alternado: imagem à esquerda, texto à direita */
.service-item.text-right .service-text {
  order: 2;
}

.service-item.text-right .service-image {
  order: 1;
} 
  
.service-image {
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-image-se {
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-image:hover {
  transform: scale(1.02);
}

.service-image img {
  width: 100%;
  height: 415px;
  object-fit: cover;
  object-position: center;
}

.service-image-se img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}






.service-text h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
  position: relative;
}

.service-text h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #f97316;
  margin-top: 10px;
  border-radius: 2px;
}

.service-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: bold;
}

/* Link de navegação */
.nav-link {
  padding: 60px 0;
  text-align: center;
  background-color: #f8fafc;
}

/* Footer */
.footer{
  background-color: #000;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f97316;
}

.footer-section p,
.footer-section li {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.footer-section ul li {
  padding: 5px 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #f97316;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f97316;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #ea580c;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
  color: #999;
}

 /* No arquivo styles-pg-home.css */
.footer-no-line::after,
.footer .section-title::after,
.footer h3::after {
  content: none;
  display: none;
}

/* Animações de scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {

.service-image img {
  width: 100%;
  height: 415px;
  object-fit: cover;
  object-position: center;
}
  
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

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

  .contact-form {
    padding: 30px 20px;
  }

  .service-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* Removendo alternância em mobile para melhor UX */
  .service-item.text-left .service-text,
  .service-item.text-right .service-text {
    order: 1;
  }

  .service-item.text-left .service-image,
  .service-item.text-right .service-image-se {
    order: 2;
  }

  .service-text h3 {
    font-size: 1.5rem;
  }

  .service-text h3::after {
    margin: 10px auto 0;
  }

  .hero-section {
    padding: 60px 0;
  }

  .contact-info-section,
  .contact-form-section,
  .map-section,
  .services-section {
    padding: 60px 0;
  }

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

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

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

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

  .contact-card {
    padding: 30px 20px;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .footer {
    padding: 40px 0 20px;
  }
}