:root {
  --verde: #008e77;
  --verde-escuro: #007561;
  --verde-claro: #1bd4c0;
  --bg: #eeeeee;
  --texto: #1d1d1d;
  --container: 1220px;
  --footer-bg: #223c46;
  --card: #f8f8f8;
  --borda: #ddd;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body, 'Open Sans', Arial, sans-serif);
  color: var(--texto);
  background: var(--bg);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* TOPBAR */
.topbar {
  background: #f8f8f8;
  border-bottom: 1px solid #ddd;
}

.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.logo {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--verde);
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.menu a:hover { color: var(--verde); }

.menu-social {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}

.menu-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #3b5998;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 2px;
}

.menu-social a.ig { background: #e1306c; }

/* HERO HOME */
.hero {
  padding: 18px 0 16px;
  min-height: min(520px, calc(100vh - 82px));
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url('../assets/hero.jpg') center/cover no-repeat;
  background-color: #1a1a1a;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.hero-grid:not(:has(.video-box)) {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.video-box {
  border: 6px solid #28d6c6;
  background: #000;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  max-height: 42vh;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cta {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.45);
}

.cta h1 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 8px;
  line-height: 1.08;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.cta h1 .verde {
  color: var(--verde-claro);
  display: block;
}

.cta > p {
  margin: 0 0 14px;
  line-height: 1.45;
  font-size: clamp(15px, 1.7vw, 20px);
}

.hero-form {
  display: grid;
  gap: 10px;
  max-width: 520px;
  position: relative;
}

.hero-form input[type="text"],
.hero-form input[type="email"] {
  height: 52px;
  border: 0;
  border-radius: 4px;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}

.hero-form input:focus {
  box-shadow: 0 0 0 3px rgba(40, 214, 198, .35);
}

.hero-form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  font-size: clamp(16px, 2.2vw, 26px);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease;
  padding: 10px 16px;
}

.btn-hero-submit {
  background: #079c8f;
  color: #fff;
}

.btn-hero-submit:hover {
  background: #068478;
}

.btn-whats {
  background: #25D366;
  color: #fff;
}

.btn-whats:hover {
  background: #1fb85a;
}

.hero-buttons {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 12px;
}

.cta .safe {
  margin-top: 8px;
  font-size: 13px;
  color: #dcdcdc;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.hero-alert {
  padding: 10px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 14px;
  max-width: 520px;
}

.hero-alert-success {
  background: rgba(0, 142, 119, .25);
  border: 1px solid rgba(40, 214, 198, .5);
}

.hero-alert-error {
  background: rgba(192, 57, 43, .25);
  border: 1px solid rgba(255, 100, 100, .5);
}

/* BANNER CATEGORIA / BUSCA */
.page-banner {
  background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)), var(--verde-escuro);
  color: #fff;
  padding: 36px 0;
  text-align: center;
}

.page-banner h1 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
}

.page-banner p {
  margin: 10px 0 0;
  font-size: 16px;
  opacity: .9;
  max-width: 720px;
  margin-inline: auto;
}

/* CONTENT GRID */
.breadcrumb-bar {
  background: #1a1a1a;
  color: #ccc;
  font-size: 12px;
  padding: 8px 0;
}

.breadcrumb-bar a {
  color: #ccc;
  text-decoration: none;
}

.breadcrumb-bar a:hover { color: #fff; }

/* CONTENT GRID */
.content { padding: 28px 0 36px; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, .95fr);
  gap: 20px;
  align-items: start;
}

.content-grid.sidebar-left {
  grid-template-columns: minmax(260px, .95fr) minmax(0, 2.1fr);
}

.content-grid.sidebar-left .posts,
.content-grid.sidebar-left .post-single,
.content-grid.sidebar-left .page-single {
  order: 2;
}

.content-grid.sidebar-left .sidebar {
  order: 1;
}

.youtube-embed {
  position: relative;
  width: 100%;
  margin: 0 0 20px;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
}

.youtube-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-credit {
  font-size: 14px;
  color: #555;
  margin: 16px 0;
  padding: 12px 14px;
  background: #fafafa;
  border-left: 3px solid var(--verde);
}

.youtube-watch-link {
  margin: 0 0 20px;
  font-size: 14px;
}

.youtube-watch-link a {
  color: var(--verde);
  font-weight: 700;
}

/* POST SINGLE */
.post-single {
  background: #fff;
  border: 1px solid var(--borda);
  padding: 24px 28px;
}

.post-single h1 {
  margin: 0 0 10px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #007f72;
  line-height: 1.25;
}

.post-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.post-meta a {
  color: var(--verde);
  text-decoration: none;
  font-weight: 600;
}

