* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fcf8f6;
  --bg-soft: #f6efec;
  --bg-card: #ffffff;
  --bg-card-soft: #fff8f8;
  --text: #342c2c;
  --text-soft: #746868;
  --title: #241d1d;
  --line: rgba(80, 55, 55, 0.10);
  --line-strong: rgba(227, 95, 150, 0.20);
  --accent: #ea5d95;
  --accent-dark: #d94a84;
  --accent-soft: #fff0f5;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.06);
  --radius: 28px;
  --radius-sm: 18px;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #fffdfc 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 248, 246, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 110px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-icon span {
  height: 2px;
  width: 100%;
  background: var(--accent-dark);
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(217, 74, 132, 0.18);
}

.btn-secondary {
  background: transparent;
  color: var(--title);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--line-strong);
}

.hero {
  padding: 64px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--line-strong);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.04;
  color: var(--title);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.05rem;
  max-width: 620px;
  color: var(--text-soft);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.highlight-item strong {
  display: block;
  color: var(--title);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.highlight-item span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f3e8e8;
  height: 380px;
}

.hero-image-card img,
.hero-image-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
  filter: saturate(1.02);
}

.intro-band {
  padding: 0 0 86px;
}

.intro-band-grid {
  background: linear-gradient(135deg, #ffffff 0%, #fff7fa 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.intro-band-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--title);
  margin-bottom: 14px;
}

.intro-band-text p {
  color: var(--text-soft);
}

.intro-band-card {
  background: var(--accent-soft);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.intro-band-card p {
  font-weight: 600;
  color: var(--accent-dark);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 16px;
  border-radius: 16px;
}

section {
  padding: 100px 0;
}

.about-grid,
.benefits-grid,
.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  background: #f0e4e4;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.98) contrast(1.02);
}

.about-content h2,
.section-title h2,
.benefits-content h2,
.difference-card h2,
.local-seo-box h2,
.cta-box h2,
.map-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.1;
  color: var(--title);
  margin-bottom: 16px;
}

.about-content p,
.section-title p,
.benefits-content p,
.difference-card p,
.local-seo-box p,
.cta-box p,
.map-text p,
.hero-description {
  color: var(--text-soft);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  max-width: 65ch;
}

.about-content p + p {
  margin-top: 12px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-point {
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--title);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.services {
  background: linear-gradient(180deg, #fff9fb 0%, #fdf5f7 100%);
}

.section-title {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title p {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.service-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.service-card h3,
.difference-item h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--title);
  margin-bottom: 10px;
}

.service-card p,
.difference-item p {
  color: var(--text-soft);
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  color: var(--title);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.difference-card {
  background: linear-gradient(135deg, #fff2f7 0%, #ffffff 100%);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.difference-list {
  display: grid;
  gap: 18px;
}

.difference-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.local-seo-box {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 42px;
  box-shadow: var(--shadow-soft);
}

.local-seo-box p {
  margin-left: auto;
  margin-right: auto;
}

.testimonials {
  background: linear-gradient(180deg, #fff7fa 0%, #fdf3f7 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
  position: relative;
  transition: 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: "“";
  font-size: 3rem;
  position: absolute;
  top: 10px;
  left: 14px;
  color: var(--accent);
  opacity: 0.15;
}

.stars {
  color: #f4b400;
  font-size: 0.9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: none;
  hyphens: none;
}

.map-section {
  margin-top: 40px;
  padding: 86px 0;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.map-text {
  padding-right: 20px;
}

.map-text p {
  margin-bottom: 24px;
}

.map-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cta-box {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff0f6 0%, #ffffff 100%);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 56px 32px;
  box-shadow: var(--shadow);
}

.cta-box p {
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn {
  margin-top: 22px;
}

.footer {
  padding: 52px 0 36px;
  border-top: 1px solid var(--line);
  background: #fff9fa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 190px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-info p,
.footer-info a {
  color: var(--text-soft);
}

.footer-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--title);
  margin-bottom: 12px;
}

.footer-info p + p {
  margin-top: 6px;
}

.footer-info a:hover {
  color: var(--accent-dark);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 18px 35px rgba(217, 74, 132, 0.28);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(217, 74, 132, 0.34);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1rem;
}

.whatsapp-text {
  line-height: 1;
}

@media (max-width: 1000px) {
  .hero-grid,
  .intro-band-grid,
  .about-grid,
  .benefits-grid,
  .difference-grid,
  .services-grid,
  .footer-grid,
  .map-grid {
    grid-template-columns: 1fr;
  }

  .benefits-list,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    height: 320px;
  }

  .about-image {
    min-height: 360px;
  }

  .map-text {
    padding-right: 0;
  }
}

@media (max-width: 860px) {
  .menu-icon {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    right: -100%;
    width: 290px;
    height: calc(100vh - 88px);
    background: rgba(255, 250, 250, 0.98);
    border-left: 1px solid var(--line);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transition: right 0.28s ease;
    box-shadow: -12px 0 30px rgba(50, 25, 25, 0.08);
  }

  .menu-toggle:checked ~ .nav-menu {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 18px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-image-card {
    height: 240px;
  }

  .map-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .map-box {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .logo-img {
    height: 75px;
    width: auto;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-description,
  .about-content p,
  .section-title p,
  .benefits-content p,
  .difference-card p,
  .local-seo-box p,
  .cta-box p,
  .map-text p {
    font-size: 0.98rem;
    max-width: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-image-card {
    height: 220px;
  }

  .intro-band-grid,
  .local-seo-box,
  .cta-box,
  .difference-card,
  .service-card {
    padding: 24px;
  }

  .about-image {
    min-height: 240px;
  }

  .map-section {
    margin-top: 20px;
    padding: 68px 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 13px 16px;
    font-size: 0.9rem;
  }

  .whatsapp-icon {
    width: 32px;
    height: 32px;
  }

  section {
    padding: 70px 0;
  }
}

