/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #e1e1e1;
}

  
  /* Tipografía base y color de fondo */
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #FEFEFE;
    color: #205C2C;
    line-height: 1.6;
    padding: 0 1rem;
  }
  
  /* Contenedor general centrado */
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Encabezado */
  header {
    background-color: #205C2C;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  header .llamada {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  header .llamada svg {
    flex-shrink: 0;
  }

  header .llamda p {
    margin: 0;
  }

  header .llamada a:hover {
    color: #ffffff;
  }

  
  
  nav a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: bold;
  }
  
  /* Hero */
  .hero {
    text-align: center;
    padding: 4rem 2rem;
    background-image: url('/mnt/data/Logo-de-inverhaus.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100px;
  }
  
  .hero img {
    width: 250px;
    height: 250px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-top: 60px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    background-color: #205C2C;
    color: white;
    padding: 1rem 2rem;
    margin-top: 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  /* Secciones generales */
  .services, .reviews, .tips, .gallery, #contacto {
    padding: 2rem 0;
  }
  
  /* Cards */
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .card {
    background-color: #5FAA4A;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Títulos */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  /* Reseñas y tips */
  .review, .tip {
    background-color: #ffffff;
    border-left: 4px solid #205C2C;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  /* Galería */
  .gallery img {
    max-width: 49%;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    
  }
  
  /* Contacto */
  #contacto {
    background-color: #ffffff;
    border: 2px solid #5FAA4A;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  }
  
  #contacto h2 {
    color: #205C2C;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  #contacto p {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  #contacto ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  #contacto li {
    background-color: #F9F9F6;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  #contacto li:hover {
    background-color: #EFFAF0;
    transform: translateY(-3px);
  }
  
  #contacto a {
    text-decoration: none;
    color: #205C2C;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  #contacto a:hover {
    color: #163b1f;
  }

  #contacto span {
    color: #000;
  }

  .icon-tabler-brand-whatsapp {
    color: #25D366;
  }
  
  .icon-tabler-brand-facebook {
    color: #3b5998;
  }

  .icon-tabler-mail {
    color: #575757;
  }

  
  /* Pie de página */
  footer {
    background-color: #A3461D;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
  }
  footer a {
    color: #e1e1e1;
  }

  footer a:hover {
    color: #575757;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav {
      margin-top: 1rem;
    }
  
    .hero img {
      width: 180px;
      height: 180px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .cta-button {
      width: 100%;
    }
  
    #contacto ul {
      flex-direction: column;
      align-items: center;
    }
  
    .services {
      grid-template-columns: 1fr;
    }
  }
  