@charset "UTF-8";
html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #FAFAFA;
  color: #2c363f;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1A1B1F;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: #1A1B1F;
  transition: color 0.3s ease;
  font-weight: bold;
}
a:hover {
  color: rgb(35.2, 43.2, 50.4);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.contenedor {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
}

/* =========================================
   BOTÓN PREMIUM (Minimalista y Elegante)
========================================= */
.boton {
  display: inline-block;
  background-color: #7A1F1F;
  color: #FFFFFF;
  padding: 1.5rem 5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  margin-top: 3rem;
  border: 1px solid #7A1F1F;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.boton:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.boton:active {
  transform: scale(0.98);
}

/* =========================================
   HEADER GLASSMORPHISM (Lujo moderno)
========================================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Efecto cristal elegante en lugar de un color sólido aburrido */
  background-color: rgba(250, 250, 250, 0.85);
  border-bottom: 1px solid rgba(26, 27, 31, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}
.header .header__logo {
  margin-left: 4rem;
  display: flex;
  align-items: center;
}
.header .header__logo .logo-img {
  width: 8rem;
  transition: transform 0.3s ease;
}
.header .header__logo .logo-img:hover {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  .header .header__logo {
    margin-left: 2rem;
  }
  .header .header__logo .logo-img {
    width: 6rem;
  }
}
.header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: 2rem;
  color: #1A1B1F;
  transition: color 0.3s ease;
}
.header .menu-toggle:hover {
  color: #7A1F1F;
}
.header .navegacion {
  display: flex;
  margin-right: 5rem;
  gap: 3.5rem;
}
.header .navegacion a {
  color: #1A1B1F;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  /* Subrayado animado súper elegante */
}
.header .navegacion a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: #7A1F1F;
  transition: width 0.3s ease;
}
.header .navegacion a:hover {
  color: #7A1F1F;
}
.header .navegacion a:hover::after {
  width: 100%;
}
.header {
  /* --- RESPONSIVE HEADER --- */
}
@media (min-width: 576px) and (max-width: 768px) {
  .header .header__logo {
    margin-left: 3rem;
  }
  .header .navegacion {
    margin-right: 3rem;
    gap: 2.5rem;
  }
}
@media (max-width: 576px) {
  .header .menu-toggle {
    display: block;
  }
  .header .navegacion {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(250, 250, 250, 0.98);
    border-top: 1px solid rgba(26, 27, 31, 0.05);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
    display: none;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 2rem 0;
  }
  .header .navegacion.mostrar {
    display: flex;
  }
  .header .navegacion a {
    width: 100%;
    text-align: center;
    padding: 1.5rem 0;
    color: #1A1B1F;
    border-bottom: 1px solid rgba(26, 27, 31, 0.03);
  }
  .header .navegacion a::after {
    display: none;
  }
  .header .navegacion a:hover {
    background-color: #F3F4F6;
    color: #7A1F1F;
  }
}

/* =========================================
   HERO SECTION (Oscuro y Dramático)
========================================= */
.imagen-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 60rem;
  overflow: hidden;
}
@media (max-width: 576px) {
  .imagen-hero {
    height: 70vh;
    min-height: 50rem;
  }
}

.img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Un gradiente en lugar de un color sólido para dar profundidad y dramatismo */
/* =========================================
   HERO SECTION (Actualizada para más Nitidez)
========================================= */
/* Aclaramos el gradiente para recuperar nitidez */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 27, 31, 0.1) 0%, rgba(26, 27, 31, 0.4) 100%);
  z-index: 1;
}

.hero-contenido {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  max-width: 80rem;
  text-align: center;
  text-shadow: 0 2px 5px rgba(26, 27, 31, 0.3);
}

.hero-titulo {
  color: #FFFFFF;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: 1px;
  font-size: 4rem;
}

