/* =========================================================
   BRITO SOLUÇÕES LTDA - STYLE.CSS COMPLETO
   Versão consolidada para substituir o style.css atual
   Foco: visual profissional, imagens sem corte e melhor responsividade
   ========================================================= */

:root{
  --brand:#0b1220;
  --accent:#2563eb;
  --accent-2:#0ea5e9;
  --bg:#f6f8fc;
  --card:#ffffff;
  --text:#101828;
  --muted:#667085;
  --line:#d8e0ee;
  --soft:#eef4ff;
  --danger:#ef4444;
  --success:#16a34a;
  --warning:#f59e0b;
  --shadow:0 24px 70px rgba(15,23,42,.10);
  --shadow-soft:0 14px 36px rgba(15,23,42,.07);
  --radius:24px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 20% 0%,rgba(37,99,235,.10),transparent 30%),
    linear-gradient(180deg,#f8fbff 0%,#f3f6fb 100%);
  font-size:16px;
  line-height:1.45;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================================================
   CONTAINER E TOPO
   ========================================================= */

.wrap{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:30;
  min-height:76px;
  padding:14px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:950;
}

.brand img{
  width:56px;
  height:56px;
  object-fit:contain;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
  padding:4px;
}

.brand small{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  margin-top:4px;
}

.top-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}

.top-actions a,
.top-actions button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:9px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:#334155;
  font:inherit;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
}

.top-actions .primary-link,
.top-actions a:last-child{
  background:var(--brand);
  color:#fff;
  border-color:transparent;
}

/* =========================================================
   HERO HOME
   ========================================================= */

.hero{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:center;
  padding-top:46px;
  padding-bottom:54px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--accent);
  font-size:12px;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
  border-radius:999px;
  background:#eef4ff;
  padding:8px 12px;
}

.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--accent);
}

h1,h2,h3{
  letter-spacing:-.045em;
  margin-top:0;
}

.hero h1{
  max-width:570px;
  font-size:clamp(44px,4.7vw,66px);
  line-height:.98;
  margin:18px 0 22px;
}

.hero p{
  max-width:590px;
  font-size:18px;
  line-height:1.58;
  margin:0 0 24px;
  color:#52627a;
}

.store-info{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 30px;
}

.store-info span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:#334155;
  font-size:13px;
  font-weight:850;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hero > div:last-child{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Imagem principal ou carrossel
   object-fit: contain mostra a imagem inteira sem cortar */
.hero-banner,
.hero-carousel{
  position:relative;
  width:100%;
  max-width:540px;
  height:390px;
  min-height:390px;
  border-radius:30px;
  background:#fff;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 28px 70px rgba(15,23,42,.12);
}

.hero-banner{
  object-fit:contain;
  object-position:center center;
}

.hero-carousel .hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .65s ease,transform .65s ease;
  background:#fff;
}

.hero-carousel .hero-slide.active{
  opacity:1;
  transform:scale(1);
}

.hero-carousel-dots{
  position:absolute;
  left:20px;
  right:20px;
  bottom:16px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:3;
}

.hero-carousel-dots span{
  width:9px;
  height:9px;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(15,23,42,.18);
}

.hero-carousel-dots span.active{
  width:26px;
  background:#fff;
}

/* =========================================================
   BOTÕES
   ========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:11px 22px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:#fff;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 14px 36px rgba(37,99,235,.22);
  white-space:nowrap;
  font-size:14px;
  transition:transform .15s ease, box-shadow .15s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn.secondary{
  background:#fff;
  color:var(--brand);
  border:1px solid var(--line);
  box-shadow:none;
}

.btn.small{
  min-height:36px;
  padding:7px 14px;
  font-size:13px;
}

.btn.danger{
  background:#ef4444;
  color:#fff;
  box-shadow:none;
}

.btn.full{
  width:100%;
}

/* =========================================================
   SEÇÕES, CATEGORIAS E SERVIÇOS
   ========================================================= */

.section-head{
  margin:32px 0 26px;
}

.section-head h2{
  font-size:clamp(34px,4vw,58px);
  margin:18px 0 10px;
}

.section-head p{
  color:#52627a;
  font-size:18px;
}

.cats{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 30px;
}

.cat{
  min-height:42px;
  padding:9px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:#334155;
  font-weight:900;
  cursor:pointer;
}

.cat.active{
  background:var(--brand);
  color:#fff;
  border-color:transparent;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:24px;
}

.service-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:var(--shadow);
}

.service-card .service-img{
  width:100%;
  height:230px;
  object-fit:contain;
  object-position:center center;
  border-radius:20px;
  margin-bottom:16px;
  border:1px solid var(--line);
  background:#fff;
  padding:0;
}

