/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f8f9fa;
  }
  
  .highlight {
    color: #3498db;
    font-weight: 700;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Header */
  header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    flex-direction: row;         /* Sempre em linha */
    justify-content: space-between;
    align-items: center;
    /* Removido o flex-wrap para evitar que os itens quebrem */
  }

  .logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 1;              /* Permite encolher se necessário */
  }
  
  .logo img {
    width: 100px;
    height: auto;
    /* Para telas menores, podemos reduzir o tamanho */
  }
  
  .site-name h1 {
    font-size: clamp(1.2rem, 2vw, 1.6rem); /* Ajusta dinamicamente entre 1.2rem e 1.6rem */
    color: white;
    margin: 0;
    overflow: hidden;            /* Evita estouro */
    text-overflow: ellipsis;     /* Mostra "..." se o texto for muito longo */
    white-space: nowrap;         /* Mantém o título em uma única linha */
  }
  
  .city-state {
    color: rgba(255,255,255,0.9);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    margin-left: 20px;
  }
  
  .phone-social {
    display: flex;
    align-items: center;
    gap: 1rem;                   /* Reduzido para evitar excesso de espaço */
  }

  .hero-buttons {
    display: flex;
    gap: 0.5rem;        /* Menor espaço entre os botões */
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;  /* Mantém na mesma linha */
    margin-top: 1rem;   /* Reduz o espaço acima */
  }

  .hero-content a.phone-button,
