﻿:root {
  --bg: #fff1ea;
  --bg-2: #f7d6cb;
  --ink: #2b1419;
  --muted: #6b4f57;
  --accent: #e06a5f;
  --accent-2: #f2b680;
  --accent-3: #8b3b6a;
  --card: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.62);
  --shadow: 0 24px 70px rgba(43, 20, 25, 0.16);
  --radius: 24px;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  min-height: 100vh;
  background: radial-gradient(circle at 15% 10%, #ffe7dc 0%, var(--bg) 35%, var(--bg-2) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(transparent 0 3px, rgba(255, 255, 255, 0.18) 3px 4px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  background-size: 32px 32px, 100% 100%;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

main {
  position: relative;
  z-index: 2;
}

.bg-shapes {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
  mix-blend-mode: multiply;
}

.s1 {
  width: 340px;
  height: 340px;
  background: conic-gradient(from 90deg, #f8c2b2, #f2a994, #f7d3c6, #f8c2b2);
  top: -80px;
  left: -80px;
}

.s2 {
  width: 260px;
  height: 260px;
  background: conic-gradient(from 120deg, #f2b680, #f7c7a8, #e06a5f, #f2b680);
  bottom: 8%;
  right: -60px;
  animation-delay: 3s;
}

.s3 {
  width: 200px;
  height: 200px;
  background: conic-gradient(from 45deg, #e7b0c6, #d78db1, #f3c5d8, #e7b0c6);
  top: 45%;
  left: 50%;
  animation-delay: 6s;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw;
  background: linear-gradient(180deg, rgba(255, 241, 234, 0.92), rgba(255, 241, 234, 0.75));
  backdrop-filter: blur(14px);
  z-index: 20;
  border-bottom: 1px solid rgba(43, 20, 25, 0.08);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(224, 106, 95, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: transform 0.6s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 50px rgba(224, 106, 95, 0.4);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(43, 20, 25, 0.2);
  box-shadow: none;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.9rem;
}
.btn-whatsapp {
  background: linear-gradient(120deg, #1fa855, #4cd67a);
  box-shadow: 0 16px 40px rgba(31, 168, 85, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 22px 50px rgba(31, 168, 85, 0.4);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 8vw 40px;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20% 10% auto 10%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(224, 106, 95, 0.16), transparent 60%);
  opacity: 0.8;
  z-index: -1;
  animation: glow 8s ease-in-out infinite;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.05;
  margin: 12px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--muted);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-bullets {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 600;
}

.hero-bullets span {
  position: relative;
  padding-left: 18px;
}

.hero-bullets span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  position: absolute;
  left: 0;
  top: 0.5em;
  transform: translateY(-50%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 28px;
}

.hero-stats .stat {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.hero-stats .label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--glass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(43, 20, 25, 0.12);
  animation: rise 1s ease forwards;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(224, 106, 95, 0.6), rgba(242, 182, 128, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-top span {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.card-top h3 {
  font-size: 1.7rem;
  margin: 12px 0 24px;
  font-family: "Cormorant Garamond", serif;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 80px 8vw;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-head p {
  color: var(--muted);
  max-width: 520px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(43, 20, 25, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(224, 106, 95, 0.12));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(43, 20, 25, 0.18);
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.75rem;
  background: rgba(224, 106, 95, 0.15);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.shot {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 30px rgba(43, 20, 25, 0.14);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shot img {
  transition: transform 0.6s ease;
}

.shot:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px rgba(43, 20, 25, 0.22);
}

.shot:hover img {
  transform: scale(1.06);
}

.shot figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(43, 20, 25, 0.8);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tall {
  grid-row: span 2;
}

.packages {
  position: relative;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(43, 20, 25, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(43, 20, 25, 0.2);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.featured {
  background: linear-gradient(140deg, rgba(255, 247, 241, 0.95), rgba(247, 214, 203, 0.85));
  border: 1px solid rgba(224, 106, 95, 0.25);
  box-shadow: 0 30px 70px rgba(224, 106, 95, 0.2);
  transform: translateY(-12px);
}

.testimonials {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 241, 234, 0.9));
}

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

blockquote {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-style: italic;
  color: var(--ink);
}

blockquote span {
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-form {
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(43, 20, 25, 0.18);
  font-family: inherit;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 106, 95, 0.2);
}

.contact-info {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 241, 234, 0.75));
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
}

.badge {
  background: rgba(224, 106, 95, 0.15);
  color: var(--accent);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 24px 8vw 40px;
  color: var(--muted);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(8deg); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 80px;
    right: 8vw;
    background: #fff;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 16px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .featured {
    transform: translateY(0);
  }
}

.instagram {
  position: relative;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ig-card {
  background: linear-gradient(135deg, rgba(224, 106, 95, 0.25), rgba(242, 182, 128, 0.25));
  border-radius: 18px;
  padding: 26px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 22px 50px rgba(43, 20, 25, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ig-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ig-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(43, 20, 25, 0.2);
}

.ig-card:hover::after {
  opacity: 1;
}

.ig-card span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.ig-card strong {
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", serif;
}

.ig-cta {
  margin-top: 26px;
}

.instagram .ig-embed-grid,
.reels .ig-embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.ig-embed {
  position: relative;
  min-height: 360px;
}

.ig-fallback {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(247, 214, 203, 0.65));
  box-shadow: 0 20px 50px rgba(43, 20, 25, 0.12);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(1px);
}

.ig-embed.loaded .ig-fallback {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  visibility: hidden;
}

.instagram .instagram-media,
.reels .instagram-media {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(43, 20, 25, 0.14) !important;
}

.instagram .instagram-media iframe,
.reels .instagram-media iframe {
  border-radius: 18px !important;
}

.reels {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(247, 214, 203, 0.5));
}

