body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  background: #f7f3fb;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}
.main-header {
  text-align: center;
  background: #a678d5;
  padding: 2em 1em 1.5em;
  border-bottom: 4px solid #a678d5;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-centered {
  max-width: 220px; /* Aumentado desde 160px */
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}

.logo {
  height: 90px;
  margin-right: 20px;
}

.header-text h1 {
  margin: 0;
  font-size: 2.5em;
}

.header-text h2 {
  margin: 0;
  font-size: 1.3em;
  font-weight: normal;
}

section {
  max-width: 1000px;
  margin: 2em auto;
  padding: 0 1.5em;
}

.intro h3 {
  font-size: 1.6em;
  color: #6e4599;
  margin-bottom: 0.5em;
}

.departments {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}

.dept {
  flex: 1;
  min-width: 320px;
  background: white;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.focus-equinos ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.focus-equinos li {
  position: relative;
  padding-left: 1.8em;
  font-size: 1.15em;
  margin-bottom: 0.6em;
  color: #444;
}

.focus-equinos li::before {
  content: '🐴';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  line-height: 1.2em;
}

.form-section {
  background: white;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-top: 3em;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input, textarea, select {
  font-size: 1.1em;
  padding: 0.9em;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: #a678d5;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  background: #a678d5;
  color: white;
  font-size: 1.1em;
  padding: 0.9em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background: #8f5dc3;
}

footer {
  text-align: center;
  background: #e7dcf4;
  padding: 2em 1em;
  font-size: 0.95em;
  margin-top: 3em;
  color: #5a4274;
}

.thanks-container {
  background: white;
  padding: 2.5em 3em;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(159, 123, 200, 0.3);
  max-width: 480px;
  width: 90%;
  margin: 10vh auto;
  text-align: center;
  color: #5f3d76;
}

.thanks-container h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #865aa0;
}

.thanks-container p {
  margin-bottom: 1.5em;
  font-size: 1.1em;
}

.thanks-container a.button {
  background: #a678d5;
  color: white;
  padding: 0.8em 1.6em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.thanks-container a.button:hover {
  background: #865aa0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.departments .dept:nth-child(1) {
  animation: fadeInLeft 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

.departments .dept:nth-child(2) {
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
  animation-delay: 0.6s;
}
.intro-heading {
  position: relative;
  display: inline-block;
  font-size: 1.8em;
  color: #6e4599;
  margin-bottom: 0.4em;
}

.intro-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #a678d5;
  margin: 0.4em auto 0;
  border-radius: 4px;
}


.intro-image {
  float: right;
  margin: 0 0 1em 1em;
  max-width: 100%;
  width: 90%; /* o 100%, si querés que escale según el contenedor */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.intro {
  background: #f0e9f8; /* fondo lila muy suave */
  border-left: 6px solid #a678d5;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.intro h3 {
  font-size: 1.8em;
  color: #6e4599;
  margin-top: 0;
}

.intro p {
  font-size: 1.1em;
  color: #444;
}

.dept.veterinaria p,
.dept.talabarteria p {
  font-size: 1.15em;
}

.dept h4 i {
  color: #a678d5;
  margin-right: 0.5em;
  font-size: 1.3em;
  vertical-align: middle;
}
.focus-equinos {
  background: #f0e9f8;
  padding: 2em;
  margin-top: 3em;
  border-left: 6px solid #a678d5;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.focus-equinos h3 {
  font-size: 1.6em;
  color: #6e4599;
  margin-top: 0;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.focus-equinos ul {
  list-style: disc;
  margin-left: 1.5em;
}

.focus-equinos li {
  font-size: 1.15em;
  margin-bottom: 0.6em;
  color: #444;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.focus-equinos {
  animation: fadeUp 1s ease-out both;
}
.focus-equinos li i {
  color: #a678d5;
  margin-right: 0.5em;
}

.whatsapp-contact {
  max-width: 1000px;
  margin: 3em auto;
  padding: 2em;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
}

.whatsapp-contact h3 {
  font-size: 1.8em;
  color: #6e4599;
  margin-bottom: 1.2em;
}

.whatsapp-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.whatsapp-card {
  background: #faf6ff;
  border: 1px solid #d6c3e6;
  padding: 1.5em;
  border-radius: 10px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.whatsapp-card:hover {
  transform: translateY(-4px);
}

.whatsapp-card h4 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  color: #4e2a6e;
}

.whatsapp-card a {
  font-size: 1.2em;
  color: #1e7e34;
  font-weight: bold;
  text-decoration: none;
}

.whatsapp-card a:hover {
  text-decoration: underline;
}

.note {
  font-size: 0.9em;
  color: #555;
  margin-top: 0.5em;
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-boxes {
    flex-direction: column;
    align-items: center;
  }
}

/* Animación scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
