/*
Theme Name: Carmelitta Franquias
Theme URI: https://carmelittaacessorios.com
Author: Carmelitta Acessórios
Author URI: https://carmelittaacessorios.com
Description: Landing page para franquias Carmelitta Acessórios
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: carmelitta
*/

/* ============================================
   RESET & BASE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold: #C9993A;
  --gold-light: #E8BC6A;
  --gold-dark: #A07828;
  --black: #0A0A0A;
  --black-mid: #111111;
  --black-soft: #1A1A1A;
  --cream: #F5F0E8;
  --cream-dim: #C8BFA8;
  --gray: #888888;
  --whatsapp: #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}

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

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
@keyframes walPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.6); }
}

.animate-fade-up { opacity: 0; animation: fadeUp 0.8s forwards; }
.animate-fade-up-1 { animation-delay: 0.2s; }
.animate-fade-up-2 { animation-delay: 0.4s; }
.animate-fade-up-3 { animation-delay: 0.6s; }
.animate-fade-up-4 { animation-delay: 0.8s; }
.animate-fade-up-5 { animation-delay: 1.0s; }
.animate-fade-up-6 { animation-delay: 1.2s; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITY
   ============================================ */
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.gold-line { width: 60px; height: 1px; background: var(--gold); margin-top: 24px; }
.gold-line-center { margin-left: auto; margin-right: auto; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 1023px) { .container { padding: 0 20px; } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(201,153,58,0.2);
}
.navbar-logo { height: 36px; width: auto; object-fit: contain; }
.navbar-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.navbar-cta:hover { background: var(--gold); color: var(--black); }

@media (max-width: 1023px) {
  .navbar { padding: 20px; }
  .navbar-logo { height: 28px; }
  .navbar-cta { padding: 8px 18px; font-size: 10px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 120px 40px 80px;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,153,58,0.12) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 80%, rgba(201,153,58,0.05) 0%, transparent 50%),
              #0A0A0A;
}
.hero-label {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--cream);
  max-width: 900px; margin-bottom: 8px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-dim); margin: 32px 0 52px;
  max-width: 540px; line-height: 2; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-gold {
  background: var(--gold); color: var(--black); border: none;
  padding: 16px 48px; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; display: inline-block;
  transition: all 0.3s; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,153,58,0.3); }
.btn-outline {
  background: transparent; color: var(--cream-dim);
  border: 1px solid rgba(245,240,232,0.2);
  padding: 16px 48px; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; gap: 60px; margin-top: 80px;
  flex-wrap: wrap; justify-content: center;
}
.hero-stat { text-align: center; padding: 0 20px; }
.hero-stat:not(:last-child) { border-right: 1px solid rgba(201,153,58,0.2); }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 600; color: var(--gold); line-height: 1; display: block;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-top: 6px; display: block;
}
.hero-scroll {
  margin-top: 64px; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray);
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@media (max-width: 1023px) {
  .hero { padding: 120px 20px 80px; }
  .hero-stats { gap: 32px; }
  .hero-stat:not(:last-child) { border-right: none; }
  .hero-scroll { display: none; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.about p { font-size: 15px; line-height: 1.9; color: var(--cream-dim); font-weight: 300; margin-bottom: 20px; }
.about p strong { color: var(--cream); font-weight: 500; }
.about blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300; font-style: italic;
  color: var(--gold-light); line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 32px; margin-bottom: 48px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.about-tag {
  border: 1px solid rgba(201,153,58,0.3);
  padding: 8px 20px; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}

@media (max-width: 1023px) {
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   MVV
   ============================================ */
.mvv {
  padding: 120px 0;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A 0%, #111111 100%);
}
.mvv::before, .mvv::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.mvv::before { top: 0; }
.mvv::after { bottom: 0; }
.mvv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.mvv-card {
  background: var(--black); padding: 52px 40px;
  position: relative; transition: transform 0.3s;
}
.mvv-card:hover { transform: translateY(-4px); }
.mvv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.mvv-card:hover::before { transform: scaleX(1); }
.mvv-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic; color: var(--gold);
  letter-spacing: 3px; margin-bottom: 28px; display: block;
}
.mvv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; margin-bottom: 20px; color: var(--cream);
}
.mvv-card p { font-size: 14px; line-height: 1.8; color: var(--cream-dim); font-weight: 300; }

@media (max-width: 1023px) {
  .mvv { padding: 80px 0; }
  .mvv-cards { grid-template-columns: 1fr; }
}

/* ============================================
   CEO
   ============================================ */
.ceo {
  padding: 120px 0;
}
.ceo-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: center;
}
.ceo-img-wrap {
  position: relative; max-width: 400px;
}
.ceo-img-frame {
  width: 100%; aspect-ratio: 3/4; position: relative;
  overflow: hidden; border: 1px solid rgba(201,153,58,0.15);
}
.ceo-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.ceo-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: var(--black);
  padding: 20px 28px; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
}
.ceo-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; font-style: italic;
  color: var(--cream); margin-bottom: 32px; line-height: 1.1;
}
.ceo-content p {
  font-size: 15px; line-height: 1.9; color: var(--cream-dim);
  font-weight: 300; margin-bottom: 20px;
}

