:root {
  --petrol: #0f3b45;
  --petrol-deep: #0a2d35;
  --gold: #c9a66b;
  --warm-white: #faf8f5;
  --white: #ffffff;
  --graphite: #282b2b;
  --gray: #727777;
  --border: rgba(15, 59, 69, 0.14);
  --container: 1280px;
  --radius: 14px;
  --section-space: clamp(72px, 9vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--graphite);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3,
p {
  font-size:1rem;
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  color: var(--white);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--petrol);
  color: var(--white);
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.button::after {
  position: absolute;
  right: 24px;
  bottom: 8px;
  left: 24px;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--petrol-deep);
  transform: translateY(-1px);
}

.button:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button-small {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.92rem;
}

.signature {
  margin: 18px 0 0;
  color: var(--gold);
  font-family: "Parisienne", cursive;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.section {
  padding-block: var(--section-space);
}

.centered {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #757575;
}

/* Header */
.site-header {
position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 90px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #d6b37a;
}

.brand-subtitle {
  margin-top: 5px;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f7f5f2;
}

.main-menu {
  display: flex;
  justify-content: center;
   font-weight: 500;
  gap: clamp(22px, 2.8vw, 38px);
  font-size: 1.1rem;
}

.main-menu a {
  position: relative;
}

.main-menu a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-menu a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    url("../imagens/hero.png")
    center 30% / cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 29, 0.74) 0%, rgba(7, 25, 29, 0.42) 42%, rgba(7, 25, 29, 0.08) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.04) 35%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 70px;
}

.hero-copy {
  max-width: 620px;
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 22px
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

/* Brand strip */
.brand-strip {
  position: relative;
  overflow: hidden;
  padding: 34px 0;
  background: var(--petrol);
  color: var(--white);
  text-align: center;
}

.brand-strip-content h2 {
  margin-bottom: 4px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.brand-strip-content p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

.gold-line {
  position: absolute;
  width: 220px;
  height: 90px;
  border: 1px solid rgba(201,166,107,.42);
  border-radius: 50%;
}

.gold-line-left {
  top: -55px;
  left: -80px;
  transform: rotate(12deg);
}

.gold-line-right {
  right: -70px;
  bottom: -60px;
  transform: rotate(-16deg);
}

/* Environment cards */
.environment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.environment-card {
  overflow: hidden;
}

.environment-card a {
  display: block;
}

.environment-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  transition: filter 220ms ease, transform 220ms ease;
}

.environment-card:hover .environment-image {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.image-mirrors {
  background-image: url("../imagens/Espelho.jpg");
  background-position: center top;
  filter: brightness(1.25) contrast(1.03);
}

.image-box {
  background-image: url("../imagens/Box.jpg");
}

.image-railing {
  background-image: url("../imagens/Guarda-Corpo.jpg");
}

.image-windows {
  background-image: url("../imagens/JANELAS.png");
}

.image-portas {
  background-image: url("../imagens/Portas.png");
}
.image-quadrosvazados {
  background-image: url("../imagens/quadrovazado.png");
}
.image-frasesvazados {
  background-image: url("../imagens/frase.png");
}

.environment-content {
  padding: 22px 4px 0;
}

.environment-content p {
  min-height: 52px;
  margin-bottom: 18px;
  color: var(--gray);
  font-size: 0.95rem;
}

.environment-content span {
  color: var(--petrol);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Process */
.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  position: relative;
  padding: 8px 28px 0;
  border-left: 1px solid var(--border);
}

.process-grid li:first-child {
  border-left: 0;
}

.process-number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.process-grid p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: var(--petrol);
  color: var(--white);
}

.story-image {
  min-height: 380px;
  background:
    url("../imagens/NIME2.jpeg")
    center 30%/ cover no-repeat;
}

.story-content {
  display: flex;
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
}

.story-copy {
  max-width: 560px;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.text-link {
  display: inline-block;
  margin-top: 18px; 
  color: var(--gold);
  font-weight: 600;
}

/* Reviews */
.reviews-section {
  padding-block: clamp(50px, 6vw, 78px);
  background: var(--white);
}

.reviews-section .centered {
  margin-bottom: 36px;
}

.reviews-section h2,
.location-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.reviews-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--petrol);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: 0 16px 40px rgba(15, 59, 69, 0.06);
}