.badge,
.kind-pill,
.status-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.badge.active,
.status-chip.ok{
  background:#dcfce7;
  color:#166534;
}

.badge.soon{
  background:#eaf2ff;
  color:#1d4ed8;
}

.kind-pill{
  background:#f4f0ff;
  color:#5b21b6;
  margin-left:6px;
}

.status-chip{
  background:#eef4ff;
  color:#1e40af;
}

.status-chip.danger-chip{
  background:#fee2e2;
  color:#991b1b;
  border-color:#fecaca;
}

.service-card h3{
  font-size:25px;
  margin:18px 0 10px;
}

.service-card p{
  color:#52627a;
  min-height:44px;
}

.service-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:20px 0;
}

.service-meta strong{
  font-size:24px;
}

.service-meta span{
  background:#eef4ff;
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  color:#334155;
}

/* =========================================================
   AGENDAMENTO
   ========================================================= */

.appointment-section{
  padding:46px 28px;
}

.appointment-card{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:34px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:30px;
  box-shadow:var(--shadow);
}

.booking-form label,
label{
  display:block;
  font-weight:900;
  margin:0 0 8px;
}

.two{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

input,
select,
textarea{
  width:100%;
  min-height:46px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:var(--text);
  padding:11px 14px;
  font:inherit;
  outline:none;
}

textarea{
  min-height:104px;
  resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

input[type="checkbox"]{
  width:18px;
  height:18px;
  min-height:18px;
  padding:0;
  margin:0;
  accent-color:var(--accent);
  vertical-align:middle;
}

.summary-box,
.notice,
.pix-box{
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  margin:14px 0;
}

.notice.ok{
  background:#effff4;
  color:#166534;
  border-color:#bbf7d0;
}

.notice.bad{
  background:#fff1f2;
  color:#991b1b;
  border-color:#fecdd3;
}

/* =========================================================
   RODAPÉ E POPUPS
   ========================================================= */

.footer{
  padding:36px;
  text-align:center;
  color:#64748b;
}

.status-popup{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:1000;
  max-width:380px;
  display:none;
}

.status-popup.show{
  display:block;
}

.status-popup .popup-inner,
.status-popup .toast-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
}

.status-popup .toast-card p{
  margin:8px 0 0;
  color:#475569;
}

.status-popup button,
.status-popup .toast-card button{
  margin-top:12px;
  min-height:36px;
  padding:8px 14px;
  border:0;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

/* =========================================================
   ADMIN GERAL
   ========================================================= */

.admin-body{
  background:
    radial-gradient(circle at 20% 0%,rgba(37,99,235,.12),transparent 28%),
    linear-gradient(180deg,#f8fbff 0%,#f4f7fb 100%);
}

.admin-shell{
  max-width:1320px;
  margin:0 auto;
  padding:34px 24px 80px;
}

.admin-top{
  position:sticky;
  top:0;
  z-index:50;
  min-height:76px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:12px 28px;
  background:rgba(255,255,255,.90);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
  box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.admin-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:950;
}

.admin-brand img{
  width:52px;
  height:52px;
  border-radius:16px;
  border:1px solid var(--line);
  padding:4px;
  background:#fff;
  object-fit:contain;
}

.admin-brand span{
  font-size:15px;
  line-height:1.05;
}

.admin-brand small{
  display:block;
  margin-top:5px;
  color:#667085;
  font-size:12px;
  font-weight:800;
}

.admin-layout{
  display:grid;
  grid-template-columns:250px minmax(0,1fr);
  gap:24px;
}

.admin-nav{
  position:sticky;
  top:96px;
  align-self:start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:14px;
  box-shadow:0 24px 70px rgba(15,23,42,.08);
}

.admin-nav a{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:44px;
  padding:10px 12px;
  border-radius:14px;
  color:#475467;
  font-size:14px;
  font-weight:950;
}

.admin-nav a:hover{
  background:#eef4ff;
  color:var(--accent);
}

.admin-nav a.active{
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:#fff;
  box-shadow:0 14px 30px rgba(37,99,235,.22);
}

.admin-main{
  min-width:0;
}

.page-title{
  margin:0 0 22px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius:28px;
  padding:24px;
  box-shadow:0 18px 46px rgba(15,23,42,.05);
}

.page-title h1{
  font-size:clamp(34px,3.6vw,52px);
  margin:10px 0 8px;
}

.muted{
  color:var(--muted);
}

.metric-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin:22px 0;
}

.metric{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:0 18px 50px rgba(15,23,42,.06);
}

.metric span{
  display:block;
  color:#64748b;
  font-size:13px;
  font-weight:850;
}

.metric strong{
  display:block;
  font-size:26px;
  margin-top:8px;
  letter-spacing:-.05em;
}

.metric small{
  display:block;
  margin-top:6px;
  color:#64748b;
  font-weight:800;
}

.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:24px;
  margin:22px 0;
  box-shadow:0 22px 70px rgba(15,23,42,.08);
  overflow:hidden;
}

.panel-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.panel-head.compact{
  margin-bottom:12px;
}

.panel-head h2{
  font-size:28px;
  margin:7px 0 6px;
  letter-spacing:-.05em;
}

.field-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.media-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:14px 0;
}

