/* style.css */
:root{
  --bg: #f5f5f5;
  --surface: #ffffff;
  --ink: #2b2f33;
  --muted: #6c747c;
  --line: rgba(0,0,0,.10);
  --shadow: 0 8px 24px rgba(0,0,0,.08);
  --accent: #ff5a7a;          /* tom azul acinzentado do print */
  --accent-strong: #ff5a7a;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

/* Container */
.wrap{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.brand img {
  height: 80px;
  display: block;
}

/* NAV */
.nav {
  display: flex;
  gap: 28px;
}

.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.active {
  color: #000;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* RIGHT */
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.toplink {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.toplink:hover {
  color: #000;
}

/* CART */
.cart {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart__price {
  font-size: 13px;
  color: #333;
}

.cart__icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart__icon svg {
  width: 18px;
  fill: #fff;
}

/* BADGE */
.cart__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #ff5a7a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Main */
.main{
  padding: 18px 0 28px;
}

/* Hero (substitua as imagens abaixo pelos seus arquivos) */
.hero{
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 2px;
  overflow: hidden;
  min-height: 340px;
  display: grid;
  align-items: stretch;
  border-radius: 18px;

  /* IMAGEM DO HERO (cadeira à direita) */
  background-image:url("banner01\ \(2\)\ -\ Copia.png");
  background-size: cover;
  background-position: right center;
}

.hero__panel{
  padding: 64px 54px;
  max-width: 100%;
}
.hero__title{
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--bg);
  font-size: clamp(34px, 3.8vw, 52px);
}
.hero__title span{ display: block; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}
.btn--outline{
  border: 1px solid rgb(255, 255, 255);
  color: #fff;
  padding: 12px 22px;
  background-color: var(--accent);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.btn--outline:hover{
  border-color: rgba(255, 255, 255, 0.95);
  color: rgba(255, 255, 255, 0.95);
  background-color: #bd004f;
}
.btn--small{
  padding: 10px 18px;
  font-size: 11px;
}

/* Grid rows */
.grid{
  display: grid;
  gap: 0px;
  margin-top: 18px;
}

/* Row 1: imagem menor à esquerda, promo maior à direita */
.grid--row1{
  grid-template-columns: 1fr 2fr;
}

/* Row 2: promo maior à esquerda, imagem menor à direita */
.grid--row2{
  grid-template-columns: 2fr 1fr;
}

/* Card base */
.card{
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 0px;
  overflow: hidden;
  min-height: 210px;
}

/* Image cards (substitua URLs) */
.card--image{
  background-size: cover;
  background-position: center;
}
.card--chair{
  background-image:url("banner01\ \(1\).png");
}
.card--director{
  background-image: url("banner01\ \(3\).png");
}

/* Promo cards */
.promo{
  position: relative;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: start;
  justify-items: start;
}
.promo--brick{
  /* FUNDO DE "PAREDE" (substitua) */
  background-image:
    linear-gradient(0deg, rgba(255,255,255,.92), rgba(255,255,255,.92)),
    url("nebulosa-rosa.png");
  background-size: cover;
  background-position: center;
}

.promo__content{
  max-width: 520px;
}
.promo__title{
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: .02em;
}
.promo__subtitle{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}

/* Footer */
.footer{
  margin-top: 12px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.footer__inner{
  padding: 16px 0;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px){
  .nav{ display: none; }
  .hero__panel{ padding: 52px 34px; }
}

@media (max-width: 820px){
  .grid--row1,
  .grid--row2{
    grid-template-columns: 1fr;
  }
  .hero{
    min-height: 320px;
    background-position: center;
  }
  .hero__panel{
    max-width: 100%;
    padding: 40px 22px;
  }
  .card{ min-height: 200px; }
}

@media (max-width: 420px){
  .topbar__inner{ gap: 10px; }
  .topbar__right{ gap: 10px; }
  .brand__name{ display: none; }
}


.products-section {
  max-width: 1200px;
  margin: 30px auto;
  font-family: 'Inter', sans-serif;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-header h2 {
  font-size: 32px;
  font-weight: 600;
}

.products-filter {
  display: flex;
  gap: 12px;
}

.products-filter button {
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.products-filter .active,
.products-filter button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s;
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-8px);
}

/* MEDIA */
.product-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* BADGE */
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff5a7a;
  color: #fff;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}

/* CART ICON */
.quick-cart {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #bd004f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s;
  cursor: pointer;
}

.product-card:hover .quick-cart {
  opacity: 1;
  transform: translateY(0);
}

/* INFO */
.product-info {
  padding: 18px;
}

.product-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-info p {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.price {
  font-size: 16px;
  font-weight: 600;
}

.instagram-section {
  padding: 50px 0;
  background: #ffffff;
}

.instagram-header {
  max-width: 520px;
  margin-bottom: 48px;
}

.instagram-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 12px;
}

.instagram-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
}

.instagram-header p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* BOTÃO */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #000;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.instagram-btn svg {
  width: 18px;
  fill: #fff;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* GRID */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER */
.instagram-item::after {
  content: "Ver no Instagram";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-item:hover::after {
  opacity: 1;
}

.astro-banner {
  padding: 0;
  background-image: url("Gemini_Generated_Image_bblo1fbblo1fbblo.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay para leitura perfeita */
.astro-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.astro-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  gap: 40px;
  justify-items: center;
}

/* LOGO */
.astro-banner__logo {
  display: flex;
  justify-content: center;
}

.astro-banner__logo img {
  max-width: 300px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
}

/* TEXTO */
.astro-banner__eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #d9c9ff;
  margin-bottom: 12px;
  display: block;
}

.astro-banner__content h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}

.astro-banner__content p {
  font-size: 15px;
  line-height: 1.7;
  color: #e6e6e6;
  max-width: 520px;
  margin-bottom: 28px;
}

/* BOTÃO */
.astro-banner__btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  background: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.astro-banner__btn:hover {
  background: #f3f3f3;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.products-cta {
  margin-top: 30px;
  text-align: center;
}

.btn-lines {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #fff;
    border: 1px solid #ff5a7a;
    border-radius: 30px;
    text-decoration: none;
    background: #bd004f;
    transition: all 0.3s ease;
}

.btn-lines::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-lines:hover {
  background: #111;
  color: #fff;
}

.btn-lines:hover::after {
  transform: translateX(4px);
}

.site-footer {
    background: linear-gradient(154deg, #7f00bd, #ff0000);
    color: #cfd6e1;
    padding-top: 80px;
    font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* COLUNAS */
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col p {
  line-height: 1.6;
  color: #b8c0cc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #b8c0cc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-social img {
  width: 20px;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-social img:hover {
  opacity: 1;
}

/* PAGAMENTOS / SEGURANÇA */
.footer-payments,
.footer-security {
  text-align: center;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-payments h5,
.footer-security h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 22px;
  letter-spacing: 0.6px;
}

.payment-icons,
.security-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.payment-icons img,
.security-icons img {
  height: 45px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding: 22px 0;
    font-size: 13px;
    color: #fff;
    background-color: black;
}
