* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #35c3ee;
  span: {
    color: #d14d72;
  }
}

/* HEADER */
header {
  padding: 20px 5%;
  background: white;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

.logo span {
  color: #56295f;
}

.btn-nav {
  background: #2d7bbf;
  color: rgb(6, 4, 7);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* HERO */
.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("capaa.jpg.jpeg");
  font-size: large;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  margin-top: 10px;
}

.hero span {
  color: #d14d72;
}

.btn-main {
  display: inline-block;
  margin-top: 20px;
  background: #d14d72;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
}

/* SECTIONS */
section {
  padding: 80px 5%;
  text-align: center;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 40px;
  gap: 20px;
}

.service-card {
  padding: 30px;
  border-radius: 10px;
  background: #f9f9f9;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* BEFORE AFTER */
.before-after img {
  width: 100%;
  border-radius: 10px;
}

/* REVIEWS */
.reviews {
  background: #f9f9f9;
}

/* CTA */
.cta {
  background: #2d7bbf;
  color: white;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.whatsapp-float img {
  width: 60px;
}

.reviews .service-card:hover {
  transform: scale(1.03);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}
