* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #111111;
  --text-light: #666666;
  --dark: #0d0d0d;
  --dark-2: #171717;
  --line: #e8e8e8;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* HEADER */
.header {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: 0.25s;
}

.nav a:hover {
  color: var(--text-light);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text);
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1552674605-db6ffd4facb5?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
}

.hero-content {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  max-width: 1180px;
  padding: 80px 0;
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  font-weight: 900;
  max-width: 700px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 span {
  color: #f2f2f2;
}

.hero p {
  max-width: 560px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
}

.btn.primary {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white);
}

.btn.primary:hover {
  background: #efefef;
}

.btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent;
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn.outline.light {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn.small {
  min-height: 46px;
  padding: 12px 18px;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--dark);
}

.btn.small:hover {
  background: #262626;
}

/* PRODUCTS */
.products {
  padding: 90px 0;
  background: var(--bg);
}

.products h2,
.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.11);
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f5f5;
}

.card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  padding: 18px 18px 8px;
  min-height: 76px;
}

.price {
  padding: 0 18px 18px;
  font-size: 1.6rem;
  font-weight: 900;
}

.card .btn {
  margin: 0 18px 18px;
  width: calc(100% - 36px);
}

/* BRAND */
.brand {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  color: var(--white);
  padding: 95px 0;
}

.brand-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.brand-text span {
  display: inline-block;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 16px;
}

.brand-text h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 900;
}

.brand-text h2 span {
  display: inline;
  letter-spacing: normal;
}

.brand-text p {
  max-width: 560px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 26px;
}

.brand-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-icons div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 16px;
  text-align: center;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* TESTIMONIALS */
.testimonials {
  padding: 90px 0;
  background: #fafafa;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.test-card p {
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 18px;
}

.test-card span {
  font-weight: 700;
  color: var(--text-light);
}

/* CTA */
.cta {
  padding: 80px 16px;
  text-align: center;
  background: var(--dark);
  color: var(--white);
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 22px;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  background: #060606;
  color: var(--white);
  padding: 60px 0 28px;
}

.footer h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: 0.14em;
}

.footer p {
  color: rgba(255, 255, 255, 0.75);
}

.links {
  display: flex;
  gap: 20px;
  margin: 24px 0 16px;
  flex-wrap: wrap;
}

.links a {
  color: var(--white);
  font-weight: 600;
  opacity: 0.85;
}

.links a:hover {
  opacity: 1;
}

.copy {
  margin-top: 18px;
  font-size: 0.94rem;
}

/* COOKIES */
.cookies {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: min(420px, calc(100% - 40px));
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  padding: 20px;
  z-index: 1200;
}