.media-card{
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
}

.media-card img{
  width:100%;
  max-height:190px;
  object-fit:contain;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
  padding:8px;
}

.file-pick{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:#fff;
  font-weight:950;
  cursor:pointer;
  margin-top:12px;
  box-shadow:0 14px 30px rgba(37,99,235,.20);
}

.file-pick input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}

.file-selected-note{
  display:block;
  margin-top:8px;
  font-weight:850;
}

.check-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:14px 0;
}

.check-row label,
.check-card{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  font-weight:850;
}

.check-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:10px;
  margin:8px 0 16px;
}

.check-grid label{
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#f8fbff;
  padding:12px;
  font-weight:850;
}

.week-grid{
  display:grid;
  gap:10px;
  margin:14px 0;
}

.week-row{
  display:grid;
  grid-template-columns:minmax(160px,1fr) 140px 140px;
  gap:12px;
  align-items:center;
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px;
}

.week-active{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
}

.week-time-label{
  display:block;
  color:#64748b;
  font-size:12px;
  font-weight:900;
  margin-bottom:4px;
}

.category-manager{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
  align-items:end;
}

.pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.pill-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#f8fbff;
  padding:7px 10px;
  font-weight:900;
}

.pill-item a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#fee2e2;
  color:#991b1b;
  font-size:12px;
}

.textarea-small{
  min-height:86px;
}

.service-upload{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}

.service-upload h3{
  grid-column:1/-1;
}

.service-upload img{
  width:100%;
  height:260px;
  object-fit:contain;
  object-position:center center;
  background:#fff;
  border-radius:18px;
}

.service-upload .file-selected-note{
  display:block;
  margin:8px 0 10px;
  max-width:100%;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.service-upload .check-card{
  margin-top:8px;
}

.service-preview-box{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:260px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#f8fbff);
  overflow:hidden;
  padding:8px;
}

.service-preview-box img{
  display:block;
  width:100%;
  height:260px;
  max-height:260px;
  object-fit:contain;
  object-position:center center;
  border:0;
  background:#fff;
  padding:0;
  border-radius:14px;
}

.service-preview-box .preview-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:150px;
  padding:16px;
  border:1px dashed var(--line);
  border-radius:14px;
  color:#64748b;
  font-weight:850;
  text-align:center;
  background:#f8fbff;
}

.is-hidden{
  display:none!important;
}

/* =========================================================
   TABELAS E AÇÕES
   ========================================================= */

.table-wrap{
  width:100%;
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
}

table{
  width:100%;
  min-width:760px;
  border-collapse:collapse;
  table-layout:auto;
}

th,
td{
  text-align:left;
  border-bottom:1px solid var(--line);
  padding:12px 14px;
  vertical-align:middle;
}

th{
  font-size:11px;
  color:#667085;
  letter-spacing:.10em;
  text-transform:uppercase;
  background:#f8fbff;
}

tr:last-child td{
  border-bottom:0;
}

td.action-links{
  display:table-cell;
  vertical-align:middle;
  white-space:nowrap;
}

.action-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

td.action-links a,
.action-links a,
.op-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:6px 10px;
  border-radius:999px;
  background:#eef4ff;
  color:#1d4ed8;
  font-weight:900;
  font-size:12px;
  line-height:1;
  text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease;
}

td.action-links a{
  margin:3px 6px 3px 0;
}

td.action-links a:last-child{
  margin-right:0;
}

.action-links a:hover,
.op-actions a:hover{
  transform:translateY(-1px);
}

.action-links a.danger,
.op-actions a.danger{
  background:#fee2e2;
  color:#991b1b;
}

.actions-cell{
  display:table-cell!important;
  width:170px;
  min-width:170px;
  white-space:nowrap!important;
  text-align:right!important;
  vertical-align:middle!important;
}

.action-buttons{
  display:inline-flex;
  gap:8px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:nowrap;
}

.action-buttons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:9px 12px;
  font-weight:900;
  font-size:13px;
  background:#eef4ff;
  color:#0b47d9;
  text-decoration:none;
  line-height:1;
}