@media (max-width: 1023px) {
  .ceo { padding: 80px 0; }
  .ceo-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   WHY CARMELITTA
   ============================================ */
.why { padding: 120px 0; background: var(--black-soft); }
.why-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.why-card {
  padding: 44px 36px; border: 1px solid rgba(201,153,58,0.12);
  background: var(--black); position: relative; overflow: hidden;
  transition: all 0.4s;
}
.why-card:hover { border-color: rgba(201,153,58,0.4); transform: translateY(-6px); }
.why-card-icon {
  width: 48px; height: 48px; border: 1px solid rgba(201,153,58,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; font-size: 20px;
}
.why-card-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; color: var(--gold);
  display: block; margin-bottom: 8px; line-height: 1;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; margin-bottom: 16px;
  color: var(--cream); line-height: 1.2;
}
.why-card p { font-size: 13px; line-height: 1.8; color: var(--cream-dim); font-weight: 300; }

@media (max-width: 1023px) {
  .why { padding: 80px 0; }
  .why-cards { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .why-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   INVESTMENT
   ============================================ */
.investment { padding: 120px 0; background: var(--black); }
.investment-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; margin-top: 60px; align-items: start;
}
.investment-table {
  background: var(--black-soft); border: 1px solid rgba(201,153,58,0.15);
  padding: 48px;
}
.investment-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid rgba(245,240,232,0.05);
  font-size: 14px; font-weight: 300; color: var(--cream-dim);
  transition: color 0.3s;
}
.investment-row:hover { color: var(--cream); }
.investment-row-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--gold);
}
.investment-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(201,153,58,0.3);
}
.investment-total-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream-dim);
}
.investment-total-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; color: var(--gold); line-height: 1;
}
.investment-total-value small {
  font-size: 18px; vertical-align: top; display: inline-block; margin-top: 12px;
}
.investment-note {
  font-size: 11px; color: var(--gray); margin-top: 16px; font-weight: 300; font-style: italic;
}
.investment-metrics { display: flex; flex-direction: column; gap: 20px; }
.investment-metric {
  padding: 32px 36px; border: 1px solid rgba(201,153,58,0.12);
  background: var(--black-soft); transition: border-color 0.3s;
}
.investment-metric:hover { border-color: rgba(201,153,58,0.4); }
.investment-metric.highlight {
  background: var(--gold); border-color: var(--gold);
}
.investment-metric-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  display: block; margin-bottom: 12px; color: var(--gray);
}
.investment-metric.highlight .investment-metric-label { color: rgba(10,10,10,0.6); }
.investment-metric-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 600; line-height: 1; display: block; color: var(--gold);
}
.investment-metric.highlight .investment-metric-value { color: var(--black); }
.investment-metric-sub {
  font-size: 12px; margin-top: 8px; font-weight: 300; display: block; color: var(--cream-dim);
}
.investment-metric.highlight .investment-metric-sub { color: rgba(10,10,10,0.7); }

@media (max-width: 1023px) {
  .investment { padding: 80px 0; }
  .investment-grid { grid-template-columns: 1fr; }
  .investment-table { padding: 32px; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { padding: 120px 0; background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%); }
.how-steps {
  display: flex; gap: 0; margin-top: 70px;
  position: relative; align-items: stretch;
}
.how-steps::before {
  content: ''; position: absolute; top: 36px; left: 36px; right: 36px;
  height: 1px; background: linear-gradient(to right, #A07828, #C9993A, #A07828);
}
.how-step {
  flex: 1; padding: 0 20px; text-align: center;
  position: relative; z-index: 1;
}
.how-step-num {
  width: 72px; height: 72px; border: 1px solid var(--gold);
  background: var(--black); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px; font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; color: var(--gold);
  transition: all 0.3s;
}
.how-step:hover .how-step-num { background: var(--gold); color: var(--black); }
.how-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--cream);
}
.how-step p { font-size: 12px; line-height: 1.8; color: var(--cream-dim); font-weight: 300; }

.how-steps-mobile { display: none; }

@media (max-width: 1023px) {
  .how { padding: 80px 0; }
  .how-steps { display: none; }
  .how-steps-mobile {
    display: flex; flex-direction: column; gap: 40px; margin-top: 60px;
  }
  .how-step-mobile { display: flex; gap: 24px; align-items: flex-start; }
  .how-step-mobile .how-step-num {
    width: 64px; height: 64px; min-width: 64px;
    font-size: 24px; margin: 0;
  }
}