.cookies p {
  font-size: 0.96rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.cookies button {
  background: var(--dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}

.cookies button:hover {
  background: #222222;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .product-grid,
  .test-grid,
  .brand-content {
    grid-template-columns: 1fr;
  }

  .brand-icons {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 16px 18px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 18px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
    background-position: center right;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .products,
  .brand,
  .testimonials {
    padding: 70px 0;
  }

  .products h2,
  .testimonials h2,
  .cta h2 {
    font-size: 2.2rem;
  }

  .brand-text h2 {
    font-size: 2.3rem;
  }

  .brand-icons {
    grid-template-columns: 1fr;
  }

  .card h3 {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.05rem;
  }

  .tag {
    font-size: 0.72rem;
    padding: 10px 14px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .test-card,
  .card {
    border-radius: 15px;
  }

  .cookies {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}
/* CATALOGO */
.catalog-hero {
  padding: 90px 0 40px;
  background: #ffffff;
}

.catalog-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #666666;
}

.catalog-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.catalog-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
}

.catalog-filters {
  padding: 0 0 34px;
  background: #ffffff;
}

.filter-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-btn {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  font-weight: 700;
  transition: 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.catalog-products {
  padding: 20px 0 90px;
  background: #ffffff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.catalog-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.11);
}

.catalog-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f4f4f4;
}

.catalog-info {
  padding: 18px;
}

.catalog-info h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  min-height: 92px;
  margin-bottom: 12px;
}

.catalog-price {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.catalog-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.catalog-actions .btn.small {
  margin: 0;
  width: 100%;
}

.cart-icon-btn {
  width: 56px;
  min-width: 56px;
  border-radius: 12px;
  border: 1px solid #111111;
  background: #ffffff;
  font-size: 1.25rem;
  transition: 0.25s ease;
}

.cart-icon-btn:hover {
  background: #111111;
  color: #ffffff;
}

@media (max-width: 980px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .catalog-hero {
    padding: 70px 0 30px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-info h3 {
    min-height: auto;
  }
}
/* PRODUTO */
.product-page {
  padding: 80px 0 90px;
  background: #ffffff;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: start;
}

.product-gallery img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-details {
  padding-top: 10px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #666666;
}

.product-details h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  font-weight: 900;
  margin-bottom: 18px;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.product-description {
  font-size: 1.08rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 580px;
}

.product-option-group {
  margin-bottom: 24px;
}

.product-option-group label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-select {
  width: 100%;
  max-width: 220px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  font-size: 1rem;
  color: var(--text);
  outline: none;
}

.quantity-box {
  width: 100%;
  max-width: 220px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: #ffffff;
}

.quantity-box button {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.5rem;
  color: var(--text);
  background: #f7f7f7;
}

.quantity-box button:hover {
  background: #ececec;
}

.quantity-box span {
  font-size: 1.25rem;
  font-weight: 800;
  min-width: 30px;
  text-align: center;
}

.product-option-group small {
  display: block;
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.92rem;
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 30px 0 34px;
}

.product-main-btn {
  width: 100%;
}

.dark-btn {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

.dark-btn:hover {
  background: #262626;
}

.product-extra-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.info-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fafafa;
}

.info-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.info-item p {
  color: var(--text-light);
  font-size: 0.97rem;
}

@media (max-width: 980px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-page {
    padding: 60px 0 70px;
  }

  .product-details h1 {
    font-size: 2.2rem;
  }

  .product-price {
    font-size: 1.9rem;
  }

  .product-description {
    font-size: 1rem;
  }

  .product-select,
  .quantity-box {
    max-width: 100%;
  }
}
/* HISTORIA */
.brand-hero {
  padding: 90px 0 60px;
  background: #ffffff;
}

.brand-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #666;
}

.brand-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.brand-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* STORY */
.brand-story {
  padding: 80px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.story-text p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.story-image img {
  border-radius: 20px;
}

/* VALORES */
.brand-values {
  padding: 80px 0;
  background: #111;
  color: #fff;
  text-align: center;
}

.brand-values h2 {
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(255,255,255,0.7);
}

/* DIFERENCIAL */
.brand-diff {
  padding: 80px 0;
}

.diff-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.diff-image img {
  border-radius: 20px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .story-grid,
  .diff-content,
  .values-grid {
    grid-template-columns: 1fr;
  }
}
/* TERMOS */
.terms {
  padding: 80px 0 90px;
  background: #ffffff;
}

.terms h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.terms-content {
  max-width: 800px;
}

.terms-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.terms-content p {
  color: var(--text-light);
  line-height: 1.6;
}
/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  font-size: 1.15rem;
  position: relative;
  transition: 0.25s ease;
}

.cart-btn:hover {
  background: #f5f5f5;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #111111;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER CONTACT */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.footer-contact a {
  color: #ffffff;
  opacity: 0.82;
  font-weight: 600;
}

.footer-contact a:hover {
  opacity: 1;
}

/* CART SIDEBAR */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 1300;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -430px;
  width: min(430px, 100%);
  height: 100vh;
  background: #ffffff;
  z-index: 1400;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header h3 {
  font-size: 1.35rem;
  margin: 0;
}

.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1.1rem;
}

.cart-progress {
  padding: 18px 20px;
  background: #f8f8f8;
  border-bottom: 1px solid var(--line);
}

.cart-progress p {
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-progress small {
  color: var(--text-light);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 20px;
}

.cart-empty {
  text-align: center;
  padding: 50px 14px;
}

.cart-empty h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cart-empty p {
  color: var(--text-light);
  margin-bottom: 22px;
}

.cart-empty-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-empty-buttons a {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  background: #f3f3f3;
}

.cart-item-info h4 {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.cart-item-meta {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.remove-btn {
  color: #111111;
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-footer {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.cart-finish-btn {
  width: 100%;
  background: #000;
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.cart-finish-btn:hover {
  background: #222;
}

.cart-continue-btn {
  width: 100%;
  background: transparent;
  color: #555;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
  cursor: pointer;
}

/* AJUSTE MENU MOBILE */
@media (max-width: 768px) {
  .header-actions {
    gap: 8px;
  }

  .cart-btn {
    width: 44px;
    height: 44px;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}
@media (max-width: 480px) {

  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .catalog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
  }

  .catalog-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
  }

  .catalog-info {
    padding: 10px;
  }

  .catalog-info h3 {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .catalog-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .catalog-actions {
    display: flex;
    gap: 6px;
  }

  .catalog-actions .btn.small {
    flex: 1;
    font-size: 0.8rem;
    padding: 8px;
    min-height: 36px;
    border-radius: 8px;
  }

  .cart-icon-btn {
    width: 36px;
    min-width: 36px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

}
/* CHECKOUT */
.checkout-page {
  padding: 80px 0 90px;
  background: #ffffff;
}

.checkout-top {
  margin-bottom: 34px;
}

.checkout-tag {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #666666;
}

.checkout-top h1 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.checkout-top p {
  font-size: 1.05rem;
  color: var(--text-light);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 30px;
  align-items: start;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-block,
.summary-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.checkout-block h2,
.summary-card h2 {
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
}

.form-group input,
.input-action-row input,
.pix-code-area textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  outline: none;
}

.pix-code-area textarea {
  min-height: 120px;
  resize: none;
  font-family: inherit;
  line-height: 1.5;
}

.input-action-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.secondary-action-btn {
  min-width: 120px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 12px;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
}

.shipping-box {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafafa;
  padding: 16px;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
}

.shipping-option:last-child {
  border-bottom: none;
}

.shipping-option.active strong {
  color: #111111;
}

.helper-message {
  display: block;
  margin-top: 10px;
  color: var(--text-light);
}

.payment-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.payment-option {
  position: relative;
  min-width: 140px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  background: #ffffff;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option.active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.payment-panel {
  display: none;
}

.payment-panel.active {
  display: block;
}

.pix-box {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
}

.pix-qr {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: repeating-linear-gradient(
    45deg,
    #111111,
    #111111 10px,
    #ffffff 10px,
    #ffffff 20px
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-align: center;
  padding: 10px;
}

.pix-code-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
}

.checkout-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: #f2f2f2;
}

.checkout-item h4 {
  font-size: 0.98rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.checkout-item p,
.checkout-item small {
  color: var(--text-light);
}

.summary-lines {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.summary-line.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}

.checkout-submit-btn {
  width: 100%;
  margin-top: 14px;
}

.checkout-back-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--text-light);
  font-weight: 700;
}

/* SUCCESS */
.success-page {
  padding: 90px 0;
  background: #ffffff;
}

.success-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 46px 28px;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 22px;
}

.success-card h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.success-card p {
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 24px;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.outline-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: #111111;
  font-weight: 700;
}

.outline-success:hover {
  background: #f7f7f7;
}

@media (max-width: 980px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .pix-box {
    grid-template-columns: 1fr;
  }

  .pix-qr {
    width: 180px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .checkout-page,
  .success-page {
    padding: 60px 0 70px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .input-action-row {
    flex-direction: column;
  }

  .payment-options {
    flex-direction: column;
  }

  .summary-card,
  .checkout-block {
    padding: 20px;
  }
}
.feedback-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.feedback-subtitle {
  color: var(--text-light);
  margin-top: 10px;
}

.feedback-open-btn {
  min-width: 220px;
}

.feedback-form-box {
  display: none;
  margin-top: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.feedback-form-box.active {
  display: block;
}

.feedback-form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feedback-form-text {
  color: var(--text-light);
  margin-bottom: 20px;
}

.feedback-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feedback-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feedback-form .form-group.full-width {
  grid-column: 1 / -1;
}

.feedback-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  outline: none;
}

.feedback-form textarea {
  resize: vertical;
}

.feedback-form-actions {
  grid-column: 1 / -1;
}

.feedback-message {
  grid-column: 1 / -1;
  font-weight: 700;
  color: #111111;
}

@media (max-width: 768px) {
  .feedback-form {
    grid-template-columns: 1fr;
  }

  .feedback-open-btn {
    width: 100%;
  }
}
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.feedback-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.feedback-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feedback-card p {
  font-size: 16px;
  margin-bottom: 8px;
  color: #222;
}

@media (max-width: 768px) {
  .feedback-grid {
    grid-template-columns: 1fr;
  }
}