*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-50: #eff6ff;
  --green: #22c55e;
  --green-dark: #16a34a;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -.02em;
}
.logo-icon {
	width: 100px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: none;     /* remove o fundo azul */
  border-radius: 0;     /* remove o formato de ícone */
  /*width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;*/
  .logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
}
.logo-icon svg { width: 20px; height: 20px; color: white; }
.logo span { color: var(--blue); }

/* nav dropdown */
.nav-dropdown { position: relative; }
.nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--slate-800);
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.nav-btn:hover { background: var(--blue-50); color: var(--blue); }
.nav-btn svg { width: 16px; height: 16px; transition: transform .2s; flex-shrink: 0; }
.nav-btn.open svg { transform: rotate(180deg); }
.nav-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 280px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  padding: 6px;
  z-index: 200;
}
.nav-menu.open { display: block; animation: fadeDown .15s ease; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: background .12s, color .12s;
}
.nav-menu a:hover { background: var(--slate-50); color: var(--slate-900); }
.nav-menu a.active { background: var(--blue-50); color: var(--blue); font-weight: 700; }
.nav-menu a .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ── MAIN ── */
main { padding-top: 60px; }

/* ── HERO SECTION ── */
.hero {
  padding: 40px 0 48px;
}
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-content { display: flex; flex-direction: column; gap: 20px; }
.hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--slate-900);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--slate-700);
  margin-top: 6px;
}
.hero-desc { font-size: .95rem; color: var(--slate-500); line-height: 1.7; max-width: 480px; }

/* feature badges */
.feature-list { display: flex; flex-wrap: wrap; gap: 12px 16px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-800);
}
.feature-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 16px; height: 16px; }

/* hotel selector */
.selector-box {
  background: var(--slate-50);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 18px 20px;
}
.selector-label { font-size: .875rem; font-weight: 700; color: var(--slate-800); margin-bottom: 10px; display: block; }
.select-wrap { position: relative; }
.hotel-select {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 16px;
  border: 2px solid var(--slate-200);
  border-radius: 12px;
  background: white;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-900);
  appearance: none;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.hotel-select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,.15); }
.select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--slate-500);
}
.select-arrow svg { width: 18px; height: 18px; }

/* ── SLIDER ── */
.slider-container { display: flex; flex-direction: column; gap: 0; }
.slider-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.18); aspect-ratio: 16/10; }
.slides { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
}
.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  color: white;
}
.slide-content h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; line-height: 1.3; }
.slide-content p { font-size: .8rem; opacity: .9; margin-bottom: 12px; line-height: 1.5; }

/* WhatsApp button inside slide */
.slide-wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #22c55e;
  color: white;
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(34,197,94,.4);
  transition: background .15s, transform .1s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.slide-wpp-btn:hover { background: #16a34a; transform: translateY(-1px); }
.slide-wpp-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.slider-dots button {
  height: 6px;
  border-radius: 3px;
  background: var(--slate-300);
  transition: width .3s, background .3s;
  width: 6px;
}
.slider-dots button.active { width: 20px; background: var(--blue); }

/* slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: background .15s, transform .1s;
  color: var(--slate-800);
}
.slider-arrow:hover { background: white; }
.slider-arrow svg { width: 16px; height: 16px; }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

/* ── SERVICES SECTION ── */
.section-services {
  background: var(--slate-50);
  padding: 56px 0;
}
.section-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -.025em;
  margin-bottom: 6px;
}
.section-sub { font-size: .9rem; color: var(--slate-500); }
.section-header { text-align: center; margin-bottom: 36px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 14px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; }
.service-label { font-size: .8rem; font-weight: 600; color: var(--slate-800); line-height: 1.3; }

/* ── CTA BAR ── */
.cta-bar {
  background: var(--blue);
  padding: 44px 0;
}
.cta-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
@media (min-width: 640px) {
  .cta-bar-inner { flex-direction: row; text-align: left; gap: 32px; }
}
.cta-bar h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 900;
  color: white;
  max-width: 440px;
  line-height: 1.3;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  white-space: nowrap;
  transition: background .15s, transform .1s;
  flex-shrink: 0;
}
.btn-white:hover { background: var(--blue-50); transform: translateY(-2px); }

/* ── HOSPEDAGEM CARDS ── */
.section-rooms { padding: 56px 0; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.room-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.room-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.12); transform: translateY(-5px); }
.room-img { height: 200px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.room-title { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; line-height: 1.3; }
.room-desc { font-size: .825rem; color: var(--slate-500); margin-bottom: 16px; line-height: 1.6; }
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 18px;
  flex: 1;
}
.room-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--slate-700);
}
.room-feature svg { width: 13px; height: 13px; color: var(--blue); flex-shrink: 0; }
.btn-green {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: .875rem;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
}
.btn-green:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(34,197,94,.3); }

