* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* HEADER */
.header {
  background-image: url('/assets/header-bg.png'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 450px; 
  padding: 40px 10%;
}

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

.header-left {
  max-width: 450px;
}

.logo {
  max-width: 180px;
  margin-bottom: 15px;
}

.welcome {
  font-size: 18px;
  color: white;
}

.header-left h1 {
  font-size: 32px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
}

.header-left h1 span {
  color: #ff3c3c; /* Vermelho para "links" */
}

.buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
}

.red {
  background-color: #ff3c3c;
}

.green {
  background-color: #25d366;
}

.header-right .pets {
  max-width: 350px;
}

/* --- Layout geral da seção --- */
.servicos {
  text-align: center;
  padding: 40px 20px;
}

.servicos h2 {
  color: #00aaff;
  font-size: 28px;
  margin-bottom: 5px;
}

.servicos p {
  color: #555;
  margin-bottom: 30px;
}

.servicos-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.servico-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  background-color: #00aaff;
  border-radius: 10px;
  overflow: hidden;
}

.servico-img {
  width: 50%;
  height: 150px;
  background-size: cover;
  background-position: center;
}

.servico-img.esquerda {
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.servico-img.direita {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.servico-texto {
  width: 50%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  padding: 0 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .header {
    height: auto;
    min-height: 100vh;
    padding: 20px 5%;
    display: flex;
    align-items: center;
  }

  .header-content {
    flex-direction: column;
    justify-content: center;
  }

  .header-left {
    text-align: center;
    margin-bottom: 30px;
  }

  .header-right .pets {
    max-width: 250px;
    width: 100%;
  }

  .servicos-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
    max-width: 500px;
    margin: 0 auto;
  }

  .servico-card {
    flex-direction: column;
    height: auto;
    transition: transform 0.2s;
  }

  .servico-card:hover {
    transform: translateY(-5px);
  }

  .servico-img {
    width: 100%;
    height: 200px;
    clip-path: none !important;
  }

  .servico-texto {
    width: 100%;
    padding: 20px;
    height: auto;
  }

  /* Remove os clip-paths em mobile */
  .servico-img.esquerda,
  .servico-img.direita {
    clip-path: none;
  }
}

@media (max-width: 480px) {
  .header-left h1 {
    font-size: 24px;
  }

  .welcome {
    font-size: 16px;
  }

  .servico-img {
    height: 160px;
  }

  .servico-texto {
    padding: 15px;
    font-size: 16px;
  }
}
