/* ==========================================================
   LANA WOLF ART & LANA SUPPLY PRO - DESIGN SYSTEM GLOBAL
   ========================================================== */
:root {
  --primary: #C98276;
  --primary-dark: #A1645A;
  --primary-light: #E8ACA3;
  --secondary: #3B2D2A;
  --secondary-dark: #241715;
  --accent-gold: #C5A059;
  --accent-gold-light: #F7D070;
  --bg-body: #FDFBFB;
  --bg-nude: #FDF4F3;
  --chat-bg: rgba(255, 255, 255, 0.92);
  --text-main: #4A3D3C;
  --text-light: #8C7A77;
  --msg-user: #F0E6E4;
  --msg-bot: #FFFFFF;
  --focus-glow: rgba(201, 130, 118, 0.3);
  --shadow-soft: 0 10px 40px rgba(59, 45, 42, 0.08);
  --shadow-hover: 0 15px 45px rgba(201, 130, 118, 0.22);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: linear-gradient(135deg, var(--bg-body) 0%, #ebedee 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
}

/* Header & Navigation */
header {
  width: 100%;
  padding: 14px 5%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253, 251, 251, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 130, 118, 0.18);
  transition: all 0.3s ease;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo span {
  color: var(--primary);
  font-style: italic;
}

.logo-badge {
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #A1645A;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 400;
  font-size: 0.92rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  font-weight: 500;
}

.pro-nav-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f7ede8, #fdf4f3);
  border: 1px solid rgba(201, 130, 118, 0.4);
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-left: 6px;
  letter-spacing: 0.5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-pro {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 1.5px solid var(--primary);
  border-radius: 30px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-nav-pro:hover {
  background: var(--bg-nude);
  border-color: var(--primary-dark);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-nav-agendar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  box-shadow: 0 4px 14px rgba(201, 130, 118, 0.35);
  transition: all 0.3s ease;
}

.btn-nav-agendar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 130, 118, 0.45);
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  background: rgba(253, 251, 251, 0.98);
  backdrop-filter: blur(15px);
  padding: 24px 6%;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  border-bottom: 1px solid rgba(201, 130, 118, 0.2);
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Page Hero Banner */
.page-hero {
  padding: 135px 5% 50px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-nude);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 130, 118, 0.25);
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-title span {
  color: var(--primary);
  font-style: italic;
}

.page-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 30px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(201, 130, 118, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 130, 118, 0.4);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--secondary);
  border: 1.5px solid var(--primary);
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--bg-nude);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: #25D366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-buy:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: white;
}

/* Services Grid & Cards */
.services {
  padding: 60px 5% 90px;
  background: var(--bg-body);
  width: 100%;
}

.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.7rem;
  color: var(--secondary);
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 36px;
  max-width: 1240px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 0 0 30px 0;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.15);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 22px;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-card-content {
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-actions {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-service-schedule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(201, 130, 118, 0.25);
}

.btn-service-schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 130, 118, 0.38);
  color: white;
}

