/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff5f7;
}
/* Navegación */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  background-color: #FFFFFF;

  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}


.nav-content {
  max-width: 1200px;
 
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Botón toggle (hamburguesa) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: absolute;
  right: 20px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 5px;
}

/* Responsive */



.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}
.menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("img/Manicuria1.jpg");
  background-position: center;
  background-size: cover;
  filter: brightness(0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-content1 {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.imagenesGaleria {
  display: flex;
  width: 100%;
  height: 350px;
}
.imagenesGaleria img {
  width: 0px;
  flex-grow: 1;
  object-fit: cover;
  opacity: 0.8;
  transition: 0.5s ease;
}

.imagenesGaleria img:hover {
  cursor: crosshair;
  width: 300px;
  opacity: 1;
  filter: contrast(120%);

}
.info-list svg {
  color: #c5195b;
}

.info-list svg{
  width: 20px;
  height: 20px;
  stroke: #c5195b;
  color: #c5195b;
}
.info-list svg path {
  fill: none;
  stroke: #c5195b;
}


/* Buttons */
.btn {
  background-color: #f43f5e;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn1 {
  background-color: #f43ff4;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e11d48;
}

.btn1:hover {
  background-color: #e11d48;
}

/* Services Section */
.services {
  padding: 5rem 1rem;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
  color: #1f2937;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
  display: inline-flex;
  padding: 1rem;
  background-color: #fff5f7;
  border-radius: 9999px;
  color: #f43f5e;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.service-card p {
  color: #6b7280;
}

/* About Section */
.about {
  background-color: white;
  padding: 5rem 1rem;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.about-text p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #4b5563;
}



/* Contact Section */
.contact {
  padding: 5rem 1rem;
  background-color: #fff5f7;
}

.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 4rem;
  color: #1f2937;
}
.contact svg,
.contact i {
  color: #e0dbdd; /* mismo violeta */
  stroke: currentColor;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgb(246, 242, 242);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.contact-info1 {
  text-align: center; /* Centra todo el contenido */
}

.contact-info1 h3 {
  margin-bottom: 20px; /* Espaciado entre el título y los íconos */
}

.contact-info1 a {
  display: inline-block; /* Permite aplicar estilos como margen o hover */
  margin: 0 15px; /* Espaciado entre los íconos */
  text-decoration: none;
}

.contact-info1 i {
  font-size: 3rem; /* Aumenta el tamaño de los íconos */
  color: #b816b8;
  transition: transform 0.3s ease; /* Efecto suave al hacer hover */
}

.contact-info1 i:hover {
  transform: scale(1.2); /* Agranda los íconos al pasar el cursor */
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.social {
  margin: 50px;
}
.social p {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.info-list p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
}

.info-list svg {
  color: #932c3d;
}

/* Footer */
footer {
  background-color: #1f2937;
  color: white;
  text-align: center;
  padding: 2rem;
  
}footer a{
  
 text-decoration: none;
  
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
.btn_wp {
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  bottom: 30px;
  right: 30px;
  background: #0df053;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
}
.btn_insta {
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  bottom: 30px;
  right: 100px;
  background: #fff;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
}
h1{
    text-align: center;
    margin: 16px 0;
}
.galeria{
    padding: 16px;
}

.ImgPrincipal img{
    width: 100%;
    height:300px;
    animation: ImagenMovidaIzquierda 3s forwards;
    object-fit: cover;
}
.ImgSecundarias img{
    
    object-fit: cover;
    width: 400px;
    height: 300px;
    margin-right: 5px;
}
.ImgSecundarias{

    width: 100%;
    display: flex;
    overflow-x: auto;
    position:relative;
    margin-top: 5px;

}
.galeria2{
    padding: 16px;
       position: relative;
}


.galeria2 .ImgPrincipal{
    width: 100%;
    object-fit: cover;
    
    overflow-x: auto;
    display: flex;
    margin-right: 10px;
 

}

.galeria2 .ImgPrincipal img{
  object-fit: cover;
  margin-right: 5px;
    width:500px;
    height: 400px;
}
.galeria10 .ImgPrincipal img{
    width: 99%;
    height:300px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
   margin:  auto;
}
.galeria3 {
  column-count: 4;        /* Cambiá a 2 o más según el tamaño de pantalla */
  column-gap: 12px;
  padding: 10px;
     
  margin: auto;   
}

.galeria3 img {
  width: 100%;
  max-width: 150%;
  margin-bottom: 12px;
  border-radius: 12px;
  animation: ImagenMovidaDerecha 3s forwards;
}
/* Fondo oscuro del lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0,0,0,0.9);
}

/* Imagen centrada */
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {transform:scale(0.8)}
  to {transform:scale(1)}
}

/* Botón cerrar */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Flechas */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 40px;
  padding: 16px;
  color: #fff;
  user-select: none;
  transition: 0.3s;
}

.prev { left: 10%; }
.next { right: 10%; }

.prev:hover, .next:hover, .close:hover {
  color: #ccc;
}

@keyframes ImagenMovidaIzquierda {
  from {
    transform: translateX(-200px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes ImagenMovidaDerecha {
  from {
    transform: translateX(+200px);
  }
  to {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .galeria3 {
    column-count: 3;
  }
  @media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
}

@media (max-width: 480px) {
  .galeria3 {
    column-count: 2;
  }
}

/* ya esta */
.Card{
  margin-left: 10px;
  display: flex;
   overflow-x: auto;
    margin-right: 10px;
    position: relative;

}
.Card img{
    width: 200px;
    object-fit: cover;
    height: 300px;
}
