:root {
  --blue-400: #2a4bf7;
  --blue-500: #213cc4;
  --green-300: #33BE2D;
  --green-200: #248b20; 
  --black: #000;
  --white: #fff;
}

/* Isolamento total das classes com prefixo lp- */
.lp-banner {
  background-image: url("/lentes/centro-adaptacao-lentes-de-contato/img/banner_centro_adap_lentes.png");
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  padding-top: 16rem;
}

.lp-card { 
  padding: 4.8rem 3.2rem;
  width: min(98rem, 55%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.8rem;
  border-radius: 1.6rem;
  background-color: rgba(255, 255, 255, 0.85); /* Deixei um pouco mais opaco para leitura */
  backdrop-filter: blur(1.5rem);
  margin: 10rem 0 auto;
}

.lp-card h1 {
  color: var(--black);
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
}

.lp-card h1 span {
  color: var(--blue-400);
}

.lp-card a {
  text-decoration: none;
}

.lp-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.6rem 3.2rem;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 1.2rem;
  background-color: var(--blue-400);
  border: none;
  color: var(--white);
  transition: all .2s ease-in;
  width: fit-content;
}

.lp-card-button:hover {
  background-color: var(--blue-500);
  cursor: pointer;
  color: var(--white);
}

.lp-content {
  padding: 4.8rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.8rem;
}

.lp-content h2 {
  font-size: 2.2rem;
  color: var(--blue-400);
  font-weight: 800;
  margin-bottom: 1.6rem;
  line-height: 1.3;
}

.lp-content p {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lp-content p span {
  font-weight: 700;
}

.lp-paragraph {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.lp-paragraph ul {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.6rem;
  color: var(--black);
}

.lp-paragraph li span {
  font-weight: 700;
  color: var(--blue-400);
}

.lp-images {
  border-radius: 2.4rem;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.lp-images img {
  width: 48%;
  border-radius: 2.4rem;
  object-fit: cover;
}

.lp-divisor {
  width: 100%;
  height: .2rem;
  background-color: #ddd;
  margin: 3.2rem 0;
}

.lp-content h3 {
  font-size: 2rem;
  text-align: center;
  color: var(--black);
  line-height: 1.5;
  font-weight: 700;
}

.lp-whatsapp-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.6rem 2.4rem;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 1.2rem;
  background-color: var(--green-300);
  border: none;
  color: var(--white);
  transition: all .2s ease-in;
  text-decoration: none;
}

.lp-whatsapp-button:hover {
  background-color: var(--green-200);
  color: var(--white);
  text-decoration: none;
}

.lp-lentes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.4rem;
  margin-top: 2.4rem;
}

.lp-lente-card {
  background-color: #f9f9f9;
  border-radius: 1.6rem;
  padding: 3.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #eee;
}

.lp-lente-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.lp-lente-card h4 {
  font-size: 1.8rem;
  color: var(--blue-400);
  font-weight: 800;
  margin: 0;
}

.lp-lente-card p {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}

.lp-imagem-destaque {
  width: 100%;
  max-width: 600px; /* Tamanho máximo fixo para a imagem */
  margin: 1.6rem auto; /* Centraliza a imagem */
  border-radius: 2.4rem;
  overflow: hidden;
}

.lp-imagem-destaque img {
  width: 100%;
  height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
  .lp-banner {
    min-height: 30vh;
    padding: 4.8rem 0;
  }
  .lp-card {
    width: 90%;
    padding: 3.2rem 2.4rem;
  }
  .lp-card h1 {
    font-size: 2.4rem;
  }
  .lp-card-button {
    font-size: 1.6rem;
    width: 100%;
  }
  .lp-images {
    flex-direction: column;
  }
  .lp-images img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .lp-banner {
    background-position: 70%;
  }
  .lp-card h1 {
    font-size: 2rem;
  }
  .lp-whatsapp-button {
    font-size: 1.6rem;
  }
  .lp-content p {
    text-align: left;
  }
  .lp-lentes-grid {
    grid-template-columns: 1fr;
  }
}