@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #1a2a3a;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.btn:active {
  transform: translateY(0);
}
.btn--red {
  background: #e53935;
  color: #ffffff;
  border: 3px solid #ef9a9a;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.5);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 48px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero__bg {
    object-position: left center;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 33, 55, 0.15) 0%, rgba(13, 33, 55, 0.55) 55%, rgba(13, 33, 55, 0.72) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  animation: fadeUp 0.8s ease both;
}
.hero__title {
  font-family: "Caveat", cursive;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: #ffffff;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.features {
  background: #ffffff;
  padding: 80px 32px;
}
.features__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .features__inner {
    grid-template-columns: 1fr;
  }
}
.features__heading {
  font-family: "Caveat", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a2a3a;
  margin-bottom: 16px;
}
.features__body {
  font-size: 1rem;
  color: #4a6070;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}
.features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 480px) {
  .features__cards {
    grid-template-columns: 1fr;
  }
}
.features__photo .polaroid {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transform: rotate(-3deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.features__photo .polaroid:hover {
  transform: rotate(-1deg) scale(1.03);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}
.features__photo .polaroid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.features__photo .polaroid__label {
  height: 48px;
  margin-top: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.feature-card {
  text-align: center;
  padding: 16px;
  border-top: 2px solid #e0eaf4;
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  color: #1565c0;
}
.feature-card__icon svg {
  width: 100%;
  height: 100%;
}
.feature-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.feature-card p {
  font-size: 0.8rem;
  color: #4a6070;
  line-height: 1.4;
}

.testimonial {
  background: linear-gradient(180deg, #deedfb 0%, #f0f7ff 100%);
  padding: 80px 32px;
}
.testimonial__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__heading {
  font-family: "Caveat", cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1a2a3a;
  margin-bottom: 40px;
}
.testimonial__quote {
  border: none;
  font-style: normal;
}
.testimonial__quote p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1a2a3a;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  padding: 0 32px;
}
.testimonial__quote p::before {
  content: "“";
  font-family: "Caveat", cursive;
  font-size: 4rem;
  color: #1e88e5;
  position: absolute;
  left: 0;
  top: -16px;
  line-height: 1;
}
.testimonial__quote cite {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1565c0;
  font-style: normal;
}

.cta {
  position: relative;
  padding: 96px 32px 64px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 33, 55, 0.55) 0%, rgba(13, 33, 55, 0.72) 100%);
  z-index: 1;
}
.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  width: 100%;
}
.cta__text {
  text-align: center;
}
.cta__heading {
  font-family: "Caveat", cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}
.cta__sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cta__socials {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.social-btn svg {
  width: 28px;
  height: 28px;
}
.social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.social-btn--whatsapp {
  background: #25d366;
}
.social-btn--facebook {
  background: #1877f2;
}
.social-btn--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-btn--tiktok {
  background: #000000;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding: 32px 24px 96px;
  }
  .hero__content {
    text-align: center;
  }
  .features__text {
    order: 2;
  }
  .features__photo {
    order: 1;
  }
  .cta__paraglider {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