.post-meta a:hover { text-decoration: underline; }

/* SHARE BAR */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.share-bar span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #555;
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 2px;
}

.share-btn.fb { background: #3b5998; }
.share-btn.tw { background: #1da1f2; }
.share-btn.gp { background: #db4437; }

/* POST BODY */
.post-featured-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.post-content {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: 'Oswald', sans-serif;
  color: #007f72;
  margin: 28px 0 12px;
  line-height: 1.2;
}

.post-content h2 { font-size: 26px; }
.post-content h3 { font-size: 22px; }

.post-content p { margin: 0 0 16px; }

.post-content ul,
.post-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.post-content li { margin-bottom: 6px; }

.post-content a {
  color: #0066cc;
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  height: auto;
}

/* STATIC PAGES */
body.page-static .content-page {
  padding: 32px 0 48px;
}

.page-single {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.page-header {
  padding: 28px 32px 22px;
  border-bottom: 1px solid #eef1f2;
  background: linear-gradient(180deg, #fafcfb 0%, #fff 100%);
}

.page-header h1 {
  margin: 0;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--verde-escuro, #007561);
  text-transform: uppercase;
  letter-spacing: .02em;
}

.page-subtitle {
  margin: 12px 0 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
  color: #5f6b73;
}

.page-body {
  padding: 24px 32px 32px;
}

.page-body.post-content {
  font-size: 17px;
  line-height: 1.75;
  color: #2f3438;
}

.page-body.post-content > p:first-child {
  font-size: 18px;
  line-height: 1.7;
  color: #3f4a52;
}

.page-body.post-content h2 {
  margin-top: 36px;
  padding-top: 8px;
  border-top: 1px solid #eef1f2;
}

.page-body.post-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--verde);
  font-weight: 700;
  text-decoration: none;
}

.page-back-link:hover {
  text-decoration: underline;
}

.page-single.page-contact .page-body.page-intro {
  padding-bottom: 0;
}

.page-single.page-contact .page-body.page-intro + .contact-panel {
  margin-top: 0;
}

.contact-panel {
  margin: 0 32px 32px;
  padding: 24px 26px 28px;
  border: 1px solid #e6ecea;
  border-radius: 8px;
  background: #f8fbfa;
}

.contact-panel-title {
  margin: 0 0 20px;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #35515a;
  letter-spacing: .03em;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.contact-form label span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #6a757d;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d7dfe2;
  border-radius: 6px;
  font: inherit;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(0, 142, 119, .12);
}

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

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  font-size: 13px !important;
  line-height: 1.5;
  color: #5a656c !important;
}

.contact-consent input {
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-submit {
  justify-self: start;
  border: 0;
  border-radius: 6px;
  background: var(--verde);
  color: #fff;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.contact-submit:hover {
  background: var(--verde-escuro);
}

.contact-alert {
  padding: 12px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.contact-alert-success {
  background: #e8f8f2;
  border: 1px solid #9fd9c4;
  color: #0f6b4f;
}

.contact-alert-error {
  background: #fff0f0;
  border: 1px solid #efb8b8;
  color: #9b2c2c;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .page-header,
  .page-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-panel {
    margin-left: 16px;
    margin-right: 16px;
    padding: 22px 18px 24px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

.post-content blockquote {
  margin: 20px 0;
  padding: 12px 20px;
  border-left: 4px solid var(--verde);
  background: #f9f9f9;
  font-style: italic;
}

/* COMMENTS */
.comments-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #eee;
}

.comments-section h2,
.comments-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: #555;
  margin: 0 0 16px;
}

.comments-placeholder {
  background: #f5f5f5;
  border: 1px dashed #ccc;
  padding: 30px;
  text-align: center;
  color: #888;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

/* SIDEBAR */
.sidebar { display: grid; gap: 14px; }

.widget {
  background: var(--card);
  border: 1px solid var(--borda);
  padding: 14px;
}

.widget h4 {
  margin: 0 0 12px;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.08;
  font-family: 'Oswald', sans-serif;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 8px;
}

.widget h4 span { color: var(--verde); }

.search {
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 8px;
}

.search input {
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  outline: none;
}

.search button {
  border: 0;
  background: var(--verde);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cat-list { display: grid; gap: 6px; }

.cat-list a {
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: var(--verde);
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
}

.cat-list a:hover { background: var(--verde-escuro); }

.popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.popular-list li {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
}

.popular-list a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.popular-list a:hover { color: var(--verde); }

.fb-widget {
  background: #f0f0f0;
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: #555;
}

.fb-widget strong { display: block; margin-bottom: 6px; color: #333; }

/* VEJA TAMBÉM */
.see-also {
  background: #fff;
  border: 1px solid var(--borda);
  padding: 24px 28px;
  margin-top: 20px;
}

.see-also h2,
.see-also h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--verde);
}

.see-also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.see-also-grid a {
  color: #0066cc;
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.4;
}

.see-also-grid a:hover { color: var(--verde); }

/* POST LIST (index) */
.posts { display: grid; gap: 18px; }

.post-card {
  background: #f7f7f7;
  border: 1px solid #ddd;
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 170px;
}

.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card-body { padding: 14px 16px; }

.post-card h2,
.post-card h3 {
  margin: 0 0 8px;
  color: #007f72;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.3;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

.post-card h2 a:hover { color: var(--verde); }

.post-card p {
  margin: 0 0 12px;
  color: #444;
  font-size: 15px;
  line-height: 1.45;
}

.post-card a.read-more {
  text-decoration: none;
  display: inline-block;
  background: #8f8f8f;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 10px;
}

.post-card a.read-more:hover { background: var(--verde); }

.no-posts {
  background: #fff;
  border: 1px solid var(--borda);
  padding: 40px;
  text-align: center;
  color: #666;
}

/* FOOTER */
.footer-main {
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)), var(--footer-bg);
  padding: 16px 0 18px;
}

.footer-topmenu {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-topmenu a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 22px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 28px;
  text-transform: uppercase;
  line-height: 1.05;
  border-bottom: 1px solid rgba(0,201,177,.5);
  padding-bottom: 8px;
  font-family: 'Oswald', sans-serif;
}

.footer-col h4 span { color: #00b49d; }

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-list li {
  font-size: 14px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 8px;
}

.footer-list a {
  color: #fff;
  text-decoration: none;
}

.footer-list a:hover { color: #00b49d; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #e8e8e8;
  color: #00a98f;
  font-weight: 800;
  border-radius: 2px;
  text-decoration: none;
}

.footer-bottom {
  background: #0d2430;
  color: #cfd7dd;
  padding: 18px 0 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-logo {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .3px;
}

.footer-logo span { color: #00b49d; }

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  margin-top: 12px;
  color: #b7c3cb;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .video-box { max-height: none; }
  .content-grid { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
  .post-card img { max-height: 260px; }
  .see-also-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--container)); }
  .logo { font-size: 34px; }
  .footer-columns { grid-template-columns: 1fr; }
}

/* COOKIE BANNER / LGPD */
body.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: #1a2744;
  color: #e8eef2;
  border-top: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .35);
  padding: 14px 0;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  max-width: 760px;
}

.cookie-banner-text a {
  color: #7ec8ff;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  border: 0;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.cookie-btn-config,
.cookie-btn-accept {
  background: #2f80ed;
  color: #fff;
}

.cookie-btn-config:hover,
.cookie-btn-accept:hover {
  background: #2569c7;
}

.cookie-btn-reject {
  background: #4a5568;
  color: #fff;
}

.cookie-btn-reject:hover {
  background: #5a6578;
}

.cookie-btn-save {
  background: var(--verde, #008e77);
  color: #fff;
}

.cookie-btn-save:hover {
  background: var(--verde-escuro, #007561);
}

.cookie-btn-cancel {
  background: #e2e8f0;
  color: #334155;
}

.cookie-btn-cancel:hover {
  background: #cbd5e1;
}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.cookie-modal-panel {
  position: relative;
  width: min(100%, 520px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  padding: 24px 24px 20px;
  color: #1e293b;
}

.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.cookie-modal-close:hover {
  color: #0f172a;
}

.cookie-modal-title {
  margin: 0 0 18px;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f172a;
}

.cookie-modal-form {
  display: grid;
  gap: 14px;
}

.cookie-pref {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  cursor: pointer;
}

.cookie-pref-locked {
  background: #f8fafc;
  cursor: default;
}

.cookie-pref input {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--verde, #008e77);
}

.cookie-pref strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #0f172a;
}

.cookie-pref small {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

@media (max-width: 700px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .cookie-modal-actions .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* AFFILIATE DISCLOSURE */
.affiliate-disclosure {
  margin: 28px 0 0;
  padding: 16px 18px;
  border: 1px solid #d4e8e3;
  border-left: 4px solid var(--verde, #008e77);
  border-radius: 6px;
  background: #f4fbf9;
}

.affiliate-disclosure p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #3a4a52;
}

.affiliate-disclosure strong {
  color: #1f5f54;
}

.affiliate-disclosure a {
  color: var(--verde-escuro, #007561);
  font-weight: 700;
  text-decoration: underline;
}