.hero-texto {
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 60rem;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Aquí mantienes tus imports intactos */
.servicios {
  padding: 10rem 0;
  background-color: #FAFAFA;
  margin-top: 6rem;
}

.servicios__titulo {
  text-align: center;
  margin-bottom: 6rem;
  color: #1A1B1F;
  font-size: 3.6rem;
}

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

.servicio-card {
  background-color: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.servicio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.servicio-card__imagen {
  width: 100%;
  height: 25rem;
  overflow: hidden;
}

.servicio-card__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.servicio-card:hover .servicio-card__imagen img {
  transform: scale(1.05);
}

.servicio-card__contenido {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.servicio-card__contenido h3 {
  font-size: 2.2rem;
  color: #1A1B1F;
  margin-bottom: 1.5rem;
}

.servicio-card__contenido p {
  color: #6B7280;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.btn-borgona {
  display: inline-block;
  background-color: #7A1F1F;
  color: #FFFFFF;
  padding: 1.2rem 2.5rem;
  text-align: center;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border: 1px solid #7A1F1F;
  font-weight: 600;
}

.btn-borgona:hover {
  background-color: transparent;
  color: #7A1F1F;
}

@media (min-width: 576px) and (max-width: 768px) {
  .servicios__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}
@media (max-width: 576px) {
  .servicios {
    padding: 6rem 0;
  }
  .servicios__titulo {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .servicios__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .servicio-card__imagen {
    height: 30rem;
  }
}
.img-vete {
  width: 40rem;
}

.veterinario {
  display: flex;
  max-width: 70rem;
  margin: 0 auto;
  margin-top: 20rem;
  gap: 4rem;
  line-height: 3.2rem;
}
@media (max-width: 576px) {
  .veterinario {
    display: block;
    margin-top: 15rem;
  }
  .veterinario .img-vete {
    width: 30rem;
    margin: 0 auto;
  }
  .veterinario .info-vete {
    max-width: 80%;
    margin: 0 auto;
  }
  .veterinario .info-vete h1, .veterinario .info-vete p {
    text-align: center;
    margin-top: 4rem;
  }
}

.galeria {
  padding: 10rem 0;
  background-color: #FAFAFA;
}

.galeria__titulo {
  text-align: center;
  margin-bottom: 6rem;
  color: #1A1B1F;
  font-size: 3.6rem;
}

.galeria__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 28rem;
  gap: 2rem;
}

.galeria__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.galeria__item--destacado {
  grid-column: 1/3;
  grid-row: 1/3;
}

.galeria__item--ancho {
  grid-column: 3/5;
}

.galeria__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.galeria__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 27, 31, 0.85) 0%, rgba(26, 27, 31, 0) 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.galeria__overlay span {
  color: #FFFFFF;
  font-size: 2.2rem;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.galeria__item:hover .galeria__img {
  transform: scale(1.06);
}

.galeria__item:hover .galeria__overlay {
  opacity: 1;
}

.galeria__item:hover .galeria__overlay span {
  transform: translateY(0);
}

@media (min-width: 576px) and (max-width: 768px) {
  .galeria__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 25rem;
  }
  .galeria__item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .galeria__item--destacado {
    grid-column: 1/3 !important;
    grid-row: span 2 !important;
  }
  .galeria__item--ancho {
    grid-column: 1/3 !important;
  }
}
@media (max-width: 576px) {
  .galeria {
    padding: 6rem 0;
  }
  .galeria__titulo {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .galeria__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 30rem;
    gap: 1.5rem;
  }
  .galeria__item {
    grid-column: 1/-1 !important;
    grid-row: span 1 !important;
  }
  .galeria__overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(26, 27, 31, 0.7) 0%, rgba(26, 27, 31, 0) 40%);
  }
  .galeria__overlay span {
    transform: translateY(0);
  }
}
/* Variables basadas en tu paleta */
.testimonios {
  padding: 10rem 0;
  background-color: #f0f2f5;
  margin-top: 5rem;
}

.testimonios__titulo {
  text-align: center;
  margin-bottom: 7rem;
  color: #1A1B1F;
  font-size: 3.6rem;
}

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

.testimonio-card {
  background-color: #FAFAFA;
  padding: 5rem 4rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease;
}

.testimonio-card:hover {
  transform: translateY(-5px);
}

.testimonio-card__estrellas {
  color: #7A1F1F;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5rem;
}

.testimonio-card__texto {
  font-size: 1.6rem;
  color: #6B7280;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 4rem;
  flex-grow: 1;
}

.testimonio-card__cliente {
  border-top: 1px solid rgba(26, 27, 31, 0.1);
  padding-top: 2.5rem;
  width: 100%;
}