.action-buttons a.danger{
  background:#ffe7e7;
  color:#b91c1c;
}

/* =========================================================
   OPERAÇÕES, FILA E ACOMPANHAMENTO
   ========================================================= */

.operation-filter{
  display:grid;
  grid-template-columns:180px minmax(180px,260px) auto auto;
  gap:12px;
  align-items:end;
}

.operation-list{
  display:grid;
  gap:14px;
}

.operation-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:start;
  border:1px solid var(--line);
  background:#f8fbff;
  border-radius:22px;
  padding:16px;
  box-shadow:0 18px 50px rgba(15,23,42,.06);
}

.op-main{
  display:flex;
  gap:14px;
  align-items:flex-start;
  min-width:0;
}

.queue-badge{
  min-width:78px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:#fff;
  padding:12px;
  text-align:center;
  box-shadow:0 12px 30px rgba(37,99,235,.18);
}

.queue-badge span{
  display:block;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  opacity:.85;
}

.queue-badge strong{
  display:block;
  font-size:26px;
  line-height:1;
  margin-top:4px;
}

.operation-card h3{
  margin:0 0 4px;
  font-size:20px;
  letter-spacing:-.03em;
}

.operation-card p{
  margin:2px 0;
  color:#334155;
}

.track-link{
  display:inline-flex;
  margin-top:6px;
  color:var(--accent);
  font-size:12px;
  font-weight:900;
}

.op-status{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-end;
}

.payment-chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-size:12px;
  font-weight:900;
  color:#334155;
}

.op-actions{
  grid-column:1/-1;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  border-top:1px solid var(--line);
  padding-top:12px;
}

