/* ===== CONCEITO MODERNO — Dr. Gustavo Vasconcelos Rabello ===== */
:root {
  --bg-dark: #0c1222;
  --bg-dark-2: #131d32;
  --bg-light: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-on-dark: rgba(255, 255, 255, 0.95);
  --text-on-dark-muted: rgba(255, 255, 255, 0.7);
  --accent: #22d3ee;
  --accent-hover: #06b6d4;
  --accent-neon: #67e8f9;
  --accent-soft: rgba(34, 211, 238, 0.15);
  --border: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Header moderno ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 18, 34, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-on-dark);
}

.logo:hover {
  color: var(--text-on-dark);
  opacity: 0.95;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #0c1222;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.logo-sub {
  display: none;
}

@media (min-width: 900px) {
  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
  }
  .logo-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-on-dark);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

.nav-menu a:hover {
  color: var(--text-on-dark);
}

.btn-nav {
  padding: 0.6rem 1.25rem !important;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
}

.btn-nav:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #0c1222;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.4);
}

.btn-primary:hover {
  background: var(--accent-neon);
  color: #0c1222;
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-full { width: 100%; }

/* ---- Hero moderno (full-width split, foto em destaque) ---- */
.hero-modern {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-modern .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.hero-modern .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 4rem;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.hero-modern .hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.hero-modern .hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin: 0 0 1.25rem;
}

.hero-title-accent {
  color: var(--accent);
  display: block;
  margin-top: 0.15em;
  text-shadow: 0 0 40px rgba(34, 211, 238, 0.35);
}

.hero-modern .hero-desc {
  margin: 0 0 2rem;
  max-width: 480px;
}

.hero-modern .hero-desc p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-on-dark-muted);
  margin: 0 0 0.75rem;
  text-align: justify;
  hyphens: auto;
}

.hero-modern .hero-desc p:last-child {
  margin-bottom: 0;
}

.hero-modern .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-modern .hero-visual {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.hero-modern .hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  overflow: hidden;
}

.hero-modern .hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 34, 0.4) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-modern .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Tratamento da imagem: suaviza e integra ao layout */
.hero-modern .hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 18, 34, 0.15) 100%);
  pointer-events: none;
}

/* ---- Seções comuns ---- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Serviços ---- */
.services {
  padding: 5rem 0;
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- Sobre ---- */
.about {
  padding: 5rem 0;
  background: var(--bg-light);
}

.about-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 40%;
  bottom: 40%;
  background: var(--accent);
  opacity: 0.2;
  border-radius: var(--radius-xl);
  z-index: 0;
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.25);
}

.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
  text-align: justify;
}

.about-text strong {
  color: var(--accent);
  font-weight: 600;
}

.about-highlight {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0.25rem 0 0 !important;
  text-align: justify;
}

