* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #f5f9f0 0%, #e8f5e9 100%);
      color: #333;
      line-height: 1.6;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header e Navegação */
    header {
      background: linear-gradient(to right, #007a29, #00b140);
      padding: 15px 0;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo-container {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .logo {
      height: 60px;
      width: auto;
      border-radius: 8px;
    }
    
    .logo-text {
      color: white;
      font-size: 1.8rem;
      font-weight: bold;
    }
    
    nav {
      display: flex;
      gap: 25px;
    }
    
    nav a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      padding: 8px 15px;
      border-radius: 4px;
    }
    
    nav a:hover {
      background-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-2px);
    }
    
    /* Hero Section */
    .hero {
      padding: 80px 0;
      position: relative;
      color: white;
      text-align: center;
      border-radius: 0 0 10px 10px;
      margin-bottom: 50px;
      overflow: hidden; /* To contain the pseudo-element */
    }

    .hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1; /* Move it behind the overlay */
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
      border-radius: 0 0 10px 10px;
      z-index: 1; /* Ensure overlay is on top of the image */
    }
    
    .hero-content {
      position: relative;
      z-index: 2; /* Ensure content is on top of the overlay */
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .cta-button {
      display: inline-block;
      background-color: #ff6b00;
      color: white;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .cta-button:hover {
      background-color: #ff8c33;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }
    
    /* Seções de Conteúdo */
    .section {
      padding: 60px 0;
    }
    
    .section-title {
      text-align: center;
      color: #007a29;
      font-size: 2.2rem;
      margin-bottom: 40px;
      position: relative;
    }
    
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #007a29, #00b140);
      margin: 15px auto;
      border-radius: 2px;
    }
    
    /* Serviços */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .service-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .service-icon {
      font-size: 2.5rem;
      color: #00b140;
      margin-bottom: 20px;
    }
    
    .service-card h3 {
      color: #007a29;
      margin-bottom: 15px;
      font-size: 1.4rem;
    }
    
    .service-card p {
      color: #666;
    }
    
    /* Seção de Múltiplos Celulares */
    .phones-section {
      background: linear-gradient(to right, #007a29, #00b140);
      padding: 80px 0;
      color: white;
      text-align: center;
    }
    
    .phones-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 40px;
    }
    
    .phone-item {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 25px;
      width: 220px;
      backdrop-filter: blur(5px);
      transition: transform 0.3s ease;
    }
    
    .phone-item:hover {
      transform: translateY(-8px);
    }
    
    .phone-icon {
      font-size: 3rem;
      margin-bottom: 15px;
      color: #8cff7e;
    }
    
    .phone-item h3 {
      margin-bottom: 10px;
      font-size: 1.3rem;
    }
    
    /* Sobre */
    .about-content {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    
    .about-text {
      flex: 1;
      min-width: 300px;
    }
    
    .about-image {
      flex: 1;
      min-width: 300px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    /* Contato */
    .contact-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }
    
    .contact-info {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .contact-info h3 {
      color: #007a29;
      margin-bottom: 20px;
      font-size: 1.5rem;
    }
    
    .contact-detail {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
      background: #e8f5e9;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: #00b140;
      font-size: 1.2rem;
    }
    
    .contact-text {
      flex: 1;
    }
    
    .contact-text h4 {
      color: #007a29;
      margin-bottom: 5px;
    }
    
    /* Footer */
    footer {
      background: linear-gradient(to right, #007a29, #00b140);
      color: white;
      padding: 40px 0 20px;
      margin-top: 60px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
    }
    
    .footer-section h3 {
      font-size: 1.3rem;
      margin-bottom: 20px;
      position: relative;
    }
    
    .footer-section h3:after {
      content: '';
      display: block;
      width: 40px;
      height: 3px;
      background: rgba(255, 255, 255, 0.5);
      margin-top: 10px;
    }
    
    .footer-links a {
      display: block;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 12px;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
      color: white;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
     header {
    padding: 6px 12px;
  }

  /* manter conteúdo em linha, centralizado, menos gap */
  .header-content {
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    max-height: 56px;
  }

  /* logo menor */
  .logo {
    height: 42px;
  }

  /* texto da logo menor e sem quebrar linha */
  .logo-text {
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    margin-left: 6px;
  }

  /* nav: fonte menor, menos padding, não empilha (scroll horiz. se necessário) */
  nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  nav a {
    font-size: 0.77rem; /* ≈ 30% menor se seu original for ~1.1rem */
    padding: 6px 8px;
    white-space: nowrap;
  }

  /* redes sociais: ícones menores e circulares */
  .social-icons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
  }
}

/* Ajustes adicionais para telas muito pequenas (<=480px) */
@media (max-width: 480px) {
  header { padding: 5px 8px; }
  .logo { height: 36px; }
  /* opcional: esconder o texto da logo para economizar espaço */
  .logo-text { display: none; }
  nav a { font-size: 0.72rem; padding: 5px 6px; }
  .social-icons a { width: 30px; height: 30px; font-size: 0.85rem; }
}