
* {
  margin: 0 5px;
  padding: 0;
  box-sizing: border-box;
}



body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: #444;
  scroll-behavior: smooth;
}

/* PALETA DE COLORES PASTELES */
:root {
  --pink: #f7b0b7;
  --blue: #95d9ee;
  --gold: #b8ebb8;
  --white: #ffffff;
  --text: #555;
}

/* HEADER HERO */
.hero {
  background-image: url("../img/IMG_0629.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  color: #fff;
  position: relative;
  text-align: center;
  height: 800PX; 
  
 
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  position: absolute;
  top: 60%;       /* lo baja (aumenta este valor si quieres más abajo) */
  left: 50%;
  transform: translate(-50%, -50%);  /* lo centra visualmente mejor en esa zona */

  color: #333;    /* ajusta color a tu gusto */
  z-index: 1;
  
}

.hero p {
  font-size: 1.5rem;
  letter-spacing: 2px;
  position: absolute;
  top: 75%;       /* lo baja (aumenta este valor si quieres más abajo) */
  left: 50%;      /* lo mueve desde el borde izquierdo */
  transform: translate(-50%, -50%); 
 
  color: #333;    /* ajusta color a tu gusto */
  z-index: 2;
}

.btn {

  background-color: var(--gold);
  color: #333;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;

  position: absolute;
  top: 88%; 
  left: 50%;      /* lo mueve desde el borde izquierdo */
  transform: translate(-50%, -50%);  /* lo centra visualmente mejor en esa zona */

  color: #333;    /* ajusta color a tu gusto */
  z-index: 3;

}

.btn:hover {
  background-color: #f0e5be;
 
}

/* SECCIONES GENERALES */
section {
  padding: 80px 20px;
  text-align: center;
}

h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ABOUT */
.about {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: var(--text);
  width: 100%;
  margin: 0 auto;
}

/* SERVICES */
.services {
  background-color: #fef9f4;
}

.service-cards {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}




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

.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.card h3 {
  color: #444;
  margin: 15px 0 10px;
}

.card p {
  color: #666;
  padding: 0 20px 25px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* CONTACT */
.contact {
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: #333;
}

/* FOOTER */
footer {
  background-color: #fdf1f2;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-float img {
  width: 35px;
  margin-top: 12px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* TOOLTIP */
.tooltip {
  visibility: hidden;
  opacity: 0;
  width: 120px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  right: 70px;
  top: 15px;
  transition: opacity 0.3s;
  font-size: 0.8rem;
}

.whatsapp-float:hover .tooltip {
  visibility: visible;
  opacity: 1;
}


.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn2 {
  background-color: #f1909d; /* Usa tu color o define --gold */
  color: #0c090a;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn2:hover {
  background-color: #f7ac0a;
}










/* ANIMACIÓN LATIDO */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Tablets (pantallas medianas) */
@media (max-width: 1024px) {
  .hero {
    height: 600px;
    background-size: contain;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
    top: 65%;
  }

  .btn {
    padding: 10px 20px;
    top: 78%;
  }
}

/* Celulares (pantallas pequeñas) */
@media (max-width: 768px) {
  .hero {
    height: 500px;
    background-position: center;
    background-size: cover;
  }

  .hero h1 {
    font-size: 2rem;
    top: 60%;
  }

  .hero p {
    font-size: 1rem;
    top: 60%;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
    
  }
}

/* Celulares muy pequeños */
@media (max-width: 480px) {
  .hero {
    height: 350px;
    background-size: cover;
  }

  .hero h1 {
    font-size: 1.5rem;
    top: 60%;
  }

  .hero p {
    font-size: 0.8rem;
    top: 75%;
  }

  .btn {
    font-size: 0.8rem;
    padding: 6px 15px;
    top: 88%;
  }
}