.about-experience {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.about-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-weight: 500;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---- Contato ---- */
.contact {
  padding: 5rem 0;
  background: var(--surface);
}

.contact .section-header {
  margin-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.contact-two-locations {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-location {
  background: var(--bg-light);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.contact-location:hover {
  border-color: var(--accent);
}

.location-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin: 0 0 1rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-item-icon { font-size: 1.2rem; flex-shrink: 0; }

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-item p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }

.contact-item a { color: var(--accent); }
.contact-item a:hover { text-decoration: underline; }

.location-links { margin-top: 0.5rem; font-size: 0.9rem; }
.location-links .link-sep { margin: 0 0.35rem; color: var(--border); }
.link-map { font-weight: 500; }

.contact-hours { margin-bottom: 0; }

.contact-form-row {
  margin-bottom: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrap--full {
  width: 100%;
}

.contact-hours-wrap {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-form-wrap {
  background: var(--bg-light);
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* AGENDA - Horários mais próximos (mesma estrutura do painel admin) */
.form-agenda-slots-wrap {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.form-agenda-slots-wrap .agenda-slots-proximos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(34, 211, 238, 0.08);
  border-bottom: 1px solid var(--border);
}
.form-agenda-slots-wrap .agenda-slots-proximos-header .agenda-slots-header { margin-bottom: 0; flex: 1; }
.form-agenda-slots-wrap .agenda-slots-title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.form-agenda-slots-wrap .agenda-slots-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-agenda-slots-wrap .agenda-slots-refresh-btn {
  flex-shrink: 0;
  padding: 0.35rem 0.6rem;
  font-size: 0.85rem;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid var(--border);
  color: var(--accent);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.form-agenda-slots-wrap .agenda-slots-refresh-btn:hover {
  background: rgba(34, 211, 238, 0.25);
  border-color: var(--accent);
}
.form-agenda-slots-wrap .agenda-slots-proximos-body {
  padding: 0.75rem;
  max-height: 480px;
  overflow-y: auto;
}
.form-agenda-slots-wrap .agenda-slots-para-agendar { max-height: 420px; overflow-y: auto; }
.form-agenda-slots-wrap .agenda-slots-date-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid transparent;
}
.form-agenda-slots-wrap .agenda-slots-date-group > .agenda-slots-date-label,
.form-agenda-slots-wrap .agenda-slots-date-group > .agenda-slots-date-row,
.form-agenda-slots-wrap .agenda-slots-date-group > .agenda-slots-chips { flex-basis: 100%; }
.form-agenda-slots-wrap .agenda-slots-date-group--hoje {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.35);
}
.form-agenda-slots-wrap .agenda-slots-date-group--amanha {
  background: rgba(34, 211, 238, 0.06);
  border-color: rgba(34, 211, 238, 0.2);
}
.form-agenda-slots-wrap .agenda-slots-date-group--proximo {
  background: rgba(0, 0, 0, 0.03);
}
.form-agenda-slots-wrap .agenda-slots-date-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.form-agenda-slots-wrap .agenda-slots-date-label { font-size: 0.9rem; min-width: 5.5em; }
.form-agenda-slots-wrap .agenda-slots-proximidade {
  font-size: 0.75rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.2);
  color: var(--accent);
  font-weight: 500;
}
.form-agenda-slots-wrap .agenda-slots-date-group--hoje .agenda-slots-proximidade {
  background: var(--accent);
  color: #0c1222;
}
.form-agenda-slots-wrap .agenda-slots-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.form-agenda-slots-wrap .agenda-slot-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  font-size: 0.9rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.form-agenda-slots-wrap .agenda-slot-chip:hover {
  background: rgba(34, 211, 238, 0.2);
  border-color: var(--accent);
}
.form-agenda-slots-wrap .agenda-slot-chip.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #0c1222;
}
.form-agenda-slots-wrap .agenda-slots-loading,
.form-agenda-slots-wrap .agenda-slots-empty {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.form-agenda-slots-wrap .agenda-slots-empty { color: var(--error, #dc2626); }

.form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-notice--paciente {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--text);
  box-shadow: 0 2px 12px rgba(34, 211, 238, 0.06);
}

.form-notice-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 211, 238, 0.2);
  border-radius: 12px;
  font-size: 1.1rem;
}

.form-notice-icon::before {
  content: 'i';
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1;
}

.form-notice-content {
  flex: 1;
  min-width: 0;
}

.form-notice-main {
  margin: 0 0 0.5rem;
  font-weight: 500;
  color: var(--text);
}

.form-notice-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-notice strong {
  color: var(--accent);
  font-weight: 600;
}

.form-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-photo-wrap {
  margin-top: 0;
  text-align: center;
}

.contact-photo {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 3.5rem 0 2rem;
}

.footer a { color: var(--text-on-dark-muted); }
.footer a:hover { color: #fff; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand .logo { color: inherit; }
.footer-brand .logo-mark { background: var(--accent); }
.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--text-on-dark);
}

.footer-links ul { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  margin-top: 0.5rem;
}

.footer-legal p { margin: 0; font-size: 0.85rem; opacity: 0.75; }

/* ---- Botão flutuante WhatsApp ---- */
.wa-float-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.wa-float,
.wa-float-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.wa-float-main:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wa-float-main[aria-expanded="true"] {
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

.wa-float-menu {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 180px;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.wa-float-wrap.is-open .wa-float-menu {
  display: flex;
}

.wa-float-option {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.wa-float-option:hover {
  background: rgba(37, 211, 102, 0.15);
  color: #128c7e;
}

.wa-float-icon { font-size: 1.35rem; line-height: 1; }

/* ---- Responsivo ---- */
@media (max-width: 900px) {
  .hero-modern .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-modern .hero-content {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .hero-modern .hero-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-modern .hero-desc p {
    text-align: center;
  }

  .hero-modern .hero-actions {
    justify-content: center;
  }

  .hero-modern .hero-visual {
    min-height: 65vh;
  }

  .hero-modern .hero-photo-wrap {
    min-height: 65vh;
  }

  .hero-modern .hero-photo-overlay {
    background: linear-gradient(180deg, rgba(12, 18, 34, 0.3) 0%, transparent 40%);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 360px;
    margin: 0 auto;
  }

  .contact-grid,
  .contact-two-locations {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    max-width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    display: none;
  }

  .nav-menu.is-open { display: flex; }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-dark);
  }

  .nav-menu li:last-child { border-bottom: none; padding-top: 0.75rem; }

  .nav-menu a { display: block; padding: 0.9rem 0; }

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

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: none; }
}

@media (max-width: 480px) {
  .hero-modern .hero-visual,
  .hero-modern .hero-photo-wrap {
    min-height: 55vh;
  }

  .hero-modern .hero-actions {
    flex-direction: column;
  }

  .hero-modern .hero-actions .btn { width: 100%; }

  .services,
  .about,
  .contact { padding: 3.5rem 0; }

  .wa-float-text { display: none; }
}