.review-stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.reviews-rating .review-stars {
  margin-bottom: 0;
}

.review-card blockquote {
  flex: 1;
  margin: 0 0 22px;
  color: var(--gray);
  font-size: 0.98rem;
}

.review-card footer {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-card footer strong,
.review-card footer span {
  display: block;
}

.review-card footer strong {
  color: var(--petrol);
}

.review-card footer span {
  margin-top: 3px;
  color: var(--gray);
  font-size: 0.82rem;
}

.reviews-action {
  margin-top: 28px;
  text-align: center;
}

.button-outline {
  border-color: var(--petrol);
  background: transparent;
  color: var(--petrol);
}

.button-outline:hover {
  background: var(--petrol);
  color: var(--white);
}

/* Location */
.location-section {
  padding-block: clamp(50px, 6vw, 78px);
  background: #f4efe8;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.location-map {
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(15, 59, 69, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 59, 69, 0.09);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.location-content {
  max-width: 540px;
}

.location-intro {
  color: var(--gray);
}

.location-details {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.location-label {
  display: block;
  margin-bottom: 6px;
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-details address,
.location-details p {
  margin: 0;
  color: var(--graphite);
  font-style: normal;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}

.location-actions .text-link {
  margin-top: 0;
}

/* Final CTA */
.final-cta {
  background: var(--warm-white);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.final-cta-grid p {
  max-width: 620px;
  color: var(--gray);
}

/* Footer */
.site-footer {
  padding: 72px 0 26px;
  background: #202525;
  color: rgba(255,255,255,.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-grid > div:first-child p {
  max-width: 320px;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.84rem;
}

.footer-bottom .signature {
  margin: 0;
}
.footer-logo {
  display: block;
  width: 180px;
  height: 70px;
  margin-bottom: 18px;

  background-image: url("../imagens/logo.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 2;
  }

  .header-cta {
    justify-self: end;
    order: 3;
  }

  .main-menu {
    position: absolute;
    top: 82px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border-radius: 14px;
    background: rgba(10,45,53,.97);
    color: var(--white);
    box-shadow: 0 18px 44px rgba(7, 25, 29, 0.28);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .main-menu.is-open {
    display: flex;
  }

  .main-menu a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
  }

  .main-menu a:last-child {
    border-bottom: 0;
  }

  .main-menu a::after {
    display: none;
  }

  .environment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 42px;
  }

  .process-grid li:nth-child(3) {
    border-left: 0;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 480px;
  }

  .review-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-content {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 78px;
    gap: 14px;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .brand-subtitle {
    font-size: 0.56rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 88vh;
    background-position: 62% center;
  }

  .hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(7, 24, 38, 0.82) 0%,
    rgba(7, 24, 38, 0.55) 35%,
    rgba(7, 24, 38, 0.15) 70%,
    rgba(7, 24, 38, 0) 100%
  );
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .brand-strip {
    padding: 30px 0;
  }

  .environment-grid,
  .process-grid,
  .review-grid,
  .location-grid,
  .final-cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .environment-image {
    aspect-ratio: 5 / 4;
  }

  .process-grid li,
  .process-grid li:nth-child(3) {
    padding: 24px 0 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .process-grid li:first-child {
    border-top: 0;
  }

  .story-content {
    padding: 64px 24px;
  }

  .reviews-section,
  .location-section {
    padding-block: 48px;
  }

  .reviews-section .centered {
    margin-bottom: 28px;
  }

  .review-card {
    padding: 24px;
  }

  .reviews-action .button,
  .location-actions .button {
    width: 100%;
  }

  .location-map,
  .location-map iframe {
    min-height: 270px;
    height: 270px;
  }

  .location-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .location-actions .text-link {
    text-align: center;
  }

  .final-cta-grid {
    gap: 28px;
  }

  .final-cta-grid .button {
    width: 100%;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    align-items: flex-end;
    background-position: 62% center;
  }

  .hero-content {
    padding-top: 150px;
    padding-bottom: 54px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.15rem, 11vw, 3.1rem);
    line-height: 1.05;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.55;
  }
}
/* =====================================================
   PÁGINA DE ESPELHOS
===================================================== */


.hero-espelhos {
 
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../imagens/Espelhos_hero.png");
background-position: center 30% / cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
background:
  linear-gradient(
    90deg,
    rgba(7, 25, 29, 0.35) 0%,
    rgba(7, 25, 29, 0.15) 42%,
    rgba(7, 25, 29, 0.00) 78%
  ),
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.08) 100%
  );}
  .product-hero-copy {
    max-width: 560px;}

    .hero-espelhos h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
  max-width: none;
}
.hero-espelhos-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.product-intro {
  background: var(--warm-white);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.product-intro-image {
  min-height: 560px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
}

.image-mirror-intro {
  background-image: url("../imagens/Capa_espelhos.png")
}

.product-intro-copy {
  max-width: 560px;
}

.product-intro-copy p {
  color: var(--gray);
}

.product-benefits {
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.benefit-card {
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.benefit-number {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.product-models {
  background: var(--warm-white);
}

.image-mirror-organic {
  background-image: url("../imagens/Espelho_Organico.png");
}

.image-mirror-bathroom {
  background-image: url("../imagens/Espelho_reto.jpg");
}

.image-mirror-wall {
  background-image: url("../imagens/parede_toda.jpg");
}

.image-mirror-led {
  background-image: url("../imagens/Espelho_led.png");
}

.image-mirror-beveled {
  background-image: url("../imagens/espelho_bisote.png");
}

.image-mirror-custom {
  background-image: url("../imagens/Espelho-personalizado.png");
}

.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: var(--graphite);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 40px 26px 0;
  color: var(--gray);
}

@media (max-width: 1024px) {
  .product-intro-grid {
    gap: 46px;
  }

  .product-intro-image {
    min-height: 480px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {

.hero-copy h1{

    font-size:2.7rem;
    line-height:1.05;

}
  .hero-espelhos {
    background-position: 58% center;
  }

  .product-intro-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .product-intro-image {
    min-height: 380px;
  }

  .product-intro-copy {
    max-width: none;
  }

  .benefit-card {
    padding: 28px 24px;
  }

  .faq-list summary {
    padding-right: 38px;
  }

.product-page .site-header {
  position: absolute;
  color: var(--white);
}

.product-page .brand-subtitle {
  color: var(--white);
}

.product-page .menu-toggle {
  color: var(--petrol);
}
}
/* =====================================================
   PÁGINA DE Box
===================================================== */
.hero-Box {
 
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../imagens/Box_hero.png");
background-position: center 30% / cover;
background-repeat: no-repeat;
 background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
background:
  linear-gradient(
    90deg,
    rgba(7, 25, 29, 0.35) 0%,
    rgba(7, 25, 29, 0.15) 42%,
    rgba(7, 25, 29, 0.00) 78%
  ),
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.08) 100%
  );}
   .product-hero-copy {
    max-width: 560px;}

    .hero-Box h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
  max-width: none;
}
.hero-Box-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}
.image-box-padrao {
  background-image: url("../imagens/Box_Reto.jpg");
}

.image-box-abrir {
  background-image: url("../imagens/Box_Abrir.jpg");
}

.image-box-elegance {
  background-image: url("../imagens/Box_elegance.png");
}

.image-box-flex {
  background-image: url("../imagens/Box_Flex.jpg");
}
.image-box-canto {
  background-image: url("../imagens/Box_canto.jpg");
}
.image-box-teto {
  background-image: url("../imagens/Box_teto.jpg");
}
.image-box-intro {
  background-image: url("../imagens/Box_Intro.png");
}
/* =====================================================
   PÁGINA DE Guarda-Corpo
===================================================== */
.hero-Guarda-Corpo {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../imagens/Guarda-Corpo-hero.png");
background-position: center 30% / cover;
background-repeat: no-repeat;
 background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
background:
  linear-gradient(
    90deg,
    rgba(7, 25, 29, 0.35) 0%,
    rgba(7, 25, 29, 0.15) 42%,
    rgba(7, 25, 29, 0.00) 78%
  ),
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.08) 100%
  );}
   .product-hero-copy {
    max-width: 560px;}

    .hero-Guarda-Corpo h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
  max-width: none;
}
.hero-Guarda-Corpo-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}
.image-Guarda-Corpo-padrao {
  background-image: url("../imagens/Guarda-corpo-padrao.png");
}

