/*
Theme Name: Fazendinha Pet - Pixel Perfect
Theme URI: https://fazendinhapet.com.br
Description: Tema WordPress premium para Fazendinha Pet POA - Hotel & Daycare para cães
Version: 1.0.0
Author: Fazendinha Pet
Author URI: https://fazendinhapet.com.br
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fazendinha-pet
Domain Path: /languages
*/

/* ==========================================================================
   RESET E VARIÁVEIS GLOBAIS
   ========================================================================== */

:root {
  --color-marrom-escuro: #8b6f47;
  --color-laranja: #F4A460;
  --color-verde: #52B788;
  --color-azul: #4A90E2;
  --color-azul-claro: #87CEEB;
  --color-vermelho: #E74C3C;
  --color-amarelo: #FFD700;
  --color-background-claro: #FAF8F3;
  --color-background-medio: #F5F1E8;
  --color-background-servicos: #F8F6F1;
  --color-texto-escuro: #333333;
  --color-texto-cinza: #666666;
  --color-branco: #FFFFFF;
  
  --font-heading: 'Grobold', 'Arial Black', sans-serif;
  --font-body: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html, body {
  font-family: var(--font-body);
  color: var(--color-texto-escuro);
  line-height: 1.6;
  background-color: var(--color-background-claro);
}

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-marrom-escuro);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-texto-cinza);
}

/* ==========================================================================
   HEADER E NAVEGAÇÃO
   ========================================================================== */

header {
  background-color: var(--color-branco);
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-marrom-escuro);
  font-weight: 700;
}

.logo-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--color-texto-cinza);
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--color-texto-escuro);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-laranja);
}

nav a.active {
  color: var(--color-laranja);
  border-bottom: 2px solid var(--color-laranja);
  padding-bottom: 0.5rem;
}

.btn-agenda {
  background-color: var(--color-marrom-escuro);
  color: var(--color-branco);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-agenda:hover {
  background-color: #5a3a1f;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  background-color: var(--color-background-claro);
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-left {
  grid-column: 1;
}

.hero-left .subtitle {
  color: var(--color-laranja);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-left h1 {
  font-size: 3.5rem;
  color: var(--color-marrom-escuro);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-left p {
  font-size: 1rem;
  color: var(--color-texto-cinza);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background-color: var(--color-marrom-escuro);
  color: var(--color-branco);
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #5a3a1f;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-marrom-escuro);
  padding: 0.9rem 1.8rem;
  border: 2px solid var(--color-marrom-escuro);
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-secondary:hover {
  background-color: var(--color-marrom-escuro);
  color: var(--color-branco);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-content h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--color-marrom-escuro);
}

.stat-content p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--color-texto-cinza);
}

.hero-center {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  border: 8px solid var(--color-laranja);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-right {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  max-width: 250px;
  margin-bottom: 2rem;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-logo-text {
  text-align: center;
}

.hero-logo-text h2 {
  font-size: 2rem;
  color: var(--color-marrom-escuro);
  margin: 1rem 0 0.5rem 0;
}

.hero-logo-text p {
  font-size: 0.85rem;
  color: var(--color-texto-cinza);
  letter-spacing: 2px;
  margin: 0;
}

/* ==========================================================================
   SEÇÃO DIFERENCIAIS
   ========================================================================== */

.diferenciais {
  background-color: var(--color-background-claro);
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.diferenciais-title {
  text-align: center;
  font-size: 2rem;
  color: var(--color-marrom-escuro);
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.diferenciais-title::before,
.diferenciais-title::after {
  content: '🐾';
  font-size: 1.5rem;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.diferencial-card {
  background-color: var(--color-branco);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.diferencial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.diferencial-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.diferencial-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-marrom-escuro);
}

.diferencial-card p {
  font-size: 0.95rem;
  color: var(--color-texto-cinza);
  line-height: 1.6;
}

/* Cores específicas dos ícones */
.diferencial-card:nth-child(1) .diferencial-icon {
  background-color: #52B788;
  color: var(--color-branco);
}

.diferencial-card:nth-child(1) h3 {
  color: #52B788;
}

.diferencial-card:nth-child(2) .diferencial-icon {
  background-color: #F4A460;
  color: var(--color-branco);
}

.diferencial-card:nth-child(2) h3 {
  color: #F4A460;
}

.diferencial-card:nth-child(3) .diferencial-icon {
  background-color: #E74C3C;
  color: var(--color-branco);
}

.diferencial-card:nth-child(3) h3 {
  color: #E74C3C;
}

.diferencial-card:nth-child(4) .diferencial-icon {
  background-color: #4A90E2;
  color: var(--color-branco);
}

.diferencial-card:nth-child(4) h3 {
  color: #4A90E2;
}

.diferencial-card:nth-child(5) .diferencial-icon {
  background-color: #87CEEB;
  color: var(--color-branco);
}

.diferencial-card:nth-child(5) h3 {
  color: #87CEEB;
}

.diferencial-card:nth-child(6) .diferencial-icon {
  background-color: #FFD700;
  color: var(--color-branco);
}

.diferencial-card:nth-child(6) h3 {
  color: #FFD700;
}

/* ==========================================================================
   SEÇÃO DEPOIMENTOS
   ========================================================================== */

.depoimentos {
  background-color: var(--color-background-servicos);
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.depoimentos-title {
  text-align: center;
  font-size: 2rem;
  color: var(--color-marrom-escuro);
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.depoimentos-title::before,
.depoimentos-title::after {
  content: '❤️';
  font-size: 1.5rem;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.depoimento-card {
  background-color: var(--color-branco);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.depoimento-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.depoimento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depoimento-content {
  padding: 1.5rem;
}

.depoimento-stars {
  color: var(--color-amarelo);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}

.depoimento-text {
  font-size: 0.95rem;
  color: var(--color-texto-cinza);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: italic;
}

.depoimento-author {
  font-weight: 600;
  color: var(--color-marrom-escuro);
  font-size: 1rem;
}

.depoimento-role {
  font-size: 0.85rem;
  color: var(--color-texto-cinza);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background-color: var(--color-marrom-escuro);
  color: var(--color-branco);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-branco);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--color-laranja);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left,
  .hero-center,
  .hero-right {
    grid-column: 1;
  }

  .diferenciais-grid,
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  nav a {
    display: block;
    padding: 0.5rem 0;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-image {
    max-width: 100%;
  }

  .diferenciais-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }
}

/* ========================================
   MELHORIAS APLICADAS
   ======================================== */

/* MELHORIA #1: CONTRASTE DOS DIFERENCIAIS */
.diferencial-card p {
    color: #2d2d2d !important;
    font-weight: 500 !important;
}

.diferencial-card h3 {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

/* MELHORIA #2: BOTÃO WHATSAPP */
a[href*="wa.me"],
a[href*="whatsapp"],
.whatsapp-button,
.whatsapp-btn,
[class*="whatsapp"] {
    background-color: #25D366 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
}

a[href*="wa.me"]:hover,
a[href*="whatsapp"]:hover,
.whatsapp-button:hover,
.whatsapp-btn:hover,
[class*="whatsapp"]:hover {
    background-color: #1fbd56 !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4) !important;
    transform: translateY(-2px) !important;
}

a[href*="wa.me"],
a[href*="whatsapp"],
a[href*="wa.me"] *,
a[href*="whatsapp"] * {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* FIM DAS MELHORIAS */
