/* Acougue Luana Moraes - CSS */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: #2D2D2D;
  background: #FFF9F5;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,249,245,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,40,30,0.08);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 40px; height: 40px;
  background: #B4281E;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.logo-text span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: #2D2D2D;
  line-height: 1.15;
}
.logo-text small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #B4281E;
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin-left: 28px;
  transition: color 0.3s;
}
.nav-links a:hover { color: #B4281E; }
.nav-cta {
  background: #B4281E !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.3s;
}
.nav-cta:hover { background: #8E1F17 !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: linear-gradient(160deg, #FFF9F5 0%, #FFF0E8 40%, #FFE4D6 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,40,30,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(210,120,60,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero-tag {
  display: inline-block;
  background: rgba(180,40,30,0.08);
  border: 1px solid rgba(180,40,30,0.15);
  color: #B4281E;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #2D2D2D;
  margin-bottom: 20px;
}
.accent { color: #B4281E; }
.hero p {
  font-size: 17px;
  color: #777;
  max-width: 500px;
  margin-bottom: 36px;
  font-weight: 400;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #B4281E;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-primary:hover { background: #8E1F17; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #B4281E;
  color: #B4281E;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-secondary:hover { background: #B4281E; color: #fff; }

/* SECTIONS */
.section { padding: 90px 0; }
.section-tag {
  display: inline-block;
  background: rgba(180,40,30,0.06);
  border: 1px solid rgba(180,40,30,0.12);
  color: #B4281E;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-desc {
  color: #888;
  font-size: 15px;
  max-width: 560px;
  line-height: 1.7;
}
.section-desc.center { margin: 0 auto; text-align: center; }

/* ABOUT */
.about { background: #FFF9F5; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about-text strong { color: #2D2D2D; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stat-box {
  background: #fff;
  border: 1px solid rgba(180,40,30,0.08);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #B4281E;
  display: block;
}
.stat-box .lbl {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: all 0.3s;
}
.about-card:hover {
  border-color: rgba(180,40,30,0.2);
  box-shadow: 0 4px 20px rgba(180,40,30,0.06);
}
.about-card .icon { font-size: 32px; margin-bottom: 12px; }
.about-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 6px;
}
.about-card p {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
}

/* PRODUCTS */
.products { background: #fff; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.product-card {
  background: #FFF9F5;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.product-card:hover {
  border-color: rgba(180,40,30,0.2);
  box-shadow: 0 6px 24px rgba(180,40,30,0.06);
  transform: translateY(-3px);
}
.product-icon {
  width: 52px; height: 52px;
  background: rgba(180,40,30,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  transition: all 0.3s;
}
.product-card:hover .product-icon {
  background: #B4281E;
}
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 10px;
}
.product-card p {
  color: #888;
  font-size: 13px;
  line-height: 1.7;
}

/* CTA */
.cta {
  padding: 90px 0;
  background: linear-gradient(160deg, #FFF0E8 0%, #FFE4D6 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,40,30,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.cta .container { position: relative; z-index: 2; }
.cta-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 60px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-whatsapp:hover { background: #20BD5A; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #B4281E;
  color: #B4281E;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-phone:hover { background: #B4281E; color: #fff; }

/* FOOTER */
footer {
  background: #2D2D2D;
  padding: 56px 0 0;
  color: #ccc;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
}
footer .logo-text span { color: #fff; }
footer .logo-text small { color: #E07060; }
footer .logo-icon { background: #B4281E; }
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: #E07060;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-col li .ic {
  color: #E07060;
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-col a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-col a:hover { color: #E07060; }
.footer-col .dot {
  width: 4px; height: 4px;
  background: #E07060;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.footer-bottom {
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-legal {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  line-height: 1.8;
}
.footer-legal strong { color: rgba(255,255,255,0.45); }
.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 99;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 42px; }
  .section-title { font-size: 32px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .section { padding: 60px 0; }
  .cta-box { padding: 40px 20px; }
  .section-title { font-size: 28px; }
}