/* ── GALERIA SECTION ── */
.section-galeria { background: var(--slate-50); padding: 56px 0; }
.galeria-link {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  height: clamp(200px, 44vw, 420px);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.galeria-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.galeria-link:hover img { transform: scale(1.04); }
.galeria-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 24px;
  text-align: center;
  transition: background .3s;
}
.galeria-link:hover .galeria-overlay { background: rgba(0,0,0,.52); }
.galeria-overlay h3 { font-size: clamp(1.1rem, 3vw, 2rem); font-weight: 900; margin-bottom: 18px; }
.galeria-badge {
  display: inline-flex;
  align-items: center;
  border: 2px solid white;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: .9rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.galeria-link:hover .galeria-badge { background: white; color: var(--slate-900); }

/* ── CONTATO SECTION ── */
.section-contato { padding: 56px 0; }
.contato-grid {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contato-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .contato-grid { grid-template-columns: 1fr 1fr 280px; }
}
.contato-items { display: grid; gap: 14px; grid-column: span 1; }
@media (min-width: 768px) { .contato-items { grid-template-columns: 1fr 1fr; grid-column: span 2; } }
@media (min-width: 1024px) { .contato-items { grid-column: span 2; grid-template-columns: 1fr 1fr; } }
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
}
.contato-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contato-icon svg { width: 20px; height: 20px; }
.ci-blue { background: #dbeafe; color: var(--blue); }
.ci-green { background: #dcfce7; color: var(--green-dark); }
.ci-orange { background: #ffedd5; color: #ea580c; }
.ci-purple { background: #f3e8ff; color: #9333ea; }
.contato-label { font-size: .8rem; font-weight: 700; color: var(--slate-900); margin-bottom: 2px; }
.contato-value { font-size: .8rem; color: var(--slate-600); line-height: 1.5; }

/* WhatsApp card */
.wpp-card {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: var(--radius-xl);
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(22,163,74,.25);
  position: relative;
  overflow: hidden;
}
.wpp-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.wpp-card h3 { font-size: 1.1rem; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.wpp-card h3 svg { width: 26px; height: 26px; }
.wpp-card p { font-size: .85rem; color: rgba(255,255,255,.88); line-height: 1.6; }
.btn-wpp-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #16a34a;
  font-weight: 700;
  font-size: .875rem;
  padding: 13px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transition: background .15s, transform .1s;
}
.btn-wpp-card:hover { background: #f0fdf4; transform: translateY(-2px); }

/* ── HERO HOTEL PAGE ── */
.hero-hotel .hero-grid { align-items: start; }
.checklist { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-item .check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-item .check-icon svg { width: 11px; height: 11px; stroke-width: 3; }
.check-item span { font-size: .9rem; font-weight: 600; color: var(--slate-800); }
.checklist-box {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-wpp-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(34,197,94,.3);
  flex: 1;
  min-width: 200px;
  transition: background .15s, transform .1s, box-shadow .15s;
}
.btn-wpp-hero:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,.4); }
.btn-wpp-hero svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-outline-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  border: 2px solid var(--green);
  font-weight: 700;
  font-size: .875rem;
  padding: 12px 20px;
  border-radius: 12px;
  transition: background .15s;
  white-space: nowrap;
}
.btn-outline-green:hover { background: #f0fdf4; }

/* ── HOME HERO SELECTOR ── */
.home-hero .hero-grid { align-items: center; }

/* ── FOOTER ── */
.footer {
  background: var(--slate-900);
  color: white;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.footer-brand .brand-name span { color: #60a5fa; }
.footer-brand p { font-size: .825rem; color: #94a3b8; line-height: 1.6; }
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.footer-col nav { display: flex; flex-direction: column; gap: 10px; }
.footer-col nav a { font-size: .825rem; color: #94a3b8; transition: color .15s; }
.footer-col nav a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: #64748b;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-grid .slider-wrap { order: -1; }
  .hero-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero-subtitle { font-size: clamp(1rem, 3.5vw, 1.3rem);

}
}
@media (max-width: 640px) {
  .header-inner { padding: 0 16px; }
  .container { padding: 0 16px; }
  .hero { padding: 24px 0 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-wpp-hero { min-width: 0; }
  .section-services, .section-rooms, .section-galeria, .section-contato, .cta-bar { padding: 40px 0; }
  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}
/* ================================
   COOKIE POPUP MODERNO
================================ */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;

  display: flex;
  justify-content: center;
  animation: cookieIn .35s ease;
}

@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-content {
  width: 100%;
  max-width: 900px;

  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);

  padding: 18px 20px;

  display: flex;
  align-items: center;
  gap: 16px;
}

/* ICON */
.cookie-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;

  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* TEXT */
.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-size: .95rem;
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.cookie-text p {
  font-size: .8rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* ACTIONS */
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-size: .8rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  transition: .15s;
  white-space: nowrap;
}

/* PRIMARY */
.cookie-accept {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 14px rgba(29,78,216,.25);
}

.cookie-accept:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* SECONDARY */
.cookie-decline {
  background: var(--slate-100);
  color: var(--slate-700);
}

.cookie-decline:hover {
  background: var(--slate-200);
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .cookie-content {
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 14px 14px;
    gap: 10px;
  }

  .cookie-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .cookie-text h4 {
    font-size: .9rem;
    margin-bottom: 2px;
  }

  .cookie-text p {
    font-size: .75rem;
    line-height: 1.4;
  }

  .cookie-actions {
    width: 100%;
    display: flex;
    gap: 8px;
  }

  .cookie-btn {
    flex: 1;
    font-size: .75rem;
    padding: 9px 10px;
    border-radius: 8px;
  }

  /* deixa menos “pesado” no mobile */
  .cookie-content {
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
  }
}