/* ============================================================
   Arte que Prende — estilos
   ============================================================ */

:root {
  --ink: #1C1B19;
  --paper: #FBFAF7;
  --white: #ffffff;
  --muted: #5C594F;
  --muted-2: #7A776E;
  --line: #ECEAE3;

  --coral: #F26B5E;
  --yellow: #F6C544;
  --teal: #2BB3A3;
  --sky: #7FC4E8;

  --coral-soft: #FCEAE8;
  --yellow-soft: #FBF1D4;
  --teal-soft: #DCF1EE;
  --sky-soft: #E4F0F8;

  --maxw: 1180px;
  --radius-card: 24px;

  --font-head: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

img { display: block; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; letter-spacing: -0.01em; margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; }

.dot-sm { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }

.c-coral { color: var(--coral); }
.c-teal  { color: var(--teal); }
.c-sky   { color: var(--sky); }
.bg-coral { background: var(--coral); }
.bg-yellow { background: var(--yellow); }
.bg-teal { background: var(--teal); }
.bg-sky { background: var(--sky); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(242,107,94,0.3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(242,107,94,0.38); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  border: 1.5px solid #E4E1D8;
}
.btn--ghost:hover { border-color: #CFCBC0; }
.btn--sm { font-size: 15px; padding: 11px 20px; }

/* ---------- disc / botão placeholder ---------- */
.disc {
  border-radius: 50%;
  aspect-ratio: 1;
  box-shadow: inset 0 0 0 6px #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  
}

.disc img{
  width: 100%;
  border-radius: 100%;
  border: solid #fff;
}

.disc--coral { border: 8px solid var(--coral); }
.disc--yellow { border: 8px solid var(--yellow); }
.disc--teal { border: 8px solid var(--teal); }
.disc--sky { border: 8px solid var(--sky); }
.disc__label { font-family: ui-monospace, Menlo, monospace; font-size: 18px; color: #000000; text-align: center; }
.disc__big { font-family: var(--font-head); font-weight: 600; color: #B9B5AB; height: auto;
    }

/* ---------- square / botão placeholder ---------- */
.square {
  border-radius: 10%;
  aspect-ratio: 1;
  box-shadow: inset 0 0 0 6px #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.square img{
  width: 100%;
  border-radius: 10%;
  border: solid #fff;
}


/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { height: 120px; width: auto; mix-blend-mode: multiply; }
.main-nav { display: flex; align-items: center; gap: 26px; font-weight: 600; font-size: 24px; color: #48453E; }
.main-nav a { padding: 4px 0; }
.main-nav a:hover { color: var(--coral); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 40px;
}
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.3rem); line-height: 1.02; margin-top: 18px; }
.hero p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.6; color: var(--muted); max-width: 30ch; margin: 22px 0 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero__art { position: relative; width: 100%; max-width: 440px; aspect-ratio: 1; margin: 0 auto; justify-self: center; }
.hero__art .float-dot { position: absolute; border-radius: 50%; }
.hero__art .disc { position: absolute; }
.hero__art .square { position: absolute; }
.disc-main { top: 14%; left: 14%; width: 62%; box-shadow: inset 0 0 0 7px #fff, 0 18px 36px rgba(28,27,25,0.13); --r: -5deg; animation: float 7s ease-in-out infinite; }
.disc-tl { top: 0; left: 0; width: 30%; border-width: 6px; box-shadow: inset 0 0 0 5px #fff, 0 12px 24px rgba(28,27,25,0.12); --r: 8deg; animation: float 6s ease-in-out infinite .6s; }
.disc-br { bottom: 2%; right: 0; width: 36%; border-width: 7px; box-shadow: inset 0 0 0 5px #fff, 0 14px 28px rgba(28,27,25,0.12); --r: -9deg; animation: float 8s ease-in-out infinite .3s; }
.disc-rt { top: 6%; right: 4%; width: 22%; border-width: 5px; box-shadow: inset 0 0 0 4px #fff, 0 10px 20px rgba(28,27,25,0.1); --r: 6deg; animation: float 6.5s ease-in-out infinite .9s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}

/* ---------- trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--muted);
}
.trust span.item { display: inline-flex; align-items: center; gap: 9px; }

/* ---------- sections ---------- */
.section { padding-top: 90px; padding-bottom: 30px; }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.05; margin-top: 14px; }
.section .lede { font-size: 1.08rem; color: var(--muted); max-width: 52ch; margin: 14px 0 0; line-height: 1.55; }
.section--band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--band .inner { padding-top: 84px; padding-bottom: 84px; }
.center { text-align: center; }

/* ---------- product cards ---------- */
.cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 24px; 
  margin-top: 44px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 1px 3px rgba(28,27,25,0.04);
}
.card .disc { width: 150px; align-self: center; border-radius: 0% !important; }
.card .disc img{
  border-radius: 0% !important;
  position: relative;
  transition: width .3s ease;
}

.card .disc img:hover{
  width: 300px;
}

.card .square { width: 150px; align-self: center; transition: width .3s ease;}
.card .square:hover{
  width: 300px;
}
.card .badge {
  margin-top: 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
}
.badge--coral { color: var(--coral); background: var(--coral-soft); }
.badge--yellow { color: #B8902A; background: var(--yellow-soft); }
.badge--teal { color: #1F8C7F; background: var(--teal-soft); }
.card h3 { font-size: 1.5rem; margin-top: 14px; }
.card p { font-size: 1rem; color: var(--muted); line-height: 1.55; margin: 10px 0 0; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 28px 22px; margin-top: 46px; }
.gallery .item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.gallery .disc { width: 100%; max-width: 160px; border-width: 7px; box-shadow: inset 0 0 0 6px #fff; }
.gallery .cap { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: #48453E; }
.gallery-note { text-align: center; font-size: 1rem; color: var(--muted-2); margin-top: 42px; }
.gallery-note a { color: var(--coral); font-weight: 600; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 50px; }
.step { text-align: center; }
.step .num {
  width: 64px; height: 64px; border-radius: 50%;
  font-family: var(--font-head); font-weight: 700; font-size: 26px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.num--1 { background: var(--coral-soft); color: var(--coral); }
.num--2 { background: var(--yellow-soft); color: #B8902A; }
.num--3 { background: var(--teal-soft); color: #1F8C7F; }
.num--4 { background: var(--sky-soft); color: #3E84AE; }
.step h3 { font-size: 1.25rem; margin-top: 18px; }
.step p { font-size: 0.98rem; color: var(--muted); line-height: 1.55; margin: 8px 0 0; }

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 90px;
}
.about__art { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1; margin: 0 auto; justify-self: center; }
.about__art .disc { width: 380px; height: 380px; border-width: 9px; box-shadow: inset 0 0 0 7px #fff; gap: 6px; }
.about__art .disc img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: top; }
.about__art .float-dot { position: absolute; border-radius: 50%; }
.about h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.06; margin-top: 14px; }
.about p { font-size: 1.08rem; color: var(--muted); line-height: 1.65; margin: 20px 0 0; }
.about p strong { color: var(--ink); }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; margin-top: 46px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px; }
.quote .stars { font-family: var(--font-head); font-size: 30px; color: var(--yellow); line-height: 1; }
.quote p { font-size: 1.05rem; color: #3A382F; line-height: 1.6; margin: 16px 0 0; }
.quote .who { font-weight: 700; font-family: var(--font-head); margin-top: 18px; }
.quote .who small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--muted-2); }

/* ---------- cta ---------- */
.cta-wrap { padding-top: 90px; padding-bottom: 90px; }
.cta {
  background: var(--ink);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta .float-dot { position: absolute; border-radius: 50%; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.05; }
.cta p { color: #BDBAB1; font-size: 1.12rem; line-height: 1.55; max-width: 42ch; margin: 18px auto 0; }
.cta__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.btn--outline-light { background: transparent; color: #fff; font-weight: 500; border: 1.5px solid rgba(255,255,255,0.28); }
.btn--outline-light:hover { border-color: rgba(255,255,255,0.55); }
.cta .place { color: #85827A; font-size: 14.5px; margin-top: 26px; font-weight: 600; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #fff; }
.site-footer .top {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 24px; padding-top: 48px; padding-bottom: 48px;
}
.site-footer .brand { display: flex; align-items: center; gap: 14px; }
.site-footer .brand img { height: 112px; width: auto; mix-blend-mode: multiply; }
.site-footer .brand span { font-size: 14px; color: var(--muted-2); max-width: 24ch; line-height: 1.5; }
.site-footer .contacts { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; color: var(--muted); font-weight: 600; }
.site-footer .contacts a, .site-footer .contacts span { display: inline-flex; align-items: center; gap: 8px; }
.site-footer .copy { border-top: 1px solid var(--line); text-align: center; padding: 18px 24px; font-size: 13px; color: #9A978F; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; font-size: 16px; }
  .site-header .container { position: relative; flex-wrap: wrap; }
  .header-cta { display: none; }
  .hero { padding-top: 48px; }
  .section { padding-top: 64px; }
  .section--band .inner { padding-top: 60px; padding-bottom: 60px; }
}

@media (max-width: 420px) {
  .logo img { height: 52px; }
}
