/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f7f4f1;
  color: #2c2c2c;
  min-height: 100vh;
}

/* HEADER */
header {
  width: 100%;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #eee7e1;
  display: flex;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #5a3d2e;
  white-space: nowrap;
}

/* MAIN */
main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  text-align: center;
}

.hero {
  margin-bottom: 80px;
}

.intro {
  color: #9b633d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

#slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  color: #9b633d;
  margin-bottom: 25px;
  display: block;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

#slogan .slogan-word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.4s forwards;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.description {
  color: #7b644f;
  font-size: 18px;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 35px;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #9b633d;
  color: #fff;
  box-shadow: 0 10px 25px rgba(155, 99, 61, 0.18);
}

.primary-btn:hover {
  background: #855134;
  transform: translateY(-2px);
}

.secondary-btn {
  background: #fff;
  color: #9b633d;
  border: 1px solid #e3d4c8;
}

.secondary-btn:hover {
  transform: translateY(-2px);
  background: #fcf9f6;
}

/* SERVICES */
.services-section {
  margin-bottom: 90px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}

.service-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
}

.service-image {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 34px 30px 38px;
  text-align: center;
}

.service-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #9b633d;
  margin-bottom: 22px;
  line-height: 1.2;
}

.service-content p {
  font-size: 21px;
  line-height: 1.6;
  color: #7b644f;
  max-width: 390px;
  margin: 0 auto;
}

/* WHY US */
.why-us {
  margin-bottom: 80px;
}

.why-us h2,
.testimonials h2,
.final-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #5a3d2e;
  margin-bottom: 20px;
}

.advantages {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.advantage {
  background: #fff;
  padding: 30px 24px;
  border-radius: 20px;
  max-width: 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(140, 90, 60, 0.08);
}

.advantage i {
  font-size: 28px;
  color: #9b633d;
  margin-bottom: 16px;
}

.advantage h3 {
  color: #5a3d2e;
  margin-bottom: 10px;
  font-size: 20px;
}

.advantage p {
  color: #6e5a4c;
  line-height: 1.6;
  font-size: 15px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 20px 20px;
  margin-bottom: 80px;
}

.testimonial {
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial.visible {
  opacity: 1;
  transform: translateY(0);
}

.bubble {
  background: #dcf8c6;
  padding: 18px 22px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.bubble p {
  color: #2c2c2c;
  line-height: 1.6;
}

.author {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #555;
  margin-top: 8px;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, #9b633d, #7e4f31);
  color: white;
  padding: 50px 30px;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(155, 99, 61, 0.18);
}

.final-cta h2 {
  color: white;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/* FOOTER */
footer {
  width: 100%;
  padding: 25px 20px;
  text-align: center;
  color: #7a5a48;
  border-top: 1px solid #eee;
  font-size: 14px;
  background: #fff;
}

.social-icons {
  margin: 12px 0;
}

.social-icons a {
  margin: 0 12px;
  color: #9b633d;
  font-size: 22px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

/* TABLET */
@media (max-width: 1300px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-content h3 {
    font-size: 26px;
  }

  .service-content p {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  #slogan {
    font-size: 38px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    padding: 18px 20px;
    gap: 14px;
  }

  .logo-img {
    width: 56px;
    height: 56px;
  }

  .logo-text {
    font-size: 18px;
    white-space: normal;
  }

  main {
    padding: 40px 16px 30px;
  }

  #slogan {
    font-size: 28px;
    white-space: normal;
    overflow: visible;
    line-height: 1.2;
  }

  .description {
    font-size: 16px;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-image {
    height: 230px;
  }

  .service-content {
    padding: 24px 20px 28px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p {
    font-size: 16px;
  }

  .why-us h2,
  .testimonials h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .advantage {
    max-width: 100%;
  }

  .final-cta {
    padding: 35px 20px;
  }
}