/*
Theme Name: Huellas y Bigotes
Description: Tema personalizado para examen veterinaria.
Author: Ignacio
Version: 2.0
*/

/* --- Variables de Color --- */
:root {
  --color-primario: #3498db; /* Azul amigable */
  --color-secundario: #27ae60; /* Verde salud */
  --color-fondo: #f4f7f6; /* Gris muy claro */
  --color-texto: #2c3e50; /* Gris oscuro profesional */
  --blanco: #ffffff;
}

/* --- Reset y Estilos Globales --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.8;
}

/* --- Header y Navigation (Blanco) --- */
header {
  background-color: var(--blanco);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--color-primario);
}

.logo-container {
  margin-bottom: 10px;
}

.site-logo {
  max-width: 140px;
  height: auto;
  /* Al ser fondo blanco, el logo se verá integrado */
}

header h1 {
  color: var(--color-primario);
  font-size: 2.2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

header p {
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 1.5rem;
}

nav {
  margin-top: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

nav a {
  color: var(--color-texto);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--color-primario);
}

/* --- Contenedor Principal --- */
main {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 20px;
}

section {
  background: var(--blanco);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

h2 {
  color: var(--color-primario);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--color-secundario);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* --- Estilos de Servicios --- */
.servicio-item {
  background: #fdfdfd;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--color-primario);
  transition: transform 0.2s ease;
}

.servicio-item:hover {
  transform: translateX(10px);
}

.servicio-item h3 {
  color: var(--color-texto);
  margin-bottom: 10px;
}

/* --- Estilos de Combos --- */
.combo-container {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}

.combo {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  flex: 1;
  text-align: center;
  border: 2px solid #eee;
}

.combo h3 {
  color: #e67e22; /* Un naranja suave para resaltar combos */
  margin-bottom: 1rem;
}

.precio {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-secundario);
  margin: 15px 0;
}

/* --- Botón WhatsApp --- */
.btn-whatsapp {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: 3rem 1rem;
  background-color: var(--color-texto);
  color: var(--blanco);
  margin-top: 4rem;
}

/* --- Responsivo para Celulares --- */
@media (max-width: 600px) {
  .combo-container {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
