/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(-45deg, #dc512e, #b23e22, #220c07, #4a1a10);
  background-size: 400% 400%;
  animation: gradientMove 9s ease infinite;
  color: #1a1a1a;
  overflow-x: hidden;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===============================
   HEADER SIMPLES – MOBILE
================================ */
.simple-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.header-logo {
  width: min(280px, 55vw);
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.header-logo:hover {
  opacity: 1;
}

.get-in-touch-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.get-in-touch-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* HEADER ACTIONS (lang + button) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.lang-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lang-link:hover {
  color: #ffffff;
}

.lang-link.lang-active {
  color: #ffffff;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* LOGO DECORATIVO */
.corner-logo {
  position: fixed;
  right: -60px;
  bottom: -60px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.corner-logo img {
  width: min(360px, 80vw);
}

/* HEADER/NAV */
.header {
  padding: 20px 0;
  position: relative;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

/* WRAPPER PRINCIPAL – MOBILE */
.booking-wrapper {
  max-width: 1100px;
  margin: 20px auto 100px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* CARD BRANCO CENTRAL – MOBILE: 1 coluna */
.booking-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  overflow: hidden;
}

/* ========================================
   COLUNA ESQUERDA – MOBILE
   ======================================== */

.left-section {
  padding: 24px 20px;
  border-right: none;
  border-bottom: 1px solid #e5e7eb;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: -8px;
}

.booking-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.booking-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 0.95rem;
}

.meta-item svg {
  flex-shrink: 0;
}

.booking-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

/* ========================================
   COLUNA DIREITA – MOBILE
   ======================================== */

.right-section {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

/* CALENDÁRIO */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-month {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: capitalize;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.calendar-container {
  margin-bottom: 20px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
  color: #1a1a1a;
  font-weight: 500;
}

.calendar-day.header {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: default;
  margin-bottom: 4px;
}

.calendar-day.header:hover {
  background: transparent;
}

.calendar-day.available:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(0.85);
}

.calendar-day.selected {
  background: #0069ff !important;
  color: #ffffff !important;
}

.calendar-day.disabled {
  color: #d1d5db;
  cursor: not-allowed;
}

.calendar-day.disabled:hover {
  background: transparent;
}

.timezone-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* SEÇÃO DE HORÁRIOS */
.times-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.times-header {
  margin-bottom: 20px;
}

.back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #0069ff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}

.back-button:hover {
  opacity: 0.8;
}

.times-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  max-height: 400px;
  padding-right: 8px;
}

.times-list::-webkit-scrollbar {
  width: 6px;
}

.times-list::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}

.times-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 10px;
}

.time-button {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1.5px solid #0069ff;
  background: #ffffff;
  color: #0069ff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.time-button:hover {
  background: #0069ff;
  color: #ffffff;
}

.time-button:disabled {
  border-color: #e5e7eb;
  color: #d1d5db;
  cursor: not-allowed;
  text-decoration: line-through;
}

.time-button:disabled:hover {
  background: #ffffff;
  color: #d1d5db;
}

/* SEÇÃO DE FORMULÁRIO */
.form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-header {
  margin-bottom: 24px;
}

.selected-slot {
  margin-top: 12px;
  padding: 12px 16px;
  background: #f0f9ff;
  border-radius: 6px;
  border-left: 3px solid #0069ff;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #0069ff;
  box-shadow: 0 0 0 3px rgba(0, 105, 255, 0.1);
}

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

.submit-btn {
  padding: 14px 24px;
  border-radius: 6px;
  border: none;
  background: #0069ff;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #0051cc;
}

/* SEÇÃO DE CONFIRMAÇÃO */
.confirmation-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.confirmation-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.confirmation-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 24px;
}

.confirmation-details {
  background: #f9fafb;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  width: 100%;
  max-width: 400px;
}

.confirmation-note {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 380px;
}

/* ===============================
   FOOTER SIMPLES – MOBILE
================================ */
.simple-footer {
  position: fixed;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
  z-index: 10;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-title {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
}

.info-sub {
  font-size: 12px;
  opacity: 0.8;
}

.info-email {
  font-size: 12px;
  opacity: 0.8;
}

.footer-meta {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  opacity: 0.9;
  margin-top: 8px;
}

/* ===============================
   TABLET: 640px+
================================ */
@media (min-width: 640px) {
  .simple-header {
    padding: 16px 20px;
  }

  .header-logo {
    width: 280px;
  }

  .get-in-touch-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .booking-wrapper {
    margin: 20px auto 100px;
    padding: 0 16px;
  }

  .booking-card {
    border-radius: 8px;
  }

  .left-section,
  .right-section {
    padding: 24px 20px;
  }

  .booking-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .calendar-grid {
    gap: 2px;
  }

  .calendar-day {
    font-size: 0.85rem;
  }

  .simple-footer {
    left: 16px;
    bottom: 16px;
  }

  .corner-logo {
    right: -60px;
    bottom: -60px;
  }

  .corner-logo img {
    width: 360px;
  }
}

/* ===============================
   DESKTOP: 968px+
================================ */
@media (min-width: 968px) {
  .simple-header {
    padding: 24px 32px;
  }

  .header-logo {
    width: 220px;
  }

  .get-in-touch-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .booking-wrapper {
    margin: 40px auto 80px;
    padding: 0 24px;
  }

  /* AGORA SIM: 2 colunas */
  .booking-card {
    grid-template-columns: 380px 1fr;
    min-height: 640px;
    border-radius: 12px;
  }

  .left-section {
    padding: 48px 40px;
    border-right: 1px solid #e5e7eb;
    border-bottom: none;
  }

  .right-section {
    padding: 48px 40px;
  }

  .booking-subtitle {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .calendar-grid {
    gap: 4px;
  }

  .calendar-day {
    font-size: 0.9rem;
  }

  .simple-footer {
    left: 24px;
    bottom: 24px;
  }

  .footer-meta {
    font-size: 28px;
    letter-spacing: -2px;
  }

  .corner-logo {
    right: -40px;
    bottom: -40px;
  }

  .corner-logo img {
    width: 520px;
  }
}

/* ===============================
   A11Y.CSS — ACESSIBILIDADE
   Inclua APÓS todos os outros CSS
   Não sobrescreve nenhum estilo visual
================================ */

/* ===============================
   1. SKIP LINK
   Link invisível que aparece ao
   pressionar Tab — pula direto
   para o conteúdo principal
================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #000;
  transition: top 0.2s ease;
  white-space: nowrap;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid #dc512e;
  outline-offset: 2px;
}

/* ===============================
   2. FOCUS VISÍVEL
   Reaplica outline em todos os
   elementos focáveis — respeita
   o estilo do site (cor laranja)
================================ */
:focus-visible {
  outline: 2px solid #dc512e;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove outline padrão somente
   quando :focus-visible está ativo */
:focus:not(:focus-visible) {
  outline: none;
}

/* ===============================
   3. REDUCED MOTION
   Desativa animações para quem
   configurou o sistema assim
================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Mantém o gradiente mas remove a animação */
  .about-hero,
  .contact-hero,
  .services-hero,
  body[class*="agendamento"] {
    background-position: 0% 50% !important;
    animation: none !important;
  }
}

/* ===============================
   4. CONTRASTE DE TEXTO
   Garante legibilidade mínima
   nos elementos com opacity baixa
================================ */
@media (forced-colors: active) {
  /* Modo de alto contraste do Windows */
  * {
    forced-color-adjust: auto;
  }

  .work-hover,
  .section-text,
  .manifesto-text p,
  .about-hero p,
  .contact-hero p,
  .services-hero p {
    opacity: 1 !important;
  }
}

/* ===============================
   5. TEXTOS OCULTOS (SR ONLY)
   Visível apenas para leitores
   de tela — use a classe
   .sr-only nos seus HTMLs
================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Versão focável (para skip links internos) */
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ===============================
   6. INDICADORES DE ESTADO
   Torna estados ARIA visíveis
================================ */

/* Botões e links desativados */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
  opacity: 0.45;
  pointer-events: none;
}

/* Links de navegação ativos */
[aria-current="page"] {
  opacity: 1 !important;
  font-weight: 600;
}

/* ===============================
   7. FORMULÁRIOS ACESSÍVEIS
   Melhora legibilidade de erros
   e estados no contact/agendamento
================================ */

/* Campo com erro */
.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

/* Mensagem de erro */
.field-error {
  display: block;
  font-size: 13px;
  color: #e53e3e;
  margin-top: 6px;
  font-weight: 500;
}

/* Campo obrigatório */
.form-group label[data-required]::after,
.form-field label[data-required]::after {
  content: " *";
  color: #dc512e;
  font-weight: 600;
}

/* ===============================
   8. IMAGENS E MÍDIA
   Evita que imagens decorativas
   recebam foco desnecessário
================================ */
img[aria-hidden="true"],
svg[aria-hidden="true"] {
  pointer-events: none;
}

/* Garante que imagens sem alt
   não quebrem o layout */
img:not([alt]) {
  outline: 3px dashed rgba(229, 62, 62, 0.5);
}

/* ===============================
   9. CALENDÁRIO (agendamento)
   Melhora navegação por teclado
================================ */
.calendar-day:focus-visible {
  outline: 2px solid #0069ff;
  outline-offset: 2px;
  border-radius: 50%;
}

.time-button:focus-visible {
  outline: 2px solid #0069ff;
  outline-offset: 2px;
}

/* ===============================
   10. DARK MODE
   Respeita preferência do sistema
   sem quebrar o design atual
================================ */
@media (prefers-color-scheme: dark) {
  /* O site já é dark — apenas
     ajusta elementos brancos */
  .booking-card {
    background: #1a1a1a;
    color: #f5f5f5;
  }

  .booking-card input,
  .booking-card textarea {
    background: #2a2a2a;
    color: #f5f5f5;
    border-color: #444;
  }

  .booking-card .left-section,
  .booking-card .right-section {
    background: #1a1a1a;
    color: #f5f5f5;
  }

  .booking-card .booking-subtitle,
  .booking-card .calendar-month,
  .booking-card .section-title,
  .booking-card .confirmation-title {
    color: #f5f5f5;
  }

  .booking-card .booking-title,
  .booking-card .meta-item,
  .booking-card .booking-description,
  .booking-card .calendar-day,
  .booking-card .author-role,
  .booking-card .confirmation-subtitle {
    color: #aaa;
  }

  .booking-card .calendar-day.disabled {
    color: #555;
  }

  .booking-card .left-section {
    border-color: #333;
  }

  .booking-card .timezone-info {
    background: #2a2a2a;
  }

  .booking-card .confirmation-details {
    background: #2a2a2a;
    color: #f5f5f5;
  }
}

/* ================================================================
   CORREÇÕES MOBILE - br_agendamento.css
   ================================================================
   ADICIONE ESTE CSS NO FINAL DO ARQUIVO br_agendamento.css
*/

@media (max-width: 768px) {
  
  /* ============================================
     FIX 1: TEXTO FIXO EM CIMA (PROBLEMA PRINCIPAL)
     ============================================ */
  
  /* Remove a coluna esquerda da tela no mobile - ela fica escondida */
  .left-section {
    display: none !important;
  }
  
  /* Card ocupa tela inteira no mobile */
  .booking-card {
    flex-direction: column !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    min-height: 100vh !important;
  }
  
  /* Coluna direita (calendário/formulário) ocupa tudo */
  .right-section {
    width: 100% !important;
    padding: 20px 16px 100px 16px !important; /* Espaço para teclado */
  }
  
  /* ============================================
     FIX 2: CALENDÁRIO BUGADO
     ============================================ */
  
  /* Grid do calendário - 7 colunas fixas */
  .calendar-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 4px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  /* Cada dia do calendário */
  .calendar-day {
    aspect-ratio: 1 / 1 !important;
    min-height: 48px !important;
    max-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    padding: 0 !important;
    width: 100% !important;
  }
  
  /* Headers dos dias da semana */
  .calendar-day.header {
    font-weight: 600 !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    background: transparent !important;
    min-height: 32px !important;
    max-height: 32px !important;
  }
  
  /* Dias disponíveis */
  .calendar-day.available {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    cursor: pointer !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  
  .calendar-day.available:hover,
  .calendar-day.available:active {
    background: rgba(255, 255, 255, 0.2) !important;
  }
  
  /* Dia selecionado */
  .calendar-day.selected {
    background: #dc512e !important;
    color: #fff !important;
    font-weight: 600 !important;
  }
  
  /* Dias desabilitados */
  .calendar-day.disabled {
    opacity: 0.3 !important;
    color: rgba(255, 255, 255, 0.4) !important;
    cursor: not-allowed !important;
  }
  
  /* Container do calendário */
  .calendar-container {
    width: 100% !important;
    overflow: visible !important;
  }
  
  /* ============================================
     FIX 3: INPUTS NÃO FICAREM ESCONDIDOS PELO TECLADO
     ============================================ */
  
  /* Quando input recebe foco, sobe um pouco */
  input:focus,
  textarea:focus {
    transform: translateY(-10px);
    transition: transform 0.2s ease;
  }
  
  /* Previne zoom automático no iOS */
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
  
  /* ============================================
     FIX 4: AJUSTES GERAIS
     ============================================ */
  
  /* Título da seção */
  .section-title {
    font-size: 1.2rem !important;
    margin-bottom: 20px !important;
    color: #fff !important;
  }
  
  /* Cabeçalho do calendário */
  .calendar-header {
    margin-bottom: 16px !important;
  }
  
  .calendar-month {
    font-size: 0.95rem !important;
    color: #fff !important;
  }
  
  /* Botões de navegação do mês */
  .calendar-nav {
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Info de timezone */
  .timezone-info {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 12px !important;
  }
  
  /* Botões de horário */
  .time-button {
    width: 100% !important;
    padding: 14px !important;
    font-size: 15px !important;
    margin-bottom: 8px !important;
  }
  
  /* Formulário */
  .booking-form {
    width: 100% !important;
  }
  
  .form-field {
    margin-bottom: 20px !important;
  }
  
  .form-field input,
  .form-field textarea {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 16px !important; /* Importante para iOS */
  }
  
  /* Botão de submit */
  .submit-btn {
    width: 100% !important;
    padding: 16px !important;
    font-size: 16px !important;
  }
  
  /* Box de slot selecionado */
  .selected-slot {
    padding: 16px !important;
    margin-bottom: 20px !important;
    border-radius: 12px !important;
  }
  
  /* Confirmação */
  .confirmation-section {
    padding: 40px 20px !important;
  }
  
  /* Footer */
  .simple-footer {
    padding: 20px 16px !important;
    font-size: 0.85rem !important;
  }
  
  /* Garante scroll suave */
  body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* Wrapper principal */
  .booking-wrapper {
    min-height: 100vh !important;
    padding: 0 !important;
  }
  
  /* Header no mobile */
  .simple-header {
    padding: 12px 16px !important;
  }
  
  .header-logo {
    width: 180px !important;
  }
  
  .get-in-touch-btn {
    font-size: 11px !important;
    padding: 6px 12px !important;
  }
  
  /* Esconde elementos decorativos no mobile */
  .corner-logo {
    display: none !important;
  }
}

/* ============================================
   FIX ESPECÍFICO PARA iOS
   ============================================ */
@supports (-webkit-touch-callout: none) {
  /* Previne comportamentos estranhos no iOS */
  input,
  textarea {
    -webkit-appearance: none;
    appearance: none;
  }
  
  /* Previne zoom no foco */
  input:focus,
  textarea:focus,
  select:focus {
    font-size: 16px !important;
  }
}

/* ============================================
   FIX PARA TELAS MUITO PEQUENAS (<375px)
   ============================================ */
@media (max-width: 375px) {
  .calendar-day {
    min-height: 42px !important;
    max-height: 42px !important;
    font-size: 13px !important;
  }
  
  .calendar-day.header {
    font-size: 10px !important;
    min-height: 28px !important;
    max-height: 28px !important;
  }
  
  .section-title {
    font-size: 1.1rem !important;
  }
}