/*
 * Estilos principais para a landing page do Ponto de Cura Pet.
 * A paleta de cores em verde reforça a sensação de natureza, cuidado e equilíbrio.
 */

/* Reset básico para remover margens e paddings inesperados */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #ffffff;
}

/* Highlighted text for hero heading */
.highlight {
  color: #0da94d;
}

/* Hero icon styling */
.hero-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-icon svg {
  width: 48px;
  height: 48px;
  stroke: #0da94d;
  stroke-width: 2;
  fill: none;
}

/* Utilizamos uma largura de contêiner flexível para centralizar o conteúdo */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cabeçalho com borda inferior discreta */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.header h1 {
  font-size: 1.5rem;
  text-align: center;
  color: #055821;
  font-weight: 600;
}

/* Seção hero com degradê verde suave */
.hero {
  background: linear-gradient(180deg, #f1fbf1 0%, #e6f7e6 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #055821;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.1rem;
  color: #333;
}

.heart-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0da94d;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #0da94d;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
}

.btn-whatsapp:hover {
  background-color: #0a8b3e;
}

/* Sobre: layout em duas colunas para desktops e uma coluna para telas menores */
.about {
  padding: 3rem 0;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #055821;
}

.about-text p {
  margin-bottom: 1rem;
  color: #333;
}

.about-image {
  flex: 1 1 50%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
}

/* Seção 'Para quem' com texto centralizado */
.audience {
  background-color: #f8fdf8;
  padding: 3rem 0;
}

.audience h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #055821;
}

.audience p {
  max-width: 800px;
  margin: 0 auto 1rem auto;
  text-align: center;
  color: #333;
}

/* Lista de serviços em colunas para melhor aproveitamento do espaço */
.services {
  padding: 3rem 0;
}

.services h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #055821;
}

.services-list {
  list-style: none;
  columns: 2;
  column-gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.services-list li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  color: #333;
}

.services-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0da94d;
}

/* New services grid replacing bullet list */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: #f1fbf1;
  border: 1px solid #e0f4e5;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.service-card h4 {
  margin: 0;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #055821;
  line-height: 1.3;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: #0da94d;
  stroke-width: 2;
  fill: none;
}

/* Seção de terapias com cards informativos */
.therapies {
  background-color: #f8fdf8;
  padding: 3rem 0;
}

.therapies h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #055821;
}

.therapies p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  text-align: center;
  color: #333;
}

.therapies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.therapy-card {
  background-color: #ffffff;
  border: 1px solid #e4f2e4;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.therapy-card h4 {
  margin-top: 0;
  margin-bottom: 0.25rem;
  color: #055821;
  font-size: 1.2rem;
}

.therapy-card p {
  color: #333;
  font-size: 0.95rem;
}

/* Therapy icon styling */
.therapy-icon svg {
  width: 28px;
  height: 28px;
  stroke: #0da94d;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Therapy content wrapper */
.therapy-content {
  flex: 1;
}

/* Depoimentos com grid responsivo */
.testimonials {
  padding: 3rem 0;
}

.testimonials h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #055821;
}

.testimonials .subheading {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background-color: #f1fbf1;
  border: 1px solid #e0f4e5;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

/* testimonial image container */
.testimonial-img img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

/* testimonial content wrapper */
.testimonial-content h4 {
  margin: 0 0 0.25rem 0;
  color: #055821;
  font-size: 1.2rem;
}

.testimonial-content .species-age {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0a8b3e;
  margin-bottom: 0.5rem;
}

.testimonial-content .testimonial-text {
  font-size: 0.95rem;
  color: #333;
}

.testimonial-card h4 {
  margin: 0.5rem 0 0.25rem 0;
  color: #055821;
  font-size: 1.2rem;
}

.species-age {
  font-weight: 600;
  font-size: 0.9rem;
  color: #0a8b3e;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #333;
}

/* Chamada final para ação com degradê suave */
.call-to-action {
  background: #0da94d;
  padding: 3rem 0;
  text-align: center;
  color: #ffffff;
}

.call-to-action h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.call-to-action p {
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  color: #ffffff;
}

.call-to-action .btn-whatsapp {
  margin-top: 0.5rem;
  background-color: #ffffff;
  color: #0da94d;
  border: 2px solid #ffffff;
}

.call-to-action .btn-whatsapp:hover {
  background-color: #f1fbf1;
  color: #0da94d;
}

/* Rodapé discreto */
.footer {
  background-color: #fafafa;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-text,
  .about-image {
    flex: 1 1 100%;
  }
  .services-list {
    columns: 1;
  }
}

/* FAQ question styling: make questions bold in Times New Roman at 14pt */
.faq-item h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14pt;
  font-weight: bold;
}

/* FAQ answer styling: set the font size to 14pt */
.faq-item p,
.faq-item ul li {
  font-size: 14pt;
}

/* FAQ phone line styling */
.faq-phone {
  margin-top: 1rem;
  font-size: 14pt;
  text-align: center;
  color: #055821;
}

/* Contact phone styling in the call-to-action section */
.cta-phone {
  margin-top: 1rem;
  font-size: 14pt;
  text-align: center;
  color: #055821;
}

/* Button for FAQ link on the home page */
.btn-faq {
  display: inline-block;
  background-color: #e6f7e6;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #0da94d;
  transition: background-color 0.2s ease-in-out;
}

.btn-faq:hover {
  background-color: #d8f2d8;
}