.op-actions.compact{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.track-page-pro{
  padding-top:48px;
  padding-bottom:70px;
}

.track-hero{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:34px;
  box-shadow:var(--shadow);
  max-width:920px;
  margin:0 auto 24px;
}

.track-hero h1{
  font-size:clamp(36px,4vw,58px);
  margin:14px 0 10px;
}

.track-hero p{
  color:#52627a;
  max-width:760px;
  font-size:17px;
}

.track-search{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  margin-top:20px;
}

.track-result{
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}

.appointment-status-box.pro{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin:12px 0 22px;
}

.appointment-status-box.pro > div{
  border:1px solid var(--line);
  border-radius:18px;
  background:#f8fbff;
  padding:14px;
}

.appointment-status-box.pro span{
  display:block;
  color:#64748b;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.appointment-status-box.pro strong{
  display:block;
  margin-top:6px;
  font-size:17px;
}

.status-timeline{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:8px;
  margin:18px 0 20px;
}

.timeline-step{
  position:relative;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:12px;
  min-height:74px;
}

.timeline-step span{
  display:block;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#cbd5e1;
  margin-bottom:9px;
}

.timeline-step strong{
  font-size:12px;
  color:#475569;
}

.timeline-step.done{
  background:#effff4;
  border-color:#bbf7d0;
}

.timeline-step.done span{
  background:#16a34a;
}

.timeline-step.current{
  background:#eef4ff;
  border-color:#bfdbfe;
  box-shadow:0 12px 30px rgba(37,99,235,.12);
}

.timeline-step.current span{
  background:var(--accent);
}

.track-details.pro{
  border-top:1px solid var(--line);
  padding-top:16px;
}

.track-details.pro p{
  margin:7px 0;
}

/* =========================================================
   AGENDA E VAGAS
   ========================================================= */

.pro-filter{
  display:flex;
  gap:12px;
  align-items:flex-end;
  flex-wrap:wrap;
  margin:0 0 18px;
}

.pro-filter > div{
  min-width:210px;
}

.pro-filter input,
.pro-filter select{
  width:100%;
}

.agenda-timeline{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.agenda-item{
  display:grid;
  grid-template-columns:92px minmax(220px,1fr) 160px minmax(220px,auto);
  gap:14px;
  align-items:center;
  border:1px solid #dbe5f2;
  border-radius:22px;
  padding:14px;
  background:#fff;
  box-shadow:0 12px 30px rgba(15,23,42,.04);
}

.agenda-time{
  background:#f3f7ff;
  border:1px solid #dbe5f2;
  border-radius:18px;
  padding:12px;
  text-align:center;
}

.agenda-time strong{
  display:block;
  font-size:22px;
}

.agenda-time span{
  display:inline-flex;
  margin-top:6px;
  padding:4px 9px;
  border-radius:999px;
  background:#e9f0ff;
  font-weight:900;
  color:var(--accent);
}

.agenda-content h3{
  margin:0 0 4px;
}

.agenda-content p{
  margin:4px 0;
}

.agenda-state{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
}

.queue-board{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:14px;
}

.queue-card{
  display:grid;
  grid-template-columns:76px 1fr;
  gap:14px;
  border:1px solid #dbe5f2;
  border-radius:22px;
  background:#fff;
  padding:16px;
  position:relative;
  box-shadow:0 18px 50px rgba(15,23,42,.06);
}

.queue-number{
  width:70px;
  height:70px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:950;
  box-shadow:0 18px 36px rgba(37,99,235,.18);
}

.queue-card .op-actions{
  grid-column:1/-1;
  justify-content:flex-start;
}

.month-calendar{
  display:grid;
  grid-template-columns:repeat(7,minmax(90px,1fr));
  gap:10px;
}

.month-day{
  min-height:92px;
  border:1px solid #dbe5f2;
  border-radius:18px;
  background:#fff;
  padding:12px;
  text-decoration:none;
  color:#0f172a;
  display:flex;
  flex-direction:column;
  gap:6px;
  box-shadow:0 8px 22px rgba(15,23,42,.03);
}

.month-day strong{
  font-size:20px;
}

.month-day span{
  color:#64748b;
  font-weight:800;
}

.month-day small{
  font-weight:900;
}

.month-day.has-movement{
  border-color:rgba(37,99,235,.35);
  background:linear-gradient(180deg,#fff,#f4f8ff);
}

.quantity-field input{
  font-weight:900;
}

.slot-builder{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.slot-builder.compact{
  margin-top:0;
}

.slots-table td small{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-top:3px;
  font-weight:600;
}

.pro-table.slots-table{
  min-width:920px;
  border:0;
  border-radius:0;
}

.pro-table.slots-table th,
.pro-table.slots-table td{
  vertical-align:middle;
  white-space:nowrap;
}

.pro-table.slots-table td:first-child{
  white-space:normal;
  min-width:130px;
}

/* =========================================================
   PIX
   ========================================================= */

.pix-manual-card{
  display:grid;
  grid-template-columns:1fr 170px;
  gap:16px;
  align-items:start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  margin-bottom:14px;
}

.pix-qr{
  width:160px;
  height:160px;
  object-fit:contain;
  border:1px solid #dbe5f2;
  border-radius:18px;
  background:white;
  padding:8px;
  justify-self:end;
}

.pix-copy{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:12px;
  line-height:1.45;
  min-height:96px;
  word-break:break-all;
}

.pix-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.pix-box h3{
  margin:0 0 10px;
}

.pix-box p{
  margin:8px 0;
  color:#334155;
}

.pix-box strong{
  color:#0f172a;
}

/* =========================================================
   LOGIN
   ========================================================= */

.login-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
  background:linear-gradient(135deg,#eef4ff,#fff);
}

.login-card{
  width:min(520px,100%);
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}

.login-card h1{
  font-size:44px;
  margin:10px 0 14px;
}

.login-card .btn{
  margin-top:18px;
  min-width:150px;
}

.auth{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:24px;
}

.auth .panel{
  width:min(560px,100%);
}

.auth h1{
  font-size:44px;
  margin:12px 0 12px;
}

.auth .btn{
  min-width:160px;
}

.auth code{
  background:#eef4ff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:2px 6px;
}

.auth-body{
  min-height:100vh;
  background:
    radial-gradient(circle at 16% 18%,rgba(37,99,235,.18),transparent 32%),
    radial-gradient(circle at 88% 10%,rgba(14,165,233,.12),transparent 28%),
    linear-gradient(135deg,#eef4ff 0%,#f8fbff 46%,#ffffff 100%);
}

.auth-body-pro{
  min-height:100vh;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(37,99,235,.16), transparent 32%),
    radial-gradient(circle at 92% 14%, rgba(14,165,233,.14), transparent 28%),
    linear-gradient(135deg,#f3f7ff 0%,#eef4ff 42%,#ffffff 100%);
}

.auth-pro-shell{
  width:min(1180px,calc(100% - 44px));
  min-height:100vh;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .78fr;
  gap:34px;
  align-items:center;
  padding:42px 0;
}

.auth-pro-brand{
  min-height:610px;
  border-radius:38px;
  padding:46px;
  position:relative;
  overflow:hidden;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:linear-gradient(145deg,#07111f 0%,#10213d 48%,#1d4ed8 100%);
  box-shadow:0 36px 100px rgba(15,23,42,.20);
}

.auth-pro-brand::before{
  content:"";
  position:absolute;
  inset:22px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
}

.auth-pro-brand::after{
  content:"";
  position:absolute;
  width:380px;
  height:380px;
  right:-96px;
  top:-92px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
}

.auth-pro-logo{
  position:relative;
  z-index:1;
  width:72px;
  height:72px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:auto;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-weight:950;
  letter-spacing:-.06em;
  font-size:24px;
}

.auth-pro-kicker{
  position:relative;
  z-index:1;
  margin:0 0 14px;
  color:#bfdbfe;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}

.auth-pro-brand h1{
  position:relative;
  z-index:1;
  max-width:760px;
  margin:0 0 16px;
  font-size:clamp(42px,4.4vw,68px);
  line-height:.96;
  letter-spacing:-.07em;
}

.auth-pro-text{
  position:relative;
  z-index:1;
  max-width:680px;
  margin:0 0 28px;
  color:rgba(255,255,255,.76);
  font-size:17px;
  line-height:1.72;
}

.auth-pro-stats{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.auth-pro-stats div{
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}

.auth-pro-stats strong{
  display:block;
  font-size:15px;
}

.auth-pro-stats span{
  display:block;
  margin-top:5px;
  color:rgba(255,255,255,.70);
  font-size:12px;
  font-weight:750;
}

.auth-pro-panel{
  display:flex;
  align-items:center;
  justify-content:center;
}

.auth-pro-card{
  width:100%;
  max-width:460px;
  border-radius:32px;
  padding:38px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(211,222,238,.95);
  box-shadow:0 30px 90px rgba(15,23,42,.14);
  backdrop-filter:blur(18px);
}

.auth-pro-badge{
  display:inline-flex;
  min-height:32px;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#eef4ff;
  color:#1d4ed8;
  border:1px solid #dbe7ff;
  font-size:12px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.auth-pro-card h2{
  margin:18px 0 10px;
  color:#09172f;
  font-size:38px;
  line-height:1;
  letter-spacing:-.055em;
}

.auth-pro-card p{
  margin:0 0 24px;
  color:#64748b;
  line-height:1.65;
}

.auth-pro-card label{
  display:block;
  margin-bottom:9px;
  color:#0f172a;
  font-weight:950;
}

.auth-pro-card input{
  width:100%;
  min-height:56px;
  border-radius:16px;
  border:1px solid #d4e0f0;
  background:#fbfdff;
  padding:0 16px;
  font-size:16px;
  outline:none;
  transition:border-color .18s,box-shadow .18s,background .18s;
}

.auth-pro-card input:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.13);
  background:#fff;
}

.auth-pro-button{
  min-height:56px;
  margin-top:14px;
  font-size:15px;
  border-radius:16px;
  box-shadow:0 18px 38px rgba(37,99,235,.25);
}

.auth-pro-security{
  display:grid;
  gap:5px;
  margin-top:20px;
  padding:16px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid #e5eefb;
  color:#64748b;
  font-size:12.5px;
  line-height:1.55;
}

.auth-pro-security strong{
  color:#0f172a;
  font-size:13px;
}

.auth-pro-security code{
  font-weight:900;
  color:#1e3a8a;
  background:#eef4ff;
  border-radius:6px;
  padding:2px 5px;
}

/* =========================================================
   ALERTAS ADMIN E COMPROVANTE
   ========================================================= */

.admin-alarm-toggle{
  border:1px solid rgba(37,99,235,.22);
  background:#fff;
  color:#0f172a;
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  box-shadow:0 8px 24px rgba(15,23,42,.08);
  cursor:pointer;
}

.admin-alarm-toggle[aria-pressed="true"]{
  background:#ecfdf5;
  border-color:#86efac;
  color:#166534;
}

.admin-live-toast{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  width:min(380px,calc(100vw - 32px));
  background:#0f172a;
  color:#fff;
  border-radius:22px;
  padding:18px 20px;
  box-shadow:0 24px 70px rgba(15,23,42,.35);
  opacity:0;
  transform:translateY(16px);
  pointer-events:none;
  transition:.25s ease;
}

.admin-live-toast.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.admin-live-toast strong{
  display:block;
  font-size:16px;
  margin-bottom:6px;
}

.admin-live-toast p{
  margin:0;
  color:#dbeafe;
  line-height:1.45;
}

.admin-live-toast button{
  margin-top:12px;
  border:0;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  background:#fff;
  color:#0f172a;
  cursor:pointer;
}

.link-button{
  border:0;
  background:#eef2ff;
  color:#1e40af;
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
  cursor:pointer;
  font:inherit;
}

.receipt-link{
  background:#ecfdf5!important;
  color:#166534!important;
  border:1px solid #bbf7d0!important;
}

.copy-receipt{
  white-space:nowrap;
}

.receipt-help{
  background:#f8fafc;
  border:1px dashed #cbd5e1;
  border-radius:18px;
  padding:14px;
  margin-top:12px;
}

.receipt-help code{
  background:#e0f2fe;
  color:#075985;
  border-radius:8px;
  padding:2px 6px;
}

.admin-live-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  background:#ecfdf5;
  color:#047857;
  border:1px solid #bbf7d0;
  font-size:12px;
  font-weight:950;
  white-space:nowrap;
}

.admin-live-badge::before{
  content:'●';
  font-size:10px;
  margin-right:8px;
  color:#22c55e;
}

/* =========================================================
   GALERIA ADMIN
   ========================================================= */

.gallery-admin{
  margin:16px 0;
  background:#fff;
}

.gallery-current{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
  margin:12px 0;
}

.gallery-current figure{
  margin:0;
  border:1px solid var(--line);
  border-radius:18px;
  background:#f8fbff;
  padding:10px;
}

.gallery-current img{
  width:100%;
  height:220px;
  object-fit:contain;
  object-position:center center;
  border-radius:14px;
  background:#fff;
}

.gallery-current figcaption{
  font-size:12px;
  font-weight:900;
  color:var(--muted);
  margin-top:6px;
}

.danger-lite{
  background:#fff7f7!important;
  color:#991b1b!important;
  border-color:#fecaca!important;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media(max-width:1100px){
  .wrap{
    padding-left:24px;
    padding-right:24px;
  }

  .hero{
    gap:30px;
  }

  .hero h1{
    font-size:clamp(42px,5vw,62px);
  }

  .hero-banner,
  .hero-carousel{
    max-width:520px;
    height:360px;
    min-height:360px;
  }
}

@media(max-width:980px){
  .wrap{
    padding-left:20px;
    padding-right:20px;
  }

  .topbar,
  .admin-top{
    position:relative;
    align-items:flex-start;
    flex-direction:column;
    padding-left:20px;
    padding-right:20px;
  }

  .top-actions{
    justify-content:flex-start;
  }

  .hero,
  .appointment-card,
  .admin-layout{
    grid-template-columns:1fr;
  }

  .hero{
    gap:30px;
    padding-top:36px;
    padding-bottom:44px;
  }

  .hero h1{
    max-width:100%;
    font-size:clamp(38px,8vw,54px);
  }

  .hero p{
    max-width:100%;
    font-size:17px;
  }

  .hero-banner,
  .hero-carousel{
    max-width:100%;
    height:330px;
    min-height:330px;
  }

  .hero-actions,
  .store-info{
    justify-content:flex-start;
  }

  .service-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .metric-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .two,
  .field-grid-3,
  .media-grid,
  .service-upload{
    grid-template-columns:1fr;
  }

  .week-row{
    grid-template-columns:1fr 1fr;
  }

  .week-active{
    grid-column:1/-1;
  }

  .admin-nav{
    position:static;
  }

  .operation-filter{
    grid-template-columns:1fr;
  }

  .operation-card{
    grid-template-columns:1fr;
  }

  .op-status{
    align-items:flex-start;
    flex-direction:row;
    flex-wrap:wrap;
  }

  .appointment-status-box.pro,
  .status-timeline{
    grid-template-columns:1fr 1fr;
  }

  .track-search{
    grid-template-columns:1fr;
  }

  .agenda-item{
    grid-template-columns:1fr;
  }

  .agenda-state{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .op-actions.compact{
    justify-content:flex-start;
  }

  .month-calendar{
    grid-template-columns:repeat(2,1fr);
  }

  .queue-card{
    grid-template-columns:1fr;
  }

  .queue-number{
    width:100%;
    height:56px;
  }

  .auth-pro-shell{
    grid-template-columns:1fr;
    padding:26px 0;
  }

  .auth-pro-brand{
    min-height:auto;
    padding:34px;
  }

  .auth-pro-logo{
    margin-bottom:60px;
  }

  .auth-pro-card{
    max-width:none;
  }

  .auth-pro-stats{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:760px){
  td.action-links{
    white-space:normal;
  }

  .table-wrap table{
    min-width:720px;
  }

  .actions-cell{
    min-width:155px;
    width:155px;
  }

  .action-buttons{
    gap:6px;
  }

  .pro-table.slots-table{
    min-width:820px;
  }

  .slot-builder .field-grid-3{
    grid-template-columns:1fr;
  }

  .action-buttons a{
    padding:8px 10px;
  }

  .pix-manual-card{
    grid-template-columns:1fr;
  }

  .pix-qr{
    justify-self:start;
    width:190px;
    height:190px;
    max-width:240px;
  }

  .pix-actions .btn{
    width:100%;
  }

  .admin-live-toast{
    right:12px;
    bottom:12px;
  }

  .admin-alarm-toggle{
    width:100%;
    justify-content:center;
  }

  .top-actions .admin-alarm-toggle{
    order:-1;
  }
}

@media(max-width:640px){
  .wrap{
    padding-left:16px;
    padding-right:16px;
  }

  .topbar,
  .admin-top{
    padding-left:16px;
    padding-right:16px;
  }

  .hero{
    padding-top:28px;
    padding-bottom:36px;
    gap:24px;
  }

  .hero h1{
    font-size:36px;
    line-height:1.04;
  }

  .hero p{
    font-size:16px;
    line-height:1.55;
  }

  .hero-banner,
  .hero-carousel{
    height:260px;
    min-height:260px;
    border-radius:22px;
  }

  .service-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .service-card .service-img{
    height:220px;
  }

  .hero-actions .btn,
  .store-info span,
  .btn{
    width:100%;
    justify-content:center;
  }

  .metric-grid{
    grid-template-columns:1fr;
  }

  .week-row{
    grid-template-columns:1fr;
  }

  .panel,
  .appointment-card{
    padding:18px;
    border-radius:22px;
  }

  .admin-shell{
    padding:18px 14px 60px;
  }

  .panel-head{
    flex-direction:column;
  }

  .category-manager{
    grid-template-columns:1fr;
  }

  .check-row{
    flex-direction:column;
  }

  .check-row label{
    width:100%;
  }

  .appointment-status-box.pro,
  .status-timeline{
    grid-template-columns:1fr;
  }

  .op-main{
    flex-direction:column;
  }

  .queue-badge{
    width:100%;
    text-align:left;
  }

  .track-hero{
    padding:22px;
    border-radius:24px;
  }

  .gallery-current{
    grid-template-columns:1fr;
  }

  .gallery-current img{
    height:200px;
  }

  .auth-pro-shell{
    width:min(100% - 24px,1180px);
  }

  .auth-pro-brand,
  .auth-pro-card{
    border-radius:26px;
    padding:26px;
  }

  .auth-pro-brand h1{
    font-size:36px;
  }

  .auth-pro-card h2{
    font-size:32px;
  }

  .auth-pro-stats{
    grid-template-columns:1fr;
  }

  .page-title{
    padding:18px;
  }
}
/* ===== AJUSTE FINAL REAL - HOME MAIS LARGA E PROFISSIONAL ===== */

.wrap {
  max-width: 1500px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}

/* Hero ocupando melhor a tela */
.hero {
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 70px !important;
  align-items: center !important;
  padding-top: 54px !important;
  padding-bottom: 70px !important;
}

/* Texto */
.hero h1 {
  max-width: 690px !important;
  font-size: clamp(52px, 4.8vw, 78px) !important;
  line-height: 0.96 !important;
}

.hero p {
  max-width: 720px !important;
  font-size: 19px !important;
  line-height: 1.65 !important;
}

/* Área da imagem */
.hero > div:last-child {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Banner/carrossel maior */
.hero-carousel,
.hero-banner {
  width: 100% !important;
  max-width: 720px !important;
  height: 460px !important;
  min-height: 460px !important;
  border-radius: 34px !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

/* Imagem inteira, sem cortar */
.hero-carousel .hero-slide,
.hero-banner {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* Serviços mais bonitos */
.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)) !important;
  gap: 28px !important;
}

.service-card .service-img {
  height: 260px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
}

/* Notebook/tela média */
@media(max-width: 1200px) {
  .wrap {
    max-width: 1180px !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  .hero {
    gap: 42px !important;
  }

  .hero-carousel,
  .hero-banner {
    max-width: 600px !important;
    height: 390px !important;
    min-height: 390px !important;
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 64px) !important;
  }
}

/* Tablet e celular */
@media(max-width: 980px) {
  .wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-top: 34px !important;
    padding-bottom: 44px !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: clamp(38px, 8vw, 54px) !important;
  }

  .hero p {
    max-width: 100% !important;
    font-size: 17px !important;
  }

  .hero-carousel,
  .hero-banner {
    max-width: 100% !important;
    height: 330px !important;
    min-height: 330px !important;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Celular pequeno */
@media(max-width: 640px) {
  .wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero {
    padding-top: 28px !important;
    padding-bottom: 36px !important;
  }

  .hero h1 {
    font-size: 36px !important;
    line-height: 1.04 !important;
  }

  .hero p {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero-carousel,
  .hero-banner {
    height: 260px !important;
    min-height: 260px !important;
    border-radius: 22px !important;
  }

  .service-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card .service-img {
    height: 220px !important;
  }

  .store-info span,
  .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}