.testimonio-card__cliente h4 {
  font-size: 1.8rem;
  color: #1A1B1F;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.testimonio-card__cliente p {
  font-size: 1.4rem;
  color: #A3A3A3;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 576px) and (max-width: 768px) {
  .testimonios__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .testimonio-card:last-child {
    grid-column: 1/3;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .testimonios {
    padding: 6rem 0;
  }
  .testimonios__titulo {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .testimonios__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .testimonio-card {
    padding: 4rem 2.5rem;
  }
  .testimonio-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
}
.contacto {
  padding: 10rem 0;
  background-color: #FAFAFA;
}

.contacto__titulo {
  text-align: center;
  margin-bottom: 6rem;
  color: #1A1B1F;
  font-size: 3.6rem;
}

.contacto__formulario {
  max-width: 90rem;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 6rem;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

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

.contacto__campo {
  display: flex;
  flex-direction: column;
}

.contacto__campo--full {
  grid-column: 1/3;
}

.contacto__campo label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1B1F;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contacto__campo input,
.contacto__campo select,
.contacto__campo textarea {
  font-size: 1.6rem;
  padding: 1.5rem;
  background-color: #FAFAFA;
  border: 1px solid rgba(26, 27, 31, 0.1);
  border-radius: 2px;
  color: #2c363f;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contacto__campo input:focus,
.contacto__campo select:focus,
.contacto__campo textarea:focus {
  outline: none;
  border-color: #7A1F1F;
  background-color: #FFFFFF;
}

.contacto__campo textarea {
  resize: vertical;
}

.contacto__enviar {
  text-align: center;
  margin-top: 2rem;
}

.contacto__enviar .btn-borgona {
  width: 100%;
  padding: 1.6rem;
  cursor: pointer;
  font-size: 1.4rem;
}

@media (min-width: 576px) and (max-width: 768px) {
  .contacto__formulario {
    padding: 4rem;
  }
}
@media (max-width: 576px) {
  .contacto {
    padding: 6rem 0;
  }
  .contacto__titulo {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .contacto__formulario {
    padding: 2.5rem 2rem;
  }
  .contacto__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contacto__campo--full {
    grid-column: 1/2;
  }
}
/* --- Sección Ubicación Aura Vet --- */
.ubicacion {
  background-color: #FAFAFA;
  padding: 10rem 0;
}

.ubicacion__contenedor {
  max-width: 120rem;
  margin: 0 auto;
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background-color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(26, 27, 31, 0.05);
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 576px) and (max-width: 768px) {
  .ubicacion__contenedor {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .ubicacion__contenedor {
    grid-template-columns: 1fr;
  }
}

.ubicacion__info {
  padding: 8rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 576px) {
  .ubicacion__info {
    padding: 5rem 3rem;
  }
}

.ubicacion__titulo {
  color: #1A1B1F;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.ubicacion__texto {
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 5rem;
  font-weight: 300;
}

.ubicacion__detalles {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.detalle {
  position: relative;
  padding-left: 2.5rem;
  border-left: 2px solid rgba(122, 31, 31, 0.15);
  transition: border-color 0.4s ease;
}
.detalle:hover {
  border-left-color: #7A1F1F;
}

.detalle__etiqueta {
  display: block;
  color: #7A1F1F;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.detalle__valor {
  color: #1A1B1F;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.ubicacion__mapa {
  width: 100%;
  height: 100%;
  min-height: 50rem;
  position: relative;
  filter: grayscale(30%) contrast(110%);
  transition: filter 0.6s ease;
}
.ubicacion__mapa:hover {
  filter: grayscale(0%) contrast(100%);
}
.ubicacion__mapa iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 576px) and (max-width: 768px) {
  .ubicacion__mapa {
    min-height: 45rem;
  }
}
@media (max-width: 576px) {
  .ubicacion__mapa {
    min-height: 35rem;
  }
}

.footer {
  background-color: #F3F4F6;
  border-top: 1px solid rgba(26, 27, 31, 0.06);
  box-shadow: 0 -10px 30px rgba(26, 27, 31, 0.02);
  padding: 8rem 0 3rem 0;
}

.footer__contenedor {
  max-width: 120rem;
  margin: 0 auto;
  width: 90%;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}
@media (min-width: 576px) and (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
@media (max-width: 576px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.footer__marca {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  width: 12rem;
  margin-bottom: 2rem;
}

.footer__texto {
  color: #6B7280;
  line-height: 1.8;
  font-weight: 300;
  max-width: 40rem;
}

.footer__titulo {
  color: #1A1B1F;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__nav a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.3s ease;
  width: fit-content;
  position: relative;
}
.footer__nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #7A1F1F;
  transition: width 0.3s ease;
}
.footer__nav a:hover {
  color: #7A1F1F;
}
.footer__nav a:hover::after {
  width: 100%;
}

.footer__iconos {
  display: flex;
  gap: 2rem;
}
.footer__iconos a {
  color: #6B7280;
  transition: all 0.3s ease;
}
.footer__iconos a:hover {
  color: #7A1F1F;
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(26, 27, 31, 0.08);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  color: #6B7280;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 576px) {
  .footer__bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

.footer__legales {
  display: flex;
  gap: 3rem;
}
.footer__legales a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__legales a:hover {
  color: #1A1B1F;
}
@media (max-width: 576px) {
  .footer__legales {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Estilos para el botón flotante de WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #7A1F1F;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto Hover sutil y elegante */
.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
}

/* Tamaño del icono SVG */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #FFF;
}

/* Responsive: Se adapta mejor en dispositivos móviles (Mobile-First de diseño, ajuste sutil) */
@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 15px;
    right: 15px;
    width: 55px;
    height: 55px;
  }
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}