/* =====================
   RESET & BASE
   ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
}
 
/* =====================
   NAVBAR
   ===================== */
.brand-text-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 2px;
  pointer-events: none;
}
 
.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }

  .brand-text-center {
    display: none;
  }
}

/* =====================
   HERO
   ===================== */
.hero {
  width: 100%;
  height: 55vh;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
 
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
 
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(95%);
}
 
.hero-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  max-width: 700px;
  width: 100%;
  padding: 0 24px;
  z-index: 2;
}
 
.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  text-wrap: balance;
}
 
.hero-text p {
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* =====================
   HERO MOBILE OPTIMIZATION
   ===================== */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    max-width: 100%;
    padding: 0 16px;
  }
 
  .hero-text h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto 10px;
  }
 
  .hero-text p {
    font-size: 0.9rem;
    max-width: 85%;
    margin: 0 auto;
  }
}

/* ajuste fino para pantallas muy pequeñas */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.25rem;
  }
}

/* =====================
   BOTONES
   ===================== */
a.botonx {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  padding: 8px 15px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 300;
}
 
a.botonx:hover {
  background-color: #333;
}
 
/* =====================
   SERVICIOS
   ===================== */
.services {
  padding: 20px 10px;
  text-align: center;
}
 
.services h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #000;
  font-weight: 300;
  letter-spacing: 1px;
}
 
.services .cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}
 
.services .card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
}
 
.services .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
 
.services .card h3 {
  color: #444;
  margin-bottom: 10px;
  font-weight: 300;
}
 
.services .card a.botonx {
  margin-top: auto;
}
 
.circle-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
 
@media (max-width: 1024px) {
  .services .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
 
@media (max-width: 768px) {
  .services {
    padding: 20px 10px;
  }
 
  .services h2 {
    font-size: 1.6rem;
  }
 
  .services .cards {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .services .card {
    max-width: none;
  }
}
 
@media (max-width: 480px) {
  .services .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
/* =====================
   CTA
   ===================== */
.cta-section {
  padding: 40px 10px;
  background-color: #f7f7f7;
  text-align: center;
}
 
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #000;
}
 
.cta-section p {
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 300;
  color: #444;
}
 
.cta-section a.botonx {
  padding: 10px 20px;
}
 
/* =====================
   NOVEDADES
   ===================== */
.novedades-home {
  padding: 40px 20px;
  background-color: #f7f7f7;
  text-align: center;
}
 
.novedades-home h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 400;
  color: #222;
}
 
.novedades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
 
.novedad-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: left;
}
 
.novedad-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
 
.novedad-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0;
  font-weight: 400;
}
 
.novedad-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}
 
.novedad-card .botonx {
  margin-top: auto;
}
 
@media (max-width: 992px) {
  .novedades-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 576px) {
  .novedades-grid {
    grid-template-columns: 1fr;
  }
}
 
/* =====================
   GALERÍA
   ===================== */
.gallery-section .gallery-img {
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
 
.gallery-section .row > div {
  margin-bottom: 0.2rem !important;
}
 
/* =====================
   QUIÉNES SOMOS
   ===================== */
.about-section {
  padding: 2rem 0;
}
 
.about-section .about-narrow {
  max-width: 900px;
  margin: 0 auto;
}
 
.about-section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
 
.about-section p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}
 
.about-img {
  object-fit: cover;
}
 
.round-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 
/* =====================
   FOOTER
   ===================== */
.footer {
  background-color: #000000;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.8em;
  color: #fff;
}

.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-content p {
  margin: 5px 0;
}

.footer nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 5px 0 0 0;
}

.footer nav ul li {
  list-style: none;
}

.footer nav a {
  text-decoration: none;
  color: white;
}

.footer nav a:hover {
  color: #e0b7b7;
}

@media (max-width: 600px) {
  .footer nav ul {
    flex-direction: column;
    align-items: center;
  }
}

/* =====================
   STATS / CONTADOR
   ===================== */
.stats-section {
  padding: 40px 20px;
  background-color: #111;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: #aaa;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer {
  background: #000000;
  border-top: 1px solid #e9e9e9;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #444;
  transition: 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #000;
}

/* INSTAGRAM */
.instagram-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.instagram-icon:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

}









.legal-page {
  background: #fff;
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.4rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.8;
  color: #444;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: white;
}