.btn-service-sim {
  background: none;
  border: 1px dashed rgba(201, 130, 118, 0.6);
  color: var(--primary-dark);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-service-sim:hover {
  background: var(--bg-nude);
  border-color: var(--primary);
}

/* Cursos Grid & Cards */
.cursos-section {
  padding: 70px 5% 90px;
  background: var(--bg-body);
  width: 100%;
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.curso-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(201, 130, 118, 0.2);
  padding: 35px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.curso-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.curso-tag {
  align-self: flex-start;
  background: var(--bg-nude);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.curso-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.curso-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.curso-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.curso-benefits li {
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.curso-benefits li i {
  color: var(--primary);
  font-size: 0.85rem;
}

.btn-curso {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--secondary), #241715);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.btn-curso:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
}

/* Lana Supply Pro Section & Grid */
.loja-pro-section {
  padding: 70px 5% 90px;
  background: linear-gradient(180deg, #FDF4F3 0%, #FFFFFF 100%);
  width: 100%;
  position: relative;
}

.loja-pro-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
}

.loja-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3B2D2A;
  color: #F7D070;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(59, 45, 42, 0.15);
}

.loja-pro-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.loja-pro-title span {
  color: var(--primary);
  font-style: italic;
}

.loja-pro-desc {
  color: var(--text-main);
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 25px;
}

.loja-controls {
  max-width: 1050px;
  margin: 0 auto 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.pro-search-box {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.pro-search-box input {
  width: 100%;
  padding: 13px 44px 13px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(201, 130, 118, 0.35);
  background: white;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.pro-search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--focus-glow);
}

.pro-search-box i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1rem;
}

.pro-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pro-tab-btn {
  background: white;
  border: 1.5px solid rgba(201, 130, 118, 0.25);
  color: var(--text-main);
  padding: 9px 20px;
  border-radius: 30px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pro-tab-btn:hover {
  border-color: var(--primary);
  background: var(--bg-nude);
  color: var(--primary-dark);
}

.pro-tab-btn.active {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  box-shadow: 0 6px 18px rgba(59, 45, 42, 0.2);
}

.pro-tab-btn.active .tab-count {
  background: var(--primary);
  color: white;
}

.tab-count {
  background: rgba(201, 130, 118, 0.15);
  color: var(--primary-dark);
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 600;
}

.pro-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.pro-product-card {
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(201, 130, 118, 0.2);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}

.pro-product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #fdfbfb;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pro-product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(59, 45, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #F7D070;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product-badge.bancada {
  background: rgba(201, 130, 118, 0.92);
  color: white;
}

.product-badge.destaque {
  background: rgba(197, 160, 89, 0.95);
  color: #2b1f1d;
}

.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-spec {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(201, 130, 118, 0.25);
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

.product-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #2e7d32;
  display: block;
}

.pro-logistics-card {
  max-width: 1240px;
  margin: 50px auto 0;
  background: white;
  border-radius: 20px;
  border: 1.5px solid rgba(201, 130, 118, 0.25);
  padding: 30px 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  box-shadow: var(--shadow-soft);
}

.logistics-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.logistics-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-nude);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.logistics-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 6px;
}

.logistics-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Domino Automate Ad Banner */
.domino-ad {
  width: 100%;
  background: linear-gradient(135deg, #111019 0%, #1e1822 50%, #14111a 100%);
  color: #fff;
  padding: 60px 5%;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.domino-ad-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.domino-ad-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: #f7d070;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.domino-ad-logo-wrap {
  margin: 4px 0;
}

.domino-ad-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}

.domino-ad-logo:hover {
  opacity: 0.85;
}

.domino-ad-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5a059, transparent);
}

.domino-ad-tagline {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #fdfbfb;
  margin: 0;
  line-height: 1.3;
}

.domino-ad-tagline span {
  color: #f7d070;
  font-style: italic;
}

.domino-ad-desc {
  font-size: 0.95rem;
  color: #b8afb8;
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

.domino-ad-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin: 6px 0;
}

.domino-ad-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: #dcd0db;
}

.domino-ad-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c5a059 0%, #e0be75 100%);
  color: #1a1518;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.35);
  margin-top: 6px;
}

.domino-ad-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(197, 160, 89, 0.55);
  color: #1a1518;
}

/* Footer */
footer {
  width: 100%;
  background: var(--secondary);
  color: white;
  padding: 60px 5% 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-gold-light);
}