.hero-content a.email-button {
  margin: 0 2rem;  /* Adiciona margem horizontal entre os botões */
}
  
  .phone {
    width: 200px;
    height: 60px;
    padding-left: 1.6rem;
    border-radius: 50px;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-decoration: none;
    white-space: nowrap;
    font-weight: bold;
  }
  
  .email-button {
    background: #3498db;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
    text-decoration: none;
  }
  
  .email-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.4);
  }
  
  .social-media {
    display: flex;
    gap: 25px;
  }
  
  .social-media a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .social-media a:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
    transform: scale(1.1);
  }
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('imagens/2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    padding: 2rem;
  }
  
  .hero-content h2 {
    font-size: 3.7rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .highlight-blue {
    color: #3498db;
    font-weight: 700;
  }
  
  .hero-content p {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }
  
  .phone-button {
    background: #3498db;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
    text-decoration: none;
  }
  
  
  .phone-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.4);
  }
  
  /* Features Section */
  .features-section {
    padding: 5rem 0;
  }
  
  .features-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
  }
  
  .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
  }
  
  .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .benefits-list {
    display: grid;
    gap: 1.5rem;
  }
  
  .benefits-list li {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .service-item {
    background: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  }
  
  .service-item i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
  }
  
  /* Reviews Section */
  .reviews-section {
    padding: 4rem 0;
    background: #fff;
  }
  
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .review-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  }
  
  .stars {
    color: #f1c40f;
    margin-bottom: 0.5rem;
  }
  
  /* Coverage Section */
  .coverage-section {
    padding: 4rem 0;
    background: #f0f4f8;
  }
  
  .map-side-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  }
  
  iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .coverage-list {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: 2rem;
    border-radius: 10px;
    color: white;
  }
  
  .coverage-list h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  
  .coverage-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .coverage-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .coverage-list i {
    color: #27ae60;
  }
  
  /* Contact Form Section */
  .contact-form-section {
    padding: 5rem 0;
    background: #f0f4f8;
    background-image: url(imagens/como-manter-a-casa-limpa-e-organizada.webp);
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat; 
  }
  
  .lead-form {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .lead-form h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .lead-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
  }
  
  .lead-form input,
  .lead-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .lead-form input:focus,
  .lead-form textarea:focus {
    border-color: #3498db;
    outline: none;
  }
  
  .lead-form button {
    background: #3498db;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
  }
  
  .lead-form button:hover {
    background: #2980b9;
    transform: translateY(-2px);
  }
  
  /* Footer */
  footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
  }
  
  footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
  }
  
  .modal.show {
    display: flex;
  }
  
  .success-icon {
    color: #27ae60;
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  /* Responsividade */
  
  /* Para tablets e telas médias */
  @media screen and (max-width: 1024px) {
    .phone-social {
      gap: 2rem;
    }
    
    .city-state {
      font-size: 1.3rem;
      margin-left: 10px;
    }
    
    .phone {
      width: auto;
      padding: 0.5rem 1rem;
      font-size: 1.3rem;
    }
  }
  
  /* Para telas de até 768px */
  @media screen and (max-width: 768px) {

    header .container {
        padding: 0 0rem; /* Reduzir padding lateral */
      }
    
      .logo img {
        width: 70px; /* Reduzir mais o logo */
        margin-left: -20px;
      }

      .site-name {
        margin-left: -20px;
      }
    
      .site-name h1 {
        font-size: 1.2rem; /* Tamanho fixo para mobile */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        
      }
    
      .phone-social {
        gap: 0.5rem; /* Reduzir espaço entre ícones */
        flex-shrink: 0; /* Impedir que encolha */
      }
    
      .social-media {
        gap: 10px; /* Reduzir espaço entre ícones sociais */
      }
    
      .social-media a {
        font-size: 1rem; /* Reduzir tamanho dos ícones */
      }
    
      /* Garantir alinhamento perfeito */
      .logo-title {
        min-width: 0; /* Permitir que o texto encolha */
        flex-shrink: 1;
      }
    
      .phone {
        font-size: 1rem; /* Reduzir tamanho do telefone */
        padding: 0.5rem 1rem;
      }
    }
    .hero-content p {
      font-size: 1.6rem;
    }
    
    .content-wrapper {
      grid-template-columns: 1fr;
    }
    
    .map-side-content {
      grid-template-columns: 1fr;
    }
    
    .coverage-list ul {
      grid-template-columns: 1fr;
    }
    
    .lead-form {
      padding: 2rem;
      margin: 0 1rem;
    }
  
  @media screen and (max-width: 480px) {

    .logo img {
        width: 10px;  /* diminui a logo para liberar espaço */
        left: 0;
      }
  
    .hero-content h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-align: center;
    }
  
    .hero-content p {
      font-size: 1.5rem;
      line-height: 1.6;
      padding: 0 1rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }


    .social-media a {
        font-size: 1.0rem;  
      }
  
    .hero-buttons {
      display: inline-flex;  
      gap: 1rem;             
      justify-content: center;
      width: 100%;
    }
  
    .hero-buttons a.phone-button,
    .hero-buttons a.email-button {
      padding: 1rem 1.5rem;   
      font-size: 1rem;
      border-radius: 50px;
    }
  }

  @media screen and (max-width: 360px) {
    .hero-buttons {
      display: flex;
      flex-direction: column;  
      gap: 1rem;             
      width: 100%;
      align-items: center;
    }
  
    .hero-content a.phone-button,
    .hero-content a.email-button {
      margin: 0;               /* Remove margens laterais */
      padding: 1rem 2.5rem;    /* Tamanho do botão consistente */
      text-align: center;      /* Centraliza o texto dentro do botão */
    }
  }

  @media screen and (max-width: 663px) and (max-height: 1207px) {
    .hero-buttons {
      display: flex;
      flex-direction: column;  
      gap: 1rem;               
      width: 100%;
      align-items: center;
      text-align: center;
    }
  
    .hero-content a.phone-button,
    .hero-content a.email-button {
      margin: 0;               /* Remove margens laterais */
      padding: 1rem 2.5rem;    /* Tamanho do botão consistente */
      text-align: center;      /* Centraliza o texto dentro do botão */
    }

    .hero-buttons i.phone-button,
    .hero-buttons i.email-button {
        padding: 0 0 0 30px;
    }

    .social-media a {
        font-size: 0.8rem;
        margin-top: 105px;  
      }
  
    .logo img {
      width: 90px;           
    }
    
    .hero-content h2 {
      font-size: 3rem;        
      text-align: center;
      margin-bottom: 1rem;
    }
    
    .hero-content p {
      font-size: 1.5rem;      
      padding: 0 1rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }
  }

  @media screen and (max-width: 480px) {
    header {
      padding: 5px 10px;  
    }
    

    .social-media a {
      font-size: 0.5rem;  
    }
    

    .hero-content h2 {
      font-size: 2.8rem;  
      margin-bottom: 1rem;  
      text-align: center;
    }
    
 
    .hero-content p {
      font-size: 1.4rem;   
      line-height: 1.4;    
      margin-bottom: 1rem; 
      text-align: center;
      padding: 0 1rem;    
    }

    .logo-title {
        width: 100%;
        justify-content: flex-start;
      }
      
      /* Caso necessário, ajuste o título diretamente */
      .site-name h1 {
        text-align: left;
        margin-left: 30px; /* ajuste conforme necessário */
      }

  }