/* ============================================================
   Grace Rabello — Estilista de Noivas e Festas
   style.css
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #faf7f2;
  --gold:    #c8a97e;
  --gold-dk: #a8845a;
  --dark:    #1a1410;
  --charcoal:#3a302a;
  --light:   #f0ebe3;
  --white:   #ffffff;
  --text:    #4a3f36;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Lato', sans-serif;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 169, 126, .25);
  transition: box-shadow var(--transition);
}

#navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold-dk); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: .45rem 1.1rem !important;
  border-radius: 30px !important;
  letter-spacing: .06em !important;
}

.nav-cta:hover { background: var(--gold-dk) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 5rem;
  background:
    linear-gradient(160deg, rgba(250,247,242,.88) 0%, rgba(240,235,227,.82) 100%),
    url('images/grace-rabello.jpg') center top/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,169,126,.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-label {
  font-family: var(--ff-sans);
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.1;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero h1 em { font-style: italic; color: var(--gold-dk); }

.divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.divider span {
  display: block;
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider i { color: var(--gold); font-style: normal; font-size: .9rem; }

.hero-desc {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 520px;
  margin: 0 auto 2.4rem;
  line-height: 1.8;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: .9rem 2.4rem;
  border-radius: 40px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(200,169,126,.4);
}

.btn-primary:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,126,.5);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section {
  padding: 6rem 5%;
}

.section-label {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}

.section-title.light { color: var(--white); }

.section-line {
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-content: center;
  margin: 1rem 0 3rem;
}

.section-line span {
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-line i { color: var(--gold); font-style: normal; font-size: .8rem; }

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

.sobre-inner {
  display: flex;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sobre-img-wrap {
  flex: 0 0 380px;
  position: relative;
}

.sobre-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.sobre-img-frame {
  position: absolute;
  top: 18px; left: 18px;
  right: -18px; bottom: -18px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: .5;
}

.sobre-text h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.sobre-text h3 em { color: var(--gold-dk); font-style: italic; }

.sobre-text p {
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-size: .97rem;
}

.badge {
  display: inline-block;
  margin-top: 1.2rem;
  background: var(--light);
  border: 1px solid var(--gold);
  color: var(--gold-dk);
  padding: .45rem 1.2rem;
  border-radius: 30px;
  font-size: .82rem;
  letter-spacing: .1em;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  background: var(--cream);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid rgba(200,169,126,.2);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(200,169,126,.18);
}

.card-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: .7rem;
}

.card p {
  font-size: .9rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ============================================================
   PROCESSO
   ============================================================ */
.processo {
  background: linear-gradient(135deg, #1a1410 0%, #2d241c 100%);
}

.processo .section-title { color: var(--white); }
.processo .section-label { color: var(--gold); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-num {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: .6rem;
}

.step h4 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .6rem;
}

.step p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  background: linear-gradient(145deg, #c8a97e 0%, #a8845a 100%);
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.dep-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 2rem;
  color: var(--white);
}

.dep-stars {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: .8rem;
  opacity: .9;
}

.dep-card p {
  font-size: .93rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  opacity: .9;
}

.dep-author {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: .8;
}

/* ============================================================
   BRASIL
   ============================================================ */
.brasil {
  background: var(--white);
}

.brasil-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.brasil-inner p {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}

.loc-tag {
  background: var(--light);
  border: 1px solid rgba(200,169,126,.3);
  color: var(--gold-dk);
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  background: linear-gradient(145deg, #1a1410 0%, #2d241c 100%);
  text-align: center;
}

.contato .section-label { color: var(--gold); }

.contato-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contato-inner > p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: #25D366;
  color: var(--white);
  padding: .9rem 2.2rem;
  border-radius: 40px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  margin-bottom: 2.5rem;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
}

.info-item strong { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  text-align: center;
  padding: 1.8rem 5%;
  border-top: 1px solid rgba(200,169,126,.2);
}

footer p {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}

footer em { color: var(--gold); font-style: normal; }

/* ============================================================
   FLOAT WhatsApp BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .sobre-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .sobre-img-wrap {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(200,169,126,.2);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: .85rem 5%;
    font-size: .9rem;
  }

  .nav-cta {
    margin: .5rem 5%;
    text-align: center;
    border-radius: 30px !important;
  }

  section { padding: 4.5rem 5%; }

  .steps { grid-template-columns: 1fr 1fr; }

  .dep-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }

  .steps { grid-template-columns: 1fr; }

  .cards-grid { grid-template-columns: 1fr; }

  .wa-float { bottom: 1.2rem; right: 1.2rem; }
}
