/* =====================
   AWL Essence — Styles
   ===================== */

:root {
  --creme: #F9F4EE;
  --creme-dark: #EDE0D0;
  --gold: #C9A96E;
  --gold-dark: #A8834A;
  --rose: #D4849A;
  --rose-light: #F0D0DA;
  --red: #C0392B;
  --brown: #2C1810;
  --brown-mid: #6B4226;
  --text: #3D2B1F;
  --text-light: #7A5C4A;
  --white: #FFFFFF;
  --shadow: 0 8px 40px rgba(44, 24, 16, 0.10);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Raleway', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--creme);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, #D4A96A, #C9A96E, #A8834A);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
  background: linear-gradient(135deg, #E0BB7A, #D4A96A, #B89050);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
}
.btn-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 39, 67, 0.45);
}

.btn-large { padding: 16px 36px; font-size: 1.05rem; }

.btn-pulse {
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,169,110,0.4); }
  50% { box-shadow: 0 4px 40px rgba(201,169,110,0.7); }
}

/* ---- LOGO ---- */
.logo-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FEDA75, #FA7E1E, #D62976, #962FBF);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.logo-circle > * {
  background: var(--creme);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  color: var(--brown);
  line-height: 1.2;
  letter-spacing: 1px;
}
.logo-text small {
  font-size: 6px;
  letter-spacing: 2px;
  font-weight: 400;
  display: block;
}
.logo-circle--sm {
  width: 64px;
  height: 64px;
}
.logo-circle--sm .logo-text {
  font-size: 10px;
}
.logo-circle--sm .logo-text small {
  font-size: 7px;
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ====================
   HEADER
   ==================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(249, 244, 238, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.header.scrolled .nav-links a { color: var(--brown); }
.header.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .nav-toggle span { background: var(--brown); }

/* ====================
   HERO
   ==================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(44, 24, 16, 0.82) 0%,
      rgba(107, 66, 38, 0.75) 40%,
      rgba(192, 57, 43, 0.55) 100%),
    linear-gradient(to bottom right, #3D1C0A, #6B3A1F, #C9A96E);
  z-index: 0;
}

/* Candle flame animation on background */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%; right: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow 4s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 20%; left: 5%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,132,154,0.20) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow 6s ease-in-out infinite alternate-reverse;
}
@keyframes glow {
  from { opacity: 0.4; transform: scale(1); }
  to { opacity: 1; transform: scale(1.3); }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #FEDA75, #FA7E1E, #D62976);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====================
   SOBRE
   ==================== */
.sobre {
  padding: 100px 0;
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.sobre-img-frame {
  width: 380px;
  height: 440px;
  border-radius: 200px 200px 160px 160px;
  background: linear-gradient(160deg, var(--creme), var(--creme-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sobre-img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 200px 200px 160px 160px;
  background: linear-gradient(135deg, var(--gold), var(--rose), var(--gold));
  z-index: -1;
}

/* Candle art CSS */
.sobre-candle-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.flame {
  width: 22px;
  height: 40px;
  background: linear-gradient(to top, #F39C12, #F7DC6F, #fff);
  border-radius: 50% 50% 30% 30%;
  animation: flicker 2s ease-in-out infinite;
  filter: blur(1px);
  box-shadow: 0 0 20px 8px rgba(243,156,18,0.5);
  margin-bottom: -5px;
  position: relative;
  z-index: 2;
}
@keyframes flicker {
  0%, 100% { transform: rotate(-2deg) scaleX(0.95); }
  25% { transform: rotate(2deg) scaleX(1.05); }
  50% { transform: rotate(-1deg) scaleX(1); }
  75% { transform: rotate(1deg) scaleX(0.97); }
}
.candle-body {
  width: 90px;
  height: 160px;
  background: linear-gradient(to right, #F8F0E8, #FDFAF6, #EDE0D0);
  border-radius: 8px 8px 4px 4px;
  position: relative;
  box-shadow: 4px 0 12px rgba(0,0,0,0.08);
}
.candle-body::before {
  content: '';
  position: absolute;
  top: 20px; left: 15px;
  width: 14px; height: 120px;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
}
/* Rose on top of candle */
.candle-body::after {
  content: '🌹';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  filter: saturate(1.3);
}
.candle-base {
  width: 110px;
  height: 20px;
  background: linear-gradient(to bottom, var(--creme-dark), #D4C4A8);
  border-radius: 0 0 50% 50%;
}

.sobre-badge-float {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  border: 1px solid var(--creme-dark);
}
.sobre-badge-float span {
  font-size: 1.4rem;
  color: var(--gold);
}

.sobre-text { padding: 20px 0; }

.sobre-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.sobre-numeros {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--creme-dark);
}
.numero-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.numero-item strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.numero-item span {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ====================
   PRODUTOS
   ==================== */
.produtos {
  padding: 100px 0;
  background: var(--creme);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.produto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.produto-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.produto-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.produto-card:hover .produto-img img {
  transform: scale(1.07);
}

.produto-info {
  padding: 28px;
}
.produto-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.produto-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  gap: 4px;
}
.btn-card:hover {
  color: var(--red);
  gap: 8px;
}

.produtos-cta {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.produtos-cta p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

/* ====================
   COMO COMPRAR
   ==================== */
.como-comprar {
  padding: 100px 0;
  background: linear-gradient(160deg, #2C1810 0%, #6B3A1F 60%, #3D1C0A 100%);
  position: relative;
  overflow: hidden;
}
.como-comprar::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.como-comprar .section-label { color: var(--gold); }
.como-comprar .section-title { color: var(--white); }
.como-comprar .section-subtitle { color: rgba(255,255,255,0.65); }

.passos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.passo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.passo.visible { opacity: 1; transform: translateY(0); }

.passo-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(201,169,110,0.25);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}
.passo-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.passo h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}
.passo p {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  line-height: 1.7;
}

.passo-seta {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.como-comprar-cta { text-align: center; }

/* ====================
   INSTAGRAM BANNER
   ==================== */
.instagram-banner {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--creme-dark);
}

.insta-content {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--creme);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--creme-dark);
  flex-wrap: wrap;
}

.insta-logo {
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.insta-text { flex: 1; min-width: 220px; }
.insta-text h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.insta-text p { color: var(--text-light); font-size: 0.95rem; }
.insta-text strong {
  display: block;
  margin-top: 6px;
  color: var(--gold-dark);
  font-size: 1rem;
}

/* ====================
   FOOTER
   ==================== */
.footer {
  background: var(--brown);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-top: 20px;
  line-height: 1.8;
}

.footer-links h4, .footer-contato h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-whatsapp, .footer-insta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-whatsapp:hover { color: #25D366; }
.footer-insta:hover { color: #E1306C; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

/* ====================
   WHATSAPP FLOAT
   ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: bounceIn 0.8s 1s both;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
@keyframes bounceIn {
  from { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.1); }
  to { opacity: 1; transform: scale(1); }
}

/* ====================
   RESPONSIVO
   ==================== */
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-visual { display: none; }
  .produtos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .passos-grid { flex-direction: column; }
  .passo-seta { transform: rotate(90deg); }
  .insta-content { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 24, 16, 0.98);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.4rem;
    color: var(--white);
  }

  .hero-content { padding: 100px 24px 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .sobre-numeros { gap: 20px; }
  .passo { min-width: 100%; max-width: 100%; }
}