.image-Guarda-Corpo-torre {
  background-image: url("../imagens/Guarda-corpo-torre.png");
}

.image-Guarda-Corpo-presilhas {
  background-image: url("../imagens/Guarda-Corpo-hero.png");
}

.image-Guarda-Corpo-intro {
  background-image: url("../imagens/Guarda-Corpo.jpg");
}
/* =====================================================
   PÁGINA DE JANELAS
===================================================== */
.hero-Janelas {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../imagens/Janelas-hero.png");
background-position: center 30% / cover;
background-repeat: no-repeat;
 background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
background:
  linear-gradient(
    90deg,
    rgba(7, 25, 29, 0.35) 0%,
    rgba(7, 25, 29, 0.15) 42%,
    rgba(7, 25, 29, 0.00) 78%
  ),
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.08) 100%
  );}
   .product-hero-copy {
    max-width: 560px;}

    .hero-Janelas h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
  max-width: none;
}
.hero-Janelas-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}
.image-Janelas-padrao {
  background-image: url("../imagens/JANELAS.png");
}

.image-Janelas-VERSATIK {
  background-image: url("../imagens/Janela-Versatik.jpg");
}

.image-Janelas-Basculante {
  background-image: url("../imagens/Janela-basculante.jpg");
}
.image-janela-pivotante  {
  background-image: url("../imagens/Janelas_PIVOTANTE.jpg");
}
.image-Janelas-retratil  {
  background-image: url("../imagens/Janela-Retratil.png");
}