/* ============================================
   UNITS
   ============================================ */
.units { padding: 120px 0; }
.units-image {
  margin-top: 60px; position: relative; overflow: hidden;
  border: 1px solid rgba(201,153,58,0.15);
}
.units-image img { width: 100%; height: 480px; object-fit: cover; }
.units-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent, transparent);
}
.units-image-text {
  position: absolute; bottom: 40px; left: 40px;
}
.units-image-badge {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: rgba(201,153,58,0.1);
  padding: 6px 16px; display: inline-block; margin-bottom: 12px;
  font-weight: 600; backdrop-filter: blur(4px);
}
.units-image-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; color: var(--cream);
}
.units-image-text p { font-size: 13px; color: var(--cream-dim); font-weight: 300; margin-top: 4px; }
.units-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.unit-card {
  background: var(--black-soft); border: 1px solid rgba(201,153,58,0.15);
  padding: 48px; position: relative; overflow: hidden;
  transition: all 0.4s;
}
.unit-card:hover { border-color: rgba(201,153,58,0.5); }
.unit-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px;
  height: 100%; background: var(--gold);
}
.unit-card-badge {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); background: rgba(201,153,58,0.1);
  padding: 6px 16px; display: inline-block; margin-bottom: 20px; font-weight: 600;
}
.unit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600; margin-bottom: 8px; color: var(--cream);
}
.unit-card p { font-size: 14px; color: var(--cream-dim); font-weight: 300; }
.units-cta {
  margin-top: 60px; padding: 52px; text-align: center;
  border: 1px solid rgba(201,153,58,0.2);
  background: linear-gradient(135deg, rgba(201,153,58,0.1), rgba(201,153,58,0.03));
}
.units-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; font-style: italic;
  color: var(--cream-dim); margin-bottom: 24px;
}
.units-cta p em { color: var(--gold); font-style: normal; }

@media (max-width: 1023px) {
  .units { padding: 80px 0; }
  .units-image img { height: 300px; }
  .units-image-text { bottom: 24px; left: 24px; }
  .units-image-text h3 { font-size: 28px; }
  .units-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact { padding: 120px 0; background: var(--black-soft); position: relative; overflow: hidden; }
.contact-glow {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; pointer-events: none;
  background: radial-gradient(circle, rgba(201,153,58,0.06) 0%, transparent 70%);
}
.contact-inner { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.contact input, .contact select, .contact textarea {
  width: 100%; background: rgba(245,240,232,0.03);
  border: 1px solid rgba(201,153,58,0.2); color: var(--cream);
  padding: 16px 20px; font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 300; outline: none;
  transition: all 0.3s;
}
.contact input:focus, .contact select:focus, .contact textarea:focus {
  border-color: var(--gold); background: rgba(201,153,58,0.04);
}
.contact input::placeholder, .contact textarea::placeholder {
  color: rgba(136,136,136,0.5);
}
.contact select { appearance: none; }
.contact select option { background: var(--black-mid); }
.contact textarea { resize: vertical; min-height: 120px; }
.contact label {
  display: block; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; font-weight: 600;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--black);
  border: none; padding: 20px; font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; cursor: pointer; margin-top: 12px;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,153,58,0.25);
}
.form-disclaimer {
  font-size: 11px; color: var(--gray); text-align: center;
  margin-top: 16px; font-weight: 300; line-height: 1.7;
}
.form-success {
  text-align: center; padding: 40px;
  border: 1px solid rgba(201,153,58,0.3);
  background: rgba(201,153,58,0.08);
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; color: var(--gold); margin-bottom: 12px;
}
.form-success p { color: var(--cream-dim); font-size: 14px; font-weight: 300; }

@media (max-width: 1023px) {
  .contact { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-mid); border-top: 1px solid rgba(201,153,58,0.15);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px; margin-bottom: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,240,232,0.05);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--gold);
  font-style: italic; letter-spacing: 1px; display: block; margin-bottom: 20px;
}
.footer p { font-size: 13px; color: var(--gray); line-height: 1.8; font-weight: 300; }
.footer h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.footer a {
  font-size: 13px; color: var(--gray); line-height: 2;
  font-weight: 300; display: block; transition: color 0.3s;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(136,136,136,0.5); font-weight: 300; }
.footer-bottom a { font-size: 11px; color: rgba(201,153,58,0.5); display: inline; }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float {
  position: fixed; bottom: 32px; right: 32px;
  width: 58px; height: 58px; background: var(--whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 200; transition: transform 0.3s;
  animation: walPulse 3s infinite 2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

@media (max-width: 1023px) {
  .wa-float { bottom: 20px; right: 20px; }
}