.footer-col p {
  color: #c9bcba;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-location-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-map-container {
  flex: 1;
  min-width: 200px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a69c9a;
  font-size: 0.85rem;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .header-actions .btn-nav-pro {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .page-title {
    font-size: 2.3rem;
  }
  .loja-pro-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  header {
    padding: 12px 4%;
  }
  .logo {
    font-size: 1.22rem;
  }
  .btn-nav-agendar {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  .page-hero {
    padding: 110px 4% 40px;
  }
  .page-title {
    font-size: 1.95rem;
  }
  .services, .cursos-section, .loja-pro-section {
    padding-left: 4%;
    padding-right: 4%;
  }
  .pro-filter-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    width: 100%;
  }
  .pro-tab-btn {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 7px 14px;
  }
}

/* ==========================================================
   PORTAL CARDS (3 PILLARS ON HOME)
   ========================================================== */
.pillars-section {
  padding: 40px 5% 80px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.pillar-portal-card {
  background: white;
  border-radius: 24px;
  border: 1.5px solid rgba(201, 130, 118, 0.22);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.pillar-portal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.pillar-img-wrap {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #fdf4f3;
}
.pillar-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pillar-portal-card:hover .pillar-img-wrap img {
  transform: scale(1.08);
}
.pillar-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(59, 45, 42, 0.9);
  backdrop-filter: blur(8px);
  color: #F7D070;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar-body {
  padding: 28px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pillar-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
.pillar-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}
.pillar-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}
.pillar-portal-card:hover .pillar-link-cta {
  gap: 14px;
  color: var(--primary-dark);
}

/* ==========================================================
   CHATBOT & VIRTUAL SPECIALIST STYLES
   ========================================================== */
.ai-chat-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: 550px;
  background: var(--chat-bg);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(201, 130, 118, 0.2);
  text-align: left;
}
.chat-header {
  background: linear-gradient(135deg, var(--secondary), #1e1513);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.chat-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}
.avatar-container {
  position: relative;
}
.lana-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: url("https://images.unsplash.com/photo-1595959183082-7b570b7e08e2?q=80&w=200&auto=format&fit=crop") center/cover;
  border: 2px solid var(--primary-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  background: #2dd36f;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  box-shadow: 0 0 8px rgba(45, 211, 111, 0.5);
}
.header-info h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: white;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.header-info p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}
.chat-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(253, 251, 251, 0.4);
  scroll-behavior: smooth;
}
.chat-body::-webkit-scrollbar {
  width: 6px;
}
.chat-body::-webkit-scrollbar-thumb {
  background: rgba(201, 130, 118, 0.25);
  border-radius: 10px;
}
.message-row {
  display: flex;
  width: 100%;
}
.message-row.bot {
  justify-content: flex-start;
}
.message-row.user {
  justify-content: flex-end;
}
.message {
  max-width: 82%;
  padding: 13px 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: messageSlide 0.35s ease forwards;
  word-wrap: break-word;
}
@keyframes messageSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.message.bot {
  background: var(--msg-bot);
  border-radius: 18px 18px 18px 4px;
  color: var(--text-main);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.message.user {
  background: var(--msg-user);
  border-radius: 18px 18px 4px 18px;
  color: var(--secondary);
}
.chat-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(253, 244, 243, 0.75);
  border-radius: 14px;
  border: 1px solid rgba(201, 130, 118, 0.2);
}
.quick-actions-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-chips-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chat-chip-btn {
  background: white;
  border: 1px solid rgba(201, 130, 118, 0.35);
  border-radius: 20px;
  padding: 8px 14px;
  font-family: "Outfit", sans-serif;
  font-size: 0.86rem;
  color: var(--secondary);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-chip-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateX(3px);
}
.typing-indicator-row {
  display: none;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.typing-indicator-row.active {
  display: flex;
}
.typing-bubbles {
  background: var(--msg-bot);
  padding: 10px 16px;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 6px;
  align-items: center;
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--text-light);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
  opacity: 0.6;
}
.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.1); opacity: 1; }
}
.chat-footer {
  padding: 16px 20px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.input-wrapper {
  display: flex;
  align-items: center;
  background: #f8f5f4;
  border-radius: 30px;
  padding: 5px 6px 5px 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.input-wrapper:focus-within {
  background: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--focus-glow);
}
.input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  color: var(--text-main);
  outline: none;
}
.send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  color: white;
}
.send-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}
.send-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.lgpd-notice {
  text-align: center;
  font-size: 0.7rem;
  color: #a69c9a;
  margin-top: 8px;
}

