/* ================================================================
   ANNTONELLA & CO. LOUNGE BAKERY — CLEAN & MODERN MOBILE DESIGN
   ================================================================ */

:root {
  --bg-main:         #FAF9F6; /* Off-white aconchegante */
  --bg-surface:      #FFFFFF; /* Superfície dos cards */
  --bg-soft:         #F2F0EC; /* Fundo secundário */

  --text-main:       #18181B; /* Preto carvão sofisticado */
  --text-muted:      #52525B; /* Cinza escuro para leitura */
  --text-light:      #A1A1AA; /* Detalhes e bordas secundárias */

  --accent-black:    #18181B;
  --accent-hover:    #27272A;
  --border-color:    #E4E4E7;

  /* Tipografia */
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-sans:       'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Espaçamentos */
  --sp-xs:  0.35rem;
  --sp-sm:  0.75rem;
  --sp-md:  1.25rem;
  --sp-lg:  2.50rem;
  --sp-xl:  4.00rem;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-full: 999px;

  --shadow-subtle: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(0, 0, 0, 0.03);

  --container-max: 1080px;
  --container-narrow: 580px;
  --nav-height: 64px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

.icon { width: 1.2em; height: 1.2em; flex-shrink: 0; }

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-xs);
}

.section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-md);
  text-align: center;
}

.section--soft {
  background-color: var(--bg-soft);
  max-width: none;
  border-block: 1px solid var(--border-color);
}
.section--soft > * {
  max-width: var(--container-max);
  margin-inline: auto;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.15;
}

.section__header {
  margin-bottom: var(--sp-lg);
}

/* ============ HEADER FIXO E ANTI-QUEBRA ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: var(--nav-height);
  padding: 0 var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: var(--sp-xs);
}

.nav__brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Lang Switcher */
.lang {
  display: flex;
  align-items: center;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 2px;
}

.lang__btn {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.lang__btn.is-active {
  background-color: var(--accent-black);
  color: #FFFFFF;
}

/* Toggle Hamburger Mobile */
.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
}

.nav__toggle-bars { position: relative; width: 18px; height: 12px; }
.nav__toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav__toggle-bars span:nth-child(1) { top: 0; }
.nav__toggle-bars span:nth-child(2) { top: 5px; }
.nav__toggle-bars span:nth-child(3) { top: 10px; }

.nav__toggle.is-open .nav__toggle-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav__toggle.is-open .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open .nav__toggle-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* Menu Suspenso Mobile */
.nav__menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0; right: 0;
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: var(--sp-sm) var(--sp-md);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-subtle);
}

.nav.is-open .nav__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.nav__menu a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-xs) var(--sp-sm);
  transition: color 0.2s ease;
}
.nav__menu a:hover { color: var(--accent-black); }

@media (min-width: 850px) {
  .nav__brand { font-size: 1.25rem; }
  .nav__toggle { display: none; }
  .nav__menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: var(--sp-xs);
  }
}

/* ============ HERO ============ */
.hero {
  padding: var(--sp-lg) var(--sp-md) var(--sp-xl);
  text-align: center;
}
.hero__container {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.hero__logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.hero__logo {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  object-fit: cover;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-main);
}

.hero__sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-top: var(--sp-xs);
  font-weight: 400;
}

.hero__actions {
  margin-top: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.btn {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  text-align: left;
  transition: all 0.25s ease;
}
.btn:hover {
  border-color: var(--accent-black);
  transform: translateY(-2px);
}

.btn__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--bg-soft);
  color: var(--accent-black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.btn__text { flex: 1; display: flex; flex-direction: column; }
.btn__text strong { font-size: 0.92rem; font-weight: 600; color: var(--text-main); }
.btn__text small { font-size: 0.74rem; color: var(--text-muted); }

.btn--dark {
  background-color: var(--accent-black);
  color: #FFFFFF;
  border-color: var(--accent-black);
}
.btn--dark .btn__icon {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}
.btn--dark .btn__text strong { color: #FFFFFF; }
.btn--dark .btn__text small { color: #CCCCCC; }

/* ============ SOBRE (GALERIA SEM FOTO DA DONA) ============ */
.about__layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  align-items: center;
  text-align: left;
}

.about__content { flex: 1; }

.about__desc {
  margin-top: var(--sp-sm);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about__gallery {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
}

.about__img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-subtle);
}
.about__img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============ REDESIGN DOS CARDS NO MOBILE & DESKTOP ============ */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: left;
}

.service__card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service__card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-black);
}

.service__thumb {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background-color: var(--bg-soft);
}

.service__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service__card:hover .service__thumb img {
  transform: scale(1.05);
}

.service__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.25;
}

.service__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (min-width: 600px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .service__thumb {
    height: 180px;
  }
}

/* ============ DIFERENCIAIS ============ */
.cert__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: left;
}

.cert__card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-subtle);
}
.cert__card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}
.cert__card p { font-size: 0.88rem; color: var(--text-muted); }

/* ============ DEPOIMENTOS ============ */
.rev__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  text-align: left;
}

.rev__card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-subtle);
}

.rev__stars {
  display: flex;
  gap: 2px;
  color: var(--accent-black);
  font-size: 0.85rem;
  margin-bottom: var(--sp-xs);
}

.rev__card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: var(--sp-xs);
}

.rev__card cite {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ============ LOCALIZAÇÃO ============ */
.loc__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
  text-align: left;
}

.loc__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.loc__info-card {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  background-color: var(--bg-surface);
  padding: var(--sp-md);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
}

.loc__icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background-color: var(--bg-soft);
  color: var(--accent-black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.loc__info-card strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
}
.loc__info-card p { font-size: 0.88rem; color: var(--text-muted); }

.loc__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-subtle);
}
.loc__map iframe { width: 100%; height: 100%; border: 0; }

/* ============ RODAPÉ ============ */
.footer {
  border-top: 1px solid var(--border-color);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  background-color: var(--bg-surface);
}

.footer__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-main);
  margin-bottom: 4px;
}
.footer__copy { font-size: 0.8rem; color: var(--text-muted); }

/* ============ RESPONSIVIDADE DESKTOP ============ */
@media (min-width: 650px) {
  .cert__grid { grid-template-columns: repeat(2, 1fr); }
  .rev__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .rev__grid { grid-template-columns: repeat(3, 1fr); }
  .about__layout { flex-direction: row; }
  .loc__layout { grid-template-columns: 1fr 1fr; }
}