.image-janelas-intro {
  background-image: url("../imagens/Janelas-intro.png");
}
/* =====================================================
   PÁGINA DE PORTAS
===================================================== */
.hero-Portas {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../imagens/hero.png");
background-position: center 30% / cover;
background-repeat: no-repeat;
 background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
background:
  linear-gradient(
    90deg,
    rgba(7, 25, 29, 0.35) 0%,
    rgba(7, 25, 29, 0.15) 42%,
    rgba(7, 25, 29, 0.00) 78%
  ),
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.08) 100%
  );}
   .product-hero-copy {
    max-width: 560px;}

    .hero-Portas h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
  max-width: none;
}
.hero-Portas-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}
.image-Portas-correr {
  background-image: url("../imagens/Porta-correr.png");
}

.image-Portas-VERSATIK {
  background-image: url("../imagens/Porta-Versatik.jpg");
}

.image-Portas-padrao  {
  background-image: url("../imagens/Porta_padrao.png");
}

.image-Portas-Stanley   {
  background-image: url("../imagens/hero.png");
}
.image-Janelas-RETRATIL  {
  background-image: url("../imagens/Janelas_RETRATIL.jpg");
}
.image-Portas-intro {
  background-image: url("../imagens/Porta-intro.png");
}

/* =====================================================
   PÁGINA DE MDF PERSONZALIZADO
===================================================== */
.hero-MDF {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../imagens/MDF-hero.png");
background-position: center 30% / cover;
background-repeat: no-repeat;
 background-size: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
background:
  linear-gradient(
    90deg,
    rgba(7, 25, 29, 0.35) 0%,
    rgba(7, 25, 29, 0.15) 42%,
    rgba(7, 25, 29, 0.00) 78%
  ),
  linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.08) 100%
  );}
   .product-hero-copy {
    max-width: 560px;}

    .hero-MDF h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 1.05;
  max-width: none;
}
.hero-MDF-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}
.image-quadrosvazados{
  background-image: url("../imagens/quadrovazado.png");
}

.image-frases {
  background-image: url("../imagens/frase.png");
}

.image-paineis-decorativos  {
  background-image: url("../imagens/Paineis-decorativos.png");
}

.image-MDF-intro {
  background-image: url("../imagens/MDF-intro.png");
}
