/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose-50:  #fff5f5;
  --rose-100: #ffe4e4;
  --rose-200: #fcc5c5;
  --rose-300: #f89b9b;
  --rose-400: #f26b6b;
  --rose-500: #e84848;
  --blush:    #f9eded;
  --cream:    #fffaf7;
  --warm-100: #f5ebe0;
  --warm-200: #e8d5c4;
  --text-dark:#2c1810;
  --text-mid: #6b4040;
  --text-soft:#9c7070;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --transition: .35s cubic-bezier(.4,0,.2,1);
  --shadow-card: 0 4px 24px rgba(180,100,100,.10);
  --shadow-hover: 0 12px 40px rgba(180,100,100,.18);
  --radius: 1rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Header ───────────────────────────────────────────────── */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 6%;
  background: rgba(255,250,247,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(248,155,155,.18);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(180,100,100,.12); }

.logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-mid);
}
.logo span { color: var(--rose-400); }

.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose-300);
  transition: width var(--transition);
}
.nav a:hover { color: var(--rose-400); }
.nav a:hover::after { width: 100%; }

.nav-btn {
  background: var(--rose-300);
  color: #fff !important;
  padding: .5rem 1.3rem;
  border-radius: 2rem;
  font-weight: 500 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-btn:hover { background: var(--rose-400) !important; transform: translateY(-1px); }
.nav-btn::after { display: none !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5% 6rem 8%;
  gap: 1.8rem;
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--rose-300);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
}
.hero-title em {
  font-style: italic;
  color: var(--rose-400);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 38ch;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose-300);
  color: #fff;
  box-shadow: 0 6px 20px rgba(242,107,107,.28);
}
.btn-primary:hover {
  background: var(--rose-400);
  box-shadow: 0 8px 28px rgba(242,107,107,.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--warm-200);
}
.btn-outline:hover {
  border-color: var(--rose-300);
  color: var(--rose-400);
  transform: translateY(-2px);
}

.hero-gallery {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}

.hero-grid-item {
  overflow: hidden;
}
.hero-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.hero-grid-item:hover img { transform: scale(1.06); }
.hero-grid-item:first-child {
  grid-row: 1 / 3;
}

/* ── Section Shared ───────────────────────────────────────── */
.section {
  padding: 7rem 6%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-300);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1.5px;
  background: var(--rose-300);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-dark);
  max-width: 22ch;
}
.section-title em { font-style: italic; color: var(--rose-400); }

/* ── Products ─────────────────────────────────────────────── */
.products { background: var(--blush); }

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--rose-50);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img img { transform: scale(1.08); }

.product-info {
  padding: 1.1rem 1.2rem 1.3rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.product-price {
  font-size: .85rem;
  color: var(--rose-400);
  font-weight: 500;
}

/* ── About ────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 640px;
}

.about-images {
  position: relative;
  overflow: hidden;
}
.about-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  gap: 3px;
}
.about-img-wrap {
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.about-img-wrap:hover img { transform: scale(1.06); }

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 7% 5rem 6%;
  gap: 1.8rem;
  background: var(--warm-100);
}

.about-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.85;
  max-width: 46ch;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: .5rem;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.about-feat::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose-300);
  flex-shrink: 0;
}

/* ── Portfolio ────────────────────────────────────────────── */
.portfolio { background: #fff; }

.portfolio-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.portfolio-header .section-label { justify-content: center; }
.portfolio-header .section-title { margin: 0 auto; }

.masonry {
  columns: 4;
  column-gap: 1rem;
}
@media (max-width: 1100px) { .masonry { columns: 3; } }
@media (max-width: 700px)  { .masonry { columns: 2; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: calc(var(--radius) * .75);
  overflow: hidden;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(180,80,80,.35) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover::after { opacity: 1; }
.masonry-item:hover img { transform: scale(1.06); }

/* ── Jobs / Contact ───────────────────────────────────────── */
.contact {
  background: var(--rose-50);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 7rem 6%;
}

.contact-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 2.4rem;
  box-shadow: var(--shadow-card);
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--rose-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--rose-400); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.contact-card p {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.contact-card a { color: var(--rose-400); }

.payment-badges {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.badge {
  background: var(--warm-100);
  color: var(--text-mid);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 2rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.45);
  text-align: center;
  padding: 2rem 6%;
  font-size: .8rem;
  letter-spacing: .05em;
}
.footer a { color: rgba(255,255,255,.6); }
.footer a:hover { color: var(--rose-300); }

/* ── WhatsApp Float ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.38);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
}
.whatsapp-float img { width: 30px; }

/* ── Carousel Dots (hidden on desktop) ───────────────────── */
.carousel-dots { display: none; }

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 48px; height: 1.5px;
  background: var(--rose-200);
  margin: 0 auto;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .7s cubic-bezier(.4,0,.2,1) forwards; }
.fade-up:nth-child(2).visible { animation-delay: .1s; }
.fade-up:nth-child(3).visible { animation-delay: .2s; }
.fade-up:nth-child(4).visible { animation-delay: .3s; }
.fade-up:nth-child(5).visible { animation-delay: .4s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 6rem 6% 3rem; }

  /* Carrossel */
  .hero-gallery { height: 72vw; position: relative; overflow: hidden; }

  .hero-grid {
    display: flex;
    flex-direction: row;
    grid-template-columns: unset;
    grid-template-rows: unset;
    width: 300%;
    height: 100%;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
  }

  .hero-grid-item {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 100%;
    grid-row: auto !important;
  }

  .carousel-dots {
    display: flex;
    position: absolute;
    bottom: .9rem;
    left: 50%;
    transform: translateX(-50%);
    gap: .45rem;
    z-index: 10;
  }
  .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), transform var(--transition), width var(--transition);
  }
  .dot.active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
  }

  .about { grid-template-columns: 1fr; }
  .about-images { height: 55vw; }
  .about-images-grid { height: 100%; }
  .about-content { padding: 3.5rem 6%; }

  .nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100dvh - 72px);
    overflow-y: auto;
    background: var(--cream);
    border-top: 1px solid var(--rose-100);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav a { font-size: 1.1rem; }
  .menu-toggle { display: flex; }

  .products-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .section { padding: 5rem 5%; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); }
}
