/* styles.css - estilo básico e responsivo */
:root{
  --accent:#0b5b5b;
  --muted:#666;
  --bg:#fafafa;
  --wrap-max:1100px;
  --radius:12px;
}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; color:#222; background:var(--bg); line-height:1.5}
.wrap{max-width:var(--wrap-max); margin:0 auto; padding:36px}
.site-header{background:linear-gradient(90deg,var(--accent),#2b6b6b); color:white; padding:28px 0}
.site-header h1{margin:0; font-size:28px}
.site-header .tagline{margin:6px 0 0; opacity:.95}
.main-nav{margin-top:14px}
.main-nav a{color:rgba(255,255,255,.95); margin-right:12px; text-decoration:none; font-weight:600}
.hero{padding:48px 0; background:linear-gradient(180deg, rgba(255,255,255,.6), transparent)}
.hero-grid{display:grid; grid-template-columns:1fr 380px; gap:24px; align-items:center}
.hero-art img{width:100%; max-width:360px}
h2{color:var(--accent)}
h3{margin-top:0}
.collection{background:white; padding:20px; border-radius:10px; margin-bottom:18px; box-shadow:0 6px 18px rgba(0,0,0,.06)}
.product-grid{display:flex; gap:12px; flex-wrap:wrap}
.product{background:#fff; padding:12px; border-radius:8px; width:220px; box-shadow:0 6px 14px rgba(0,0,0,.04); text-align:center}
.product img{width:100%; height:140px; object-fit:contain}
.btn{display:inline-block; background:var(--accent); color:white; padding:10px 16px; border-radius:10px; text-decoration:none; margin-top:8px}
.gallery-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:12px}
.gallery-grid img{width:100%; height:180px; object-fit:cover; border-radius:8px; background:white; padding:8px}
.company-data ul{list-style:none; padding:0}
.company-data li{padding:6px 0; border-bottom:1px dashed #eee}
.contact{background:white; padding:20px; border-radius:12px; box-shadow:0 8px 20px rgba(0,0,0,.05)}
.contact form{display:grid; gap:10px}
.contact input, .contact textarea{width:100%; padding:10px; border-radius:8px; border:1px solid #ddd}
.contact .contact-data{margin-top:12px; padding-top:12px; border-top:1px solid #f0f0f0}
.site-footer{padding:28px 0; text-align:center; color:var(--muted); font-size:14px}
.note{font-size:13px; color:var(--muted)}
.faq details{background:#fff; padding:12px; border-radius:10px; margin-bottom:8px; box-shadow:0 6px 12px rgba(0,0,0,.03)}
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr; text-align:center}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .product{width:48%}
}
@media (max-width:480px){
  .gallery-grid{grid-template-columns:1fr}
  .product{width:100%}
  .wrap{padding:18px}
}