/* ==========================================================
   COMMENTS SECTION STYLES
   ========================================================== */
.comments-section {
  background: white;
  padding: 70px 5%;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.comments-container {
  max-width: 800px;
  margin: 0 auto;
}
.comment-card {
  background: #FDFBFB;
  border: 1px solid rgba(201, 130, 118, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.comment-card.reply {
  margin-left: 35px;
  border-left: 3px solid var(--primary);
  background: #FDF4F3;
}
.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.comment-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}
.comment-meta {
  display: flex;
  flex-direction: column;
}
.comment-author {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}
.comment-date {
  font-size: 0.78rem;
  color: var(--text-light);
}
.comment-body {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 10px;
  white-space: pre-wrap;
}
.btn-reply {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.comment-form {
  margin-bottom: 35px;
  background: var(--bg-nude);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(201, 130, 118, 0.3);
}
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(201, 130, 118, 0.4);
  margin-bottom: 12px;
  font-family: inherit;
  resize: vertical;
  min-height: 75px;
}
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--focus-glow);
}
.auth-message {
  text-align: center;
  padding: 25px;
  background: var(--bg-nude);
  border-radius: 16px;
  margin-bottom: 35px;
}
.btn-google {
  background: white;
  border: 1px solid #ccc;
  color: #444;
  padding: 9px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
}
.btn-google:hover {
  background: #f1f1f1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.user-logged-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.user-logged-in span {
  font-size: 0.88rem;
  color: var(--secondary);
  font-weight: 500;
}
.btn-logout {
  background: none;
  border: none;
  color: #a69c9a;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ==========================================================
   SIMULATION MODAL & SERVICE BUTTONS
   ========================================================== */
.btn-service-sim {
  background: none;
  border: 1px dashed rgba(201, 130, 118, 0.6);
  color: var(--primary-dark);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

.btn-service-sim:hover {
  background: var(--bg-nude);
  border-color: var(--primary);
}

.sim-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 20000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sim-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sim-modal {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  padding: 35px 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  position: relative;
}

.sim-modal-overlay.active .sim-modal {
  transform: translateY(0);
}

.sim-modal h3 {
  font-family: "Playfair Display", serif;
  color: var(--secondary);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.sim-modal p.sim-price {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 25px;
}

.sim-modal textarea,
.sim-modal input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(201, 130, 118, 0.4);
  border-radius: 12px;
  margin-bottom: 20px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.sim-modal textarea:focus {
  border-color: var(--primary);
}

.sim-choice-box {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(201, 130, 118, 0.4);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background: rgba(253, 251, 251, 0.8);
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23c98276" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sim-choice-box:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--focus-glow);
  background-color: white;
}

.sim-choice-label {
  display: block;
  text-align: left;
  font-size: 0.85rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
  font-weight: 500;
}

.sim-step {
  display: none;
}

.sim-step.active {
  display: block;
  animation: fadeUp 0.4s ease;
}

.sim-img-result {
  width: 100%;
  border-radius: 16px;
  margin: 15px 0 25px 0;
  box-shadow: 0 5px 25px rgba(201, 130, 118, 0.2);
}

.sim-loading {
  padding: 40px 0;
}

.sim-loading .dot {
  width: 12px;
  height: 12px;
  margin: 0 4px;
  display: inline-block;
  background: var(--primary);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.sim-loading .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.sim-loading .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.btn-close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #b5aba9;
  transition: color 0.3s;
}

.btn-close-modal:hover {
  color: var(--secondary);
}

/* Duplicated blocks removed — definitions are in the first occurrence above */
