/* Casa Modelo SA - Estilos estáticos para Hostinger */
:root {
  --gold: #D4AF37;
  --lead: #2C2C2C;
  --gold-dark: #b8962a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lora', Georgia, serif;
  background: #fff;
  color: var(--lead);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.02em; }

/* Nav */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--lead);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding 0.5s, box-shadow 0.5s;
}
.nav-wrap.scrolled { padding-top: 0.5rem; padding-bottom: 0.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.nav-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; height: 5rem; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 3rem; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav-desktop { display: none; }
@media (min-width: 768px) {
  .nav-desktop { display: flex; align-items: center; gap: 2.5rem; }
}
.nav-desktop a {
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
.nav-desktop a:hover { color: var(--gold); transform: scale(1.1); }
.nav-mobile-btn {
  display: block;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 768px) { .nav-mobile-btn { display: none; } }
.nav-mobile-btn:hover { color: var(--gold); }
.nav-mobile {
  display: none;
  background: var(--lead);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 1rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
.nav-mobile a:hover { color: var(--gold); transform: translateX(0.5rem); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(imagens/produtos/sofa2) center/cover;
}
.hero-overlay1 { position: absolute; inset: 0; background: rgba(44,44,44,0.5); mix-blend-mode: multiply; }
.hero-overlay2 { position: absolute; inset: 2; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, transparent); opacity: 0.9; }
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.hero-tag {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size:  14px;;
  display: block;
  margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: #fff;
  margin: 0 0 1.0rem;
  line-height: 0.95;
  font-weight: 300;
   text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.hero h1 .gold { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  font-style: italic;
  font-weight: 300;
  margin: 0 0 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.hero-cta { margin-top: 1rem; }

/* Buttons */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: all 0.3s;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.btn-whatsapp:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.btn-whatsapp.filled {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  padding: 1rem 2.5rem;
  font-size: 14px;
}
.btn-whatsapp.filled:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-whatsapp.small { padding: 0.75rem 2rem; font-size: 0.75rem; }

/* Sections */
section { padding: 6rem 0; }
.section-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title .line { width: 1px; height: 3rem; background: var(--gold); margin: 0 auto 1.5rem; opacity: 0.6; }
.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--lead);
  margin: 0 0 1rem;
}
.section-title .sub { font-style: italic; color: #6b7280; font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }

/* Ambientes */
.ambientes { background: #fff; }
.ambientes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 4rem;
}
@media (min-width: 768px) { .ambientes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ambientes-grid { grid-template-columns: repeat(4, 1fr); } }
.ambiente-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  background: #f3f4f6;
}
.ambiente-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1s ease-out; }
.ambiente-card:hover .bg { transform: scale(1.05); }
.ambiente-card .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); transition: background 0.5s; }
.ambiente-card:hover .overlay { background: rgba(0,0,0,0.4); }
.ambiente-card .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.ambiente-card h3 {
  font-size: 1.875rem;
  color: #fff;
  opacity: 0.9;
  margin: 0;
  z-index: 10;
  transition: opacity 0.5s, transform 0.5s;
}
.ambiente-card:hover h3 { opacity: 1; transform: translateY(0); }

/* Produtos */
#produtos { background: #fff; }
.produtos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
@media (min-width: 768px) { .produtos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .produtos-grid { grid-template-columns: repeat(3, 1fr); } }
.produto-card { background: #fff; }
.produto-card .img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f3f4f6;
}
.produto-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease-out; }
.produto-card:hover img { transform: scale(1.1); }
.produto-card .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.produto-card:hover .hover-overlay { opacity: 1; }
.produto-card .hover-overlay p { color: #fff; font-style: italic; font-size: 1.125rem; margin: 0; }
.produto-card .info { padding-top: 1.5rem; text-align: center; }
.produto-card .info h3 { font-size: 1.5rem; color: var(--lead); margin: 0 0 0.25rem; transition: color 0.3s; }
.produto-card:hover .info h3 { color: var(--gold); }
.produto-card .info .line { width: 2rem; height: 1px; background: var(--gold); margin: 0.75rem auto 0; }

/* Quem Somos */
#quem-somos { background: linear-gradient(to right, #fff, rgba(249,250,251,0.5)); }
.quem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .quem-grid { grid-template-columns: 1fr 1fr; } }
.quem-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.quem-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.quem-img-wrap .frame { position: absolute; top: 1.5rem; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.3); pointer-events: none; }
.quem-text { padding-left: 0; }
@media (min-width: 1024px) { .quem-text { padding-left: 2.5rem; } }
.quem-tag { font-family: 'Montserrat', sans-serif; color: var(--gold); font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.quem-text h3 { font-size: clamp(2rem, 4vw, 3rem); color: var(--lead); margin: 0 0 1.5rem; line-height: 1.2; }
.quem-text .gold-line { width: 5rem; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.quem-text .paras { margin-bottom: 2.5rem; }
.quem-text .paras p { font-size: 1.125rem; color: rgba(44,44,44,0.8); line-height: 1.75; margin: 0 0 1.5rem; }
.quem-text .paras p:last-child { font-weight: 500; color: var(--lead); }

/* Depoimentos */
#depoimentos { position: relative; overflow: hidden; background: #fff; }
#depoimentos::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 40px 40px;
}
.depo-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 4rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .depo-grid { grid-template-columns: repeat(3, 1fr); } }
.depo-card {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 4px 20px -10px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
  position: relative;
}
.depo-card:hover { box-shadow: 0 10px 30px -10px rgba(212,175,55,0.15); }
.depo-card .quote { position: absolute; top: 1.5rem; right: 2rem; font-size: 3rem; font-family: serif; color: #f3f4f6; user-select: none; }
.depo-card .stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.depo-card .stars svg { fill: var(--gold); color: var(--gold); }
.depo-card p { font-size: 1.125rem; color: rgba(44,44,44,0.8); font-style: italic; line-height: 1.75; margin: 0 0 2rem; position: relative; z-index: 1; }
.depo-card .author { border-top: 1px solid #f3f4f6; padding-top: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.depo-card .author-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--lead); margin: 0; }
.depo-card .author-title { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin: 0.25rem 0 0; }

/* Footer */
footer {
  background: var(--lead);
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 3rem;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo img { height: 4rem; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 1.5rem; }
.footer-logo p { color: #9ca3af; font-size: 0.875rem; line-height: 1.75; margin: 0 0 1rem; }
.footer-logo .social { display: flex; gap: 1rem; padding-top: 0.5rem; }
.footer-logo .social a { color: var(--gold); transition: color 0.3s; }
.footer-logo .social a:hover { color: #fff; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 2rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 1rem; }
.footer-col a { color: #9ca3af; font-size: 0.875rem; text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact .item { display: flex; align-items: flex-start; gap: 0.75rem; color: #9ca3af; margin-bottom: 1.5rem; }
.footer-contact .item svg { color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }
.footer-contact .item span { font-size: 0.875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { color: #6b7280; font-size: 0.75rem; font-family: 'Montserrat', sans-serif; letter-spacing: 0.05em; margin: 0; }
.footer-bottom .links { display: flex; gap: 2rem; }
.footer-bottom .links a { color: #6b7280; font-size: 0.75rem; text-decoration: none; transition: color 0.3s; }
.footer-bottom .links a:hover { color: #fff; }
.footer-cta { padding-top: 1.5rem; }

/* Selection */
::selection { background: var(--gold); color: #fff; }
