/* ================================
   YASMIN ODONTO — Estilos Globais
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --teal:       #00B4C6;
  --teal-dark:  #008FA0;
  --teal-light: #E0F7FA;
  --text-dark:  #1a2a2a;
  --text-muted: #5a7070;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: #fff;
}

/* ── NAVBAR ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: #fff;
  border-bottom: 1px solid #e0f2f2;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.outromapa-link{
  margin-top: 8px;
  font-size: 13px;
  color: var(--teal-dark);
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta { background: var(--teal); color: #fff; border: none; padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .2s; }
.nav-cta:hover { background: var(--teal-dark); }

/* ── SECÇÕES ── */
section { padding: 55px 40px; }
.section-label { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 8px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--text-dark); margin-bottom: 10px; }
.section-desc  { font-size: 15px; color: var(--text-muted); max-width: 520px; line-height: 1.7; margin-bottom: 36px; }

/* ── BOTÕES ── */
.btn-primary { background: var(--teal); color: #fff; border: none; padding: 13px 28px; border-radius: 50px; font-size: 15px; font-weight: 500; cursor: pointer; transition: background .2s; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline  { background: transparent; color: var(--teal); border: 2px solid var(--teal); padding: 11px 26px; border-radius: 50px; font-size: 15px; font-weight: 500; cursor: pointer; transition: all .2s; }
.btn-outline:hover { background: var(--teal); color: #fff; }

/* ── FOOTER ── */
footer { background: var(--teal-dark); color: #fff; padding: 28px 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-logo   { font-family: 'Playfair Display', serif; font-size: 18px; }
.footer-slogan { font-size: 13px; opacity: 0.7; margin-top: 4px; }
.footer-right  { font-size: 12px; opacity: 0.6; text-align: right; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 999; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box     { background: #fff; border-radius: 24px; padding: 36px 32px; width: 100%; max-width: 380px; margin: 0 16px; }
.modal-title   { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--text-dark); margin-bottom: 6px; }
.modal-sub     { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.modal-label   { font-size: 13px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; display: block; }
.modal-input   { width: 100%; padding: 13px 16px; border: 1.5px solid #d0f0f4; border-radius: 12px; font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text-dark); outline: none; transition: border .2s; margin-bottom: 8px; }
.modal-input:focus { border-color: var(--teal); }
.modal-hint    { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.modal-textarea { width: 100%; padding: 13px 16px; border: 1.5px solid #d0f0f4; border-radius: 12px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text-dark); outline: none; resize: none; height: 90px; transition: border .2s; margin-bottom: 20px; }
.modal-textarea:focus { border-color: var(--teal); }
.modal-btn-wa  { width: 100%; background: #25D366; color: #fff; border: none; padding: 14px; border-radius: 50px; font-size: 15px; font-weight: 500; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; transition: background .2s; }
.modal-btn-wa:hover { background: #1ebe5a; }
.modal-btn-cancel { width: 100%; background: transparent; color: var(--text-muted); border: 1.5px solid #e0f2f2; padding: 12px; border-radius: 50px; font-size: 14px; cursor: pointer; transition: all .2s; }
.modal-btn-cancel:hover { border-color: var(--teal); color: var(--teal); }
.modal-error   { font-size: 13px; color: #e24b4a; margin-bottom: 12px; display: none; }
