/*
 * c.css — Ergovisão Homepage
 * ─────────────────────────────────────────────
 * Escala tipográfica (Montserrat)
 *   --fs-xs   : 11px  → datas, notas, badges
 *   --fs-sm   : 13px  → links footer, body secundário
 *   --fs-base : 15px  → body principal, p
 *   --fs-md   : 17px  → nav, secção labels
 *   --fs-lg   : 22px  → h3 cards, títulos menores
 *   --fs-xl   : 28px  → h2 secções
 *   --fs-2xl  : 38px  → h2 hero global
 *   --fs-3xl  : 52px  → h1 banner
 * ─────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════
   VARIÁVEIS
═══════════════════════════════════════════ */

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
:root {
  /* Cores */
  --title:              #000000;
  --text:               #7D7D7D;
  --title-red:          #D61B0C;
  --color-background:   #F4F4F4;
  --color-background-grey: #C7C7C7;
  --white:              #fff;
  --black:              #000;

  /* Tipografia */
  --font:    'Montserrat', sans-serif;
  --fs-xs:   11px;
  --fs-sm:   13px;
  --fs-base: 15px;
  --fs-md:   17px;
  --fs-lg:   22px;
  --fs-xl:   28px;
  --fs-2xl:  38px;
  --fs-3xl:  52px;

  /* Espaçamentos */
  --section-gap: 100px;
  --radius:      10px;
}

/* ═══════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  color: var(--title);
  -webkit-font-smoothing: antialiased;
}

a, button { cursor: pointer; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }

ul  { font-family: var(--font); }
span { font-family: var(--font); }

/* Formulários */
input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder { color: #666; }

/* ═══════════════════════════════════════════
   TIPOGRAFIA GLOBAL
═══════════════════════════════════════════ */
h1 {
  font-family: var(--font);
  font-size: var(--fs-3xl);
  font-weight: 400;
  margin: 0;
  line-height: 1.15;
}

h2 {
  font-family: var(--font);
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--title);
  margin: 0;
  line-height: 1.2;
}

h3 {
  font-family: var(--font);
  font-size: var(--fs-lg);
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

/* h3 reutilizado como label de footer — override pontual no bloco footer */

p {
  font-family: var(--font);
  font-size: var(--fs-base);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   UTILITÁRIOS
═══════════════════════════════════════════ */
.grey_color   { color: var(--text); }
.grid-container {  width: 100%; max-width: 1600px; padding: 0 40px; margin: 0 auto; box-sizing: border-box;}
.special_container { /*max-width: 1868px;*/ width: 100%; margin: auto; padding: 0 20px;}

.top15 { margin-top: 150px; }
.top5 { margin-top: 50px; }

.bottom5 { margin-bottom: 50px; }

.none { display: none; }

.base_page_reg{min-height: 30vh;}

/* Labels de secção */
.section-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--title-red);
  margin: 0 0 10px;
}

.bottom100 {
  margin-bottom: 100px;
}

.base_page_reg .text{margin-top: 14px;line-height: 1.6;}

/* ═══════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--title-red);
  border: 1px solid var(--title-red);
  border-radius: 4px;
  padding: 10px 28px;
  display: flex;
  text-align: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  cursor:pointer;
}
.btn:hover {
  background: var(--white);
  color: var(--title-red);
}

.btn-white {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--title-red);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 4px;
  padding: 10px 28px;
  transition: background 0.2s, color 0.2s;
  border:1px solid var(--title-red);
  cursor:pointer;
}

.btn-transparent{background-color: unset;}

.btn-white:hover {
  background: var(--title-red);
  color: var(--white);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
header { display: flex; flex-direction: column; }


.logo img {max-width: 218px;  width: 100%; height: auto;}

.navbar {
  background-color: var(--color-background);
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}
.nav_list {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  font-size: var(--fs-sm);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav_list li a {
  color: var(--title);
  transition: color 0.2s;
}
.nav_list li a:hover { color: var(--title-red); }

/* ═══════════════════════════════════════════
   OVERLAY + SIDEBAR
═══════════════════════════════════════════ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: var(--white);
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.sidebar.active { transform: translateX(0); }

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.close-btn {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--title);
}
.sidebar-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-content a {
  color: var(--text);
  font-size: var(--fs-md);
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar-content a:hover { color: var(--title-red); }

/* ═══════════════════════════════════════════
   BANNER / SLIDER
═══════════════════════════════════════════ */
.banner { position: relative; min-height: 900px; }

.banner_slide {
  min-height: 600px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
}
.banner_slide h1 { color: var(--white); }

.text-wrapper {
  max-width: 500px;
  text-align: right;
  position: absolute;
  right: 140px;
  top: 50%;
  transform: translateY(-50%);
}

.text-wrapper h1{font-size: 40px;}

/* ═══════════════════════════════════════════
   CUIDADO COMPLETO — cards
═══════════════════════════════════════════ */
.title_section_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.left_side, .right_side { max-width: 400px; width: 100%; }
.text-section .left_side h2 { font-size: var(--fs-xl); }
.right_side p { color: var(--text); text-align: right; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  max-height: 260px;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card:hover img { transform: scale(1.04); }

.overlay_card {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background-color 0.3s ease;
  z-index: 1;
}
.card:hover .overlay_card { background-color: rgba(198,15,19,0.5); }

.card .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.card_title {
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: auto;
}
.card .content .btn { margin-left: auto; }

/* ═══════════════════════════════════════════
   ACORDOS E PROTOCOLOS
═══════════════════════════════════════════ */
.acordos-section { margin-top:40px; margin-bottom: 100px; }

.acordos-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}
.acordos-text {
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acordos-text h2 { font-size: var(--fs-xl); }
.acordos-text p  { font-size: var(--fs-base); color: var(--text); max-width: 420px; }
.acordos-inner .btn { margin-right: 40px; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   EXCELÊNCIA — Slider
═══════════════════════════════════════════ */


.excelencia-container {
  min-height: 530px;
  padding: 40px 0;
  background: var(--color-background);
  border-radius: 14px;
}
.excelencia-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.excelencia-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.excelencia-header h2 {
  color: var(--title-red);
  font-size: var(--fs-xl);
  font-weight: 300;
  max-width: 280px;
  line-height: 1.15;
}
.excelencia-text p { font-size: var(--fs-base); text-align: right; max-width: 400px; }

/* Slider produto */
.product-slider-wrapper {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.product-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  max-height: 300px;
  margin: 0 10px;
  background: var(--color-background-grey);
}

.product-card .headline{    position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  font-size: large;}

.product-card img { width: 100%; height: 100%; object-fit: cover; }

.slick-list { margin: 0 -10px; }

.slider-nav {
  display: flex;
  gap: 10px;
  position: absolute;
    bottom: 40px;
    right: 40px;
}
.slider-btn {
  width: 50px;
  height: 34px;
  border: 1.5px solid var(--black);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;

  color: var(--title);
}

.slider-btn:hover {
  border-color: var(--title-red);
  color: var(--title-red);
}

.slider-btn.inactive {
  color: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════
   MARCAS REPRESENTADAS
═══════════════════════════════════════════ */
.marcas-section { margin: var(--section-gap) 0; }

.marcas-section .btn{max-width: fit-content;}
.marcas-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}
.marcas-left { max-width: 500px; width: 100%; }
.marcas-left h2 { font-size: var(--fs-xl); margin-bottom: 14px; }
.marcas-left p  { font-size: var(--fs-sm); color: var(--text); line-height: 1.7; }

.marcas-right { max-width: 260px; width: 100%; }
.marcas-partner-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin: 0 0 10px;
}
.marcas-partner-box {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marcas-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px 30px;
  align-items: center;
  margin-bottom: 40px;
}
.marca-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.25s, opacity 0.25s;
}

.marca-logo img{max-width: 95px; width: 100%; height: auto;}
.marca-logo:hover { filter: grayscale(0); opacity: 1; cursor:pointer}

/* ═══════════════════════════════════════════
   FRANCHISING CTA
═══════════════════════════════════════════ */
.franchising-section {
  position: relative;
  margin: 100px 0px 20px 0px;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-left: 60px;
  margin: var(--section-gap) 0;
}
.franchising-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(214,27,12,0.90) 0%,
    rgba(214,27,12,0.65) 55%,
    rgba(214,27,12,0.20) 100%
  );
  z-index: 1;
}
.franchising-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.franchising-content p {
  font-size: var(--fs-base);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 300px;
  margin: 0;
}

p.franchising-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.franchising-content h2 {
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}


.franchising-section .btn-white{    max-width: fit-content;}


/* ═══════════════════════════════════════════
   VISÃO EM DESTAQUE
═══════════════════════════════════════════ */
.noticias-section { position: relative; }

.noticias-header {
  padding: 40px 0 70px 0;
  background: var(--color-background);
  border-radius: var(--radius);
}
.noticias-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.noticias-flex h2 {
  font-size: var(--fs-xl);
  font-weight: 300;
  margin-top: 8px;
}

.noticias-grid-absolute { margin-top: -40px; }

.noticias-grid { margin: 0 -12px; overflow: hidden; }
.noticias-grid .slick-slide { padding: 0 12px; box-sizing: border-box; }

.noticia-box {
  border: 1px solid var(--color-background-grey);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.noticia-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  max-height: 300px;
}
.noticia-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.noticia-tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--title-red);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height:14px;
}
.noticia-title {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--title);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height:56px;
}
.noticia-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}
.noticia-date {
  font-size: var(--fs-xs);
  color: var(--text);
  text-transform: uppercase;
}
.noticia-link {
  padding: 4px 12px 7px;
  font-size: 20px;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   NEWSLETTER STRIP
═══════════════════════════════════════════ */
.newsletter-strip {
  margin: 100px auto 20px auto;
  background-color: var(--color-background-grey);
  padding: 28px 0;
  border-radius: var(--radius);
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.newsletter-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin: 0;
}
.newsletter-follow {
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--white);
  margin: 10px 0 0;
}
.newsletter-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background-color: var(--color-background);
  padding: 40px 40px 0px 40px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 36px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 30px 40px;
}
.footer-col-title {
  /* override do h3 global — aqui é label pequeno */
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text);
  margin: 0 0 12px;
}

/* Listas footer */
.footer-contact-list,
.footer-links-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list img{height: auto;}


.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-contact-list a,
.footer-links-list a {
  font-size: var(--fs-sm);
  color: var(--title);
  transition: color 0.2s;
}
.footer-contact-list a:hover,
.footer-links-list a:hover { color: var(--title-red); }

.info {
  font-size: var(--fs-xs);
  color: var(--text);
  line-height: 1.4;
}

/* Badges livro de reclamações */
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.footer-badges a { display: inline-block; }

/* Barra inferior */
.footer-bottom-bar {
  border-top: 1px solid #e0e0e0;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: var(--fs-xs);
  color: var(--title);
  margin: 0;
  text-transform: uppercase;
}
.footer-social { color: var(--text); }
.footer-social:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════
   COOKIES (mantido — é usado via JS)
═══════════════════════════════════════════ */
.cookie-message-wrapper {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
}
.cookie-inner-wrapper {
  padding: 10px 20px;
  background: rgba(109,110,113,0.85);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-xs);
  gap: 16px;
}
.cookie-inner-wrapper a { color: var(--white); text-decoration: underline; }
.btn_cookie_accept {
  border-radius: 4px;
  background: rgba(255,255,255,0.5);
  border: 0;
  padding: 5px 12px;
  font-size: var(--fs-xs);
  color: var(--black);
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   HELPERS
═══════════════════════════════════════════ */

.relative { position: relative; }
.absolute { position: absolute; }

.no-scroll {
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   FORMULÁRIOS
═══════════════════════════════════════════ */

.form-group {
  margin-bottom: 20px;
}

.schedule_options{display:flex; gap:10px}
.schedule_options label{ font-weight: 500 !important; display: flex;align-items: center; font-size: 13px !important;}

#plk-schedule-form label.error{display:none}

.schedule_options label span{padding-left: 2px;padding-top: 3px;}
.form-double{display:flex;gap:20px;width: 100%;}
.form-double .form-group{width: 100%;}

.form-group textarea {
  min-height: 150px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.form-check label {
  font-weight: 500;
  color: #666666;
}

.form-check label.error {
  color: var(--title-red);
}

.success-message {
  color: green;
  display: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error {
  color: var(--title-red);
}

label.error {
  color: var(--title-red);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

/* ═══════════════════════════════════════════
   MENU / OVERLAY
═══════════════════════════════════════════ */

.show-overlay {
  visibility: visible;
  opacity: 1;
}

.show-menu {
  right: 0;
}

/* submenu */

.sidebar ul ul {
  display: none;
  padding-left: 20px;
}

.sidebar li.open > ul {
  display: block;
}


/* ═══════════════════════════════════════════
   MAPA
═══════════════════════════════════════════ */

.map {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 600px;
}

#map {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════
   LANG DROPDOWN
═══════════════════════════════════════════ */

.lang-dropdown {
  position: relative;
}

.lang-options {
  display: none;
  position: absolute;
  top: 100%;
  left: -5px;
  z-index: 9999;
  min-width: 40px;
  border-radius: 12px;
}

.lang-dropdown:hover .lang-options {
  display: block;
}

#lang-dropdown.active + #lang-options {
  display: block;
}


/* ═══════════════════════════════════════════
   UTILITÁRIOS EXTRA
═══════════════════════════════════════════ */

.none {
  display: none;
}

.display-flex-between {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

/* ═══════════════════════════════════════════
   FORM / VALIDAÇÃO (mantido — usado via JS)
═══════════════════════════════════════════ */
.form-error        { display: block; margin-bottom: 1rem; font-size: var(--fs-xs); font-weight: 700; color: #c60f13; }


.loja-section { margin: var(--section-gap) 0; display:flex; gap:20px;}

.loja-section .noticias-section h2{ font-size: var(--fs-xl);margin-bottom: 10px;}
.loja-section .noticias-section h2 strong {font-weight: 500;}
.loja-section .noticias-header{display:flex;flex-direction: column;padding: 20px;gap: 20px;}
.loja-section .franchising-section{margin-top:20px; margin-bottom:0px; align-items: unset;
  padding: 20px; min-height: 300px;}
.noticias-header .btn{max-width: fit-content;}
.loja-section .franchising-section .btn-white{margin-top: auto;}

.loja-section .left_side {display:flex;flex-direction: column; justify-content: space-between;}

.loja-section .left_side , .loja-section  .right_side {max-width: 50%;}

.loja-section select {width: 100%;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid var(--color-background-grey);
  line-height: 26px;
  color: black;}


.loja-section select:focus {
  border: 1px solid var(--color-background-grey);
  outline: none;
}
  

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.loja-espaco-section .section-label{color:var(--black)}

.loja-espaco-section .excelencia-header {margin-bottom:0}
.loja-espaco-section .excelencia-header .slider-nav{position: unset;}
.loja-espaco-section .excelencia-container{min-height: 440px; padding: 40px 0;}

.excelencia-section.loja-espaco-section{margin-bottom: 60px;}
.loja-espaco-section .excelencia-section{ margin: var(--section-gap) 0; }


.loja-section.main_info .section-label{margin:0}

.loja-section.main_info .btns{display:flex; gap:10px; width: 100%;}

.loja-section.main_info .btn , .loja-section.main_info .btn-white{width: 50%; max-width: 100%; text-align: center;text-align: center;
  display: flex; justify-content: center;  align-items: center;}

.info_grid .title {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin:0;
  margin-bottom: 10px;
}

.info_grid .description{margin-top: 10px;}

.info_grid .description ,  .info_grid .description p{  font-size: var(--fs-sm);
  font-weight: 400; }

.loja-section.main_info .info_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
  margin-bottom: 20px;
}

.info_grid .description a {
  font-size: var(--fs-sm);
  color: var(--title);
  transition: color 0.2s;
}
.info_grid .description a:hover { color: var(--title-red); }

.banner_store {min-height: 378px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;}

  .banner_store .text-box{    position: absolute;
    color: var(--white);
    left: 40px;
    bottom: 40px;
}

.banner_store .text-box span {text-transform: uppercase; font-weight: 500;   letter-spacing: 1.5px;}
.banner_store .text-box h3 {margin-top:10px; font-weight: 500;
  font-size: var(--fs-xl);}



  .gm-ui-hover-effect {
    position: absolute !important;
    right: 0 !important;
    top: 4px !important;
    background: none !important;
  }


  .gm-style-iw-ch {
    padding-top: 10px !important;
  }

  .temporary{display:none}

   /* ══════════════════════════════════════════
         BLOCOS DE CONTACTO DIRETO
      ══════════════════════════════════════════ */
      .contact-info-section { margin: var(--section-gap) 0; }
 
      .contact-info-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
 
      .contact-info-card {
        background: var(--color-background);
        border-radius: var(--radius);
        padding: 36px 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .contact-info-card .text{color:var(--text)}
      .contact-info-card .text p{margin-bottom: 1rem;}
      .contact-info-card h2{font-size: 20px;margin-bottom: 1rem;}
    

      .contact-info-card .card-icon {
        width: 44px; height: 44px;
        background: var(--title-red);
        border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
      }
      .contact-info-card .card-icon svg { color: var(--white); }
 
      .contact-info-card h3 {
        font-size: 13px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1.2px;
        color: var(--title);
      }
      .contact-info-card ul { display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0;}
      .contact-info-card ul li {
        display: flex; flex-direction: column; gap: 3px;
      }
      .contact-info-card ul li a,
      .contact-info-card ul li span {
        font-size: 14px; color: var(--title);
        transition: color .2s;
      }
      .contact-info-card ul li a:hover { color: var(--title-red); }
      .contact-info-card ul li .info {
        font-size: 11px; color: var(--text);
      }
 
      /* Horários */
      .horario-grid { display: flex; flex-direction: column; gap: 8px; }
      .horario-row {
        display: flex; justify-content: space-between; align-items: center;
        font-size: 13px;
      }
      .horario-row .dia   { color: var(--text); }
      .horario-row .horas { font-weight: 600; color: var(--title); }
      .horario-row .fechado { font-weight: 600; color: var(--grey); }
      .horario-divider {
        border: none; border-top: 1px solid #e0e0e0; margin: 4px 0;
      }
 
      /* ══════════════════════════════════════════
         FORMULÁRIO
      ══════════════════════════════════════════ */
      .contact-form-section { margin: 0 0 70px; }
 
      .contact-form-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
      }
 
      /* Lado esquerdo — texto */
      .form-intro h2 {
        font-size: 32px; font-weight: 300; line-height: 1.2;
        margin-bottom: 16px;
      }
      .form-intro h2 strong { font-weight: 700; }
      .form-intro p {
        font-size: 14px; color: var(--text); line-height: 1.7;
        max-width: 380px;
      }
      .form-intro .response-time {
        display: flex; align-items: center; gap: 10px;
        margin-top: 28px;
        font-size: 12px; color: var(--text);
      }
      .form-intro .response-time svg { color: var(--title-red); flex-shrink: 0; }
 
      /* Formulário */
      .contact-form { display: flex; flex-direction: column; gap: 16px; }
 
      .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
 
      .form-group { display: flex; flex-direction: column; gap: 6px; }
      .form-group label {
        font-size: 11px; font-weight: 600; text-transform: uppercase;
        letter-spacing: 1px; color: var(--text);
      }

      .form-group label.error {color: var(--title-red)}
      .form-group input,
      .form-group select,
      .form-group textarea {
        font-family: var(--font);
        font-size: 14px;
        color: var(--title);
        background: var(--color-background);
        border: 1.5px solid transparent;
        border-radius: 6px;
        padding: 12px 16px;
        outline: none;
        transition: border-color .2s;
        width: 100%;
      }

      .form-group select{font-family: var(--font);
        font-size: 14px;
        color: var(--text);}

       .form-group select:valid {
          color: #000; 
        }

        .form-group input[type="date"]{  color: var(--text);}

       .form-group input[type="date"]:valid {color: #000; }

      .form-group input:focus,
      .form-group select:focus,
      .form-group textarea:focus { border-color: var(--title-red); }
 
      .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237D7D7D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
 
      .form-group textarea { resize: vertical; min-height: 140px; }
 
      .form-rgpd {
        display: flex; align-items: flex-start; gap: 10px;
        font-size: 12px; color: var(--text); line-height: 1.5;
        cursor: pointer;
      }
      .form-rgpd input[type="checkbox"] {
        width: 16px; height: 16px; flex-shrink: 0;
        margin-top: 1px; accent-color: var(--title-red);
      }
      .form-rgpd a { color: var(--title-red); }
 
      .form-submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
      .form-note { font-size: 11px; color: var(--text); }
 
      /* ══════════════════════════════════════════
         CTA — REDE DE LOJAS  (Versão A apenas)
      ══════════════════════════════════════════ */
      .lojas-cta-section { margin: 0 0 80px; }
 
      .lojas-cta-inner {
        background: var(--color-background);
        border-radius: var(--radius);
        padding: 50px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
      }
      .lojas-cta-text h2 {
        font-size: 26px; font-weight: 300; margin-bottom: 10px;
      }
      .lojas-cta-text h2 strong { font-weight: 700; }
      .lojas-cta-text p {
        font-size: 14px; color: var(--text); max-width: 400px; line-height: 1.6;
      }
      .lojas-cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
 
/* Notícias */
      
      .article-meta-top {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 40px 0;
      }

      .article-body{    font-size: 15px;
        color: #333;
        line-height: 1.8;}
      .article-tag {
        font-size: 10px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 2px;
        color: black;
        background: var(--title-red);
        padding: 4px 12px;
        border-radius: 3px;
      }

      .article-img {max-width: 800px;
        width: 100%;
        height: auto;
        margin-bottom: 40px;}

      .article-breadcrumb {
        font-size: 12px; color: rgba(255,255,255,0.65);
        display: flex; align-items: center; gap: 6px;
      }
      .article-breadcrumb a {   color: black;; transition: color .2s; }
      .article-breadcrumb a:hover {   color: var(--title-red) }
      .article-breadcrumb span {   color: black; }
 
      .article-hero-content h1 {
        font-size: 46px;
        font-weight: 300;
        color: var(--white);
        max-width: 780px;
        line-height: 1.15;
      }
      .article-hero-content h1 strong { font-weight: 700; }
 
      .article-hero-date {
        font-size: 11px;   color: black;;
        text-transform: uppercase; letter-spacing: 1px;
      }
 
      /* ══════════════════════════════════════════
         LAYOUT PRINCIPAL — conteúdo + sidebar
      ══════════════════════════════════════════ */
      .article-layout {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 60px;
        margin: 40px auto 80px;
        align-items: start;
      }
 
      /* ── Corpo do artigo ── */
      .article-body { min-width: 0; }
 
      .article-lead {
        font-size: 18px;
        font-weight: 400;
        color: var(--title);
        line-height: 1.7;
        margin-bottom: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid #e8e8e8;
      }
 
      .article-text p {
        font-size: 15px;
        color: #333;
        line-height: 1.8;
        margin-bottom: 20px;
      }
 
      /* Blocos de lista (sintomas / fatores) */
      .article-block {
        background: var(--color-background);
        border-radius: var(--radius);
        padding: 32px 36px;
        margin: 36px 0;
      }
      .article-block h3 {
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--title-red);
        margin-bottom: 20px;
      }
      .article-block ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 24px;
      }
      .article-block ul li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--title);
        line-height: 1.5;
      }
      .article-block ul li::before {
        content: '';
        width: 6px; height: 6px;
        background: var(--title-red);
        border-radius: 50%;
        flex-shrink: 0;
        margin-top: 6px;
      }
      /* Lista de fatores de risco — 1 coluna */
      .article-block.single-col ul {
        grid-template-columns: 1fr;
      }
 
      /* CTA inline */
      .article-cta-inline {
        background: var(--title-red);
        border-radius: var(--radius);
        padding: 28px 36px;
        margin: 36px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }
      .article-cta-inline p {
        font-size: 15px;
        font-weight: 600;
        color: var(--white);
        line-height: 1.4;
        margin: 0;
      }
      .article-cta-inline p span {
        display: block;
        font-size: 13px;
        font-weight: 400;
        opacity: .85;
        margin-top: 4px;
      }
      .btn-white-cta {
        display: inline-block; flex-shrink: 0;
        font-family: var(--font); font-size: 11px; font-weight: 700;
        letter-spacing: 0.8px; text-transform: uppercase;
        color: var(--title-red); background: var(--white);
        border: 1px solid var(--white); border-radius: 4px;
        padding: 10px 24px;
        white-space: nowrap;
        transition: background .2s, color .2s;
      }
      .btn-white-cta:hover { background: var(--title-red); color: var(--white); border-color: rgba(255,255,255,.4); }
 
      /* Share */
      .article-share {
        display: flex;
        align-items: center;
        gap: 14px;
        padding-top: 36px;
        margin-top: 36px;
        border-top: 1px solid #e8e8e8;
      }
      .article-share p {
        font-size: 11px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1.5px;
        color: var(--text); margin: 0;
      }
      .share-icon {
        display: flex; align-items: center; justify-content: center;
        width: 36px; height: 36px;
        border: 1.5px solid #e0e0e0;
        border-radius: 50%;
        color: var(--title);
        transition: border-color .2s, color .2s;
      }
      .share-icon:hover { border-color: var(--title-red); color: var(--title-red); }
 
      /* Voltar */
      .article-back {
        display: inline-flex; align-items: center; gap: 8px;
        font-size: 11px; font-weight: 600;
        text-transform: uppercase; letter-spacing: 1px;
        color: var(--text);
        margin-top: 40px;
        transition: color .2s;
      }
      .article-back:hover { color: var(--title-red); }
      .article-back svg { transition: transform .2s; }
      .article-back:hover svg { transform: translateX(-3px); }
 
      /* ══════════════════════════════════════════
         SIDEBAR
      ══════════════════════════════════════════ */
      .article-sidebar { display: flex; flex-direction: column; gap: 28px; }
 
      /* Box rastreio */
      .sidebar-cta {
        background: var(--title-red);
        border-radius: var(--radius);
        padding: 28px;
        text-align: center;
      }
      .sidebar-cta .cta-icon {
        width: 52px; height: 52px;
        background: var(--title-red);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 16px;
        color: var(--white);
      }
      .sidebar-cta h3 {
        font-size: 16px; font-weight: 600;
        margin-bottom: 10px; line-height: 1.3;
      }
      .sidebar-cta p {
        font-size: 13px; color: var(--text);
        line-height: 1.6; margin-bottom: 20px;
      }
      .sidebar-cta .phone {
        font-size: 20px; font-weight: 700;
        color: var(--title-red); margin-bottom: 6px;
        display: block;
      }
      .sidebar-cta .phone-note {
        font-size: 10px; color: var(--text);
        margin-bottom: 20px;
      }
 
      /* Artigos relacionados */
      .sidebar-related h3 {
        font-size: 11px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1.5px;
        color: var(--text);
        margin-bottom: 16px;
      }
      .related-list { display: flex; flex-direction: column; gap: 16px; }
      .related-card {
        display: flex; gap: 14px; align-items: flex-start;
        padding-bottom: 16px;
        border-bottom: 1px solid #f0f0f0;
      }
      .related-card:last-child { border-bottom: none; padding-bottom: 0; }
      .related-card img {
        width: 72px; height: 72px;
        object-fit: cover;
        border-radius: 6px;
        flex-shrink: 0;
        background: var(--title-red);
      }
      .related-card-text { flex: 1; min-width: 0; }
      .related-card-tag {
        font-size: 9px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1.5px;
        color: var(--title-red); margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .related-card-title {
        font-size: 13px; font-weight: 500;
        color: var(--title); line-height: 1.4;
        transition: color .2s;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .related-card:hover .related-card-title { color: var(--title-red); }
      .related-card-date {
        font-size: 11px; color: var(--text); margin-top: 4px;
      }
 


      /* ══════════════════════════════════════════
         RESPONSIVE
      ══════════════════════════════════════════ */
      @media (max-width: 1024px) {
        .nav_list, .navbar .btn { display: none; }
        .article-hero { height: 480px; }
        .article-hero-content h1 { font-size: 34px; }
        .article-layout { grid-template-columns: 1fr; gap: 40px; }
        .article-sidebar { display: grid; grid-template-columns: 1fr ; gap: 20px; }
      }
      @media (max-width: 768px) {
        .grid-container { padding: 0 16px; }
        .nav-content { padding: 18px 16px; }
        .article-hero { height: 360px; }
        .article-hero-content h1 { font-size: 26px; }
        .article-lead { font-size: 16px; }
        .article-block ul { grid-template-columns: 1fr; }
        .article-cta-inline { flex-direction: column; align-items: flex-start; }
        .newsletter-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
        .newsletter-follow { font-size: 16px; }
      }
      @media (max-width: 480px) {
        .article-hero { height: 280px; }
        .article-hero-content h1 { font-size: 22px; }
        .article-hero-content { padding: 32px 0; }
      }


      .news-hero-content {
        padding-top: 8px;
      }
      
      .news-kicker {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.8px;
        color: var(--title-red);
        margin-bottom: 10px;
      }
      
      .news-hero h1 {
        font-size: 36px;
        line-height: 1.15;
        font-weight: 500;
        color: var(--title);
        margin-bottom: 14px;
      }
      
      .news-description {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 400;
        color: var(--text);
      }
      
      
      /* GRID */
      .news-list-section {
        padding: 40px 0 80px;
      }
      
      .news-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
      
      /* CARD */
      .news-card {
        display: flex;
        flex-direction: column;
      
        background: white;
        border: 1px solid #f0f0f0;
        border-radius: 18px;
      
        overflow: hidden;
      
        transition:
          transform .25s ease,
          border-color .25s ease,
          box-shadow .25s ease;
      }
      
      .news-card:hover {
        transform: translateY(-4px);
        border-color: #e3e3e3;
      
        box-shadow: 0 10px 30px rgba(0,0,0,.05);
      }
      
      .news-card-image {
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: var(--color-background);
      }
      
      .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      
        transition: transform .4s ease;
      }
      
      .news-card:hover .news-card-image img {
        transform: scale(1.03);
      }
      
      .news-card-content {
        padding: 28px;
      }
      
      .news-card-meta {
        display: flex;
        align-items: center;
        gap: 12px;
      
        margin-bottom: 16px;
      }
      
      .news-card-category {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
      
        color: var(--title-red);
      }
      
      .news-card-date {
        font-size: 11px;
        color: var(--text);
      }
      
      .news-card-title {
        font-size: 24px;
        line-height: 1.3;
        font-weight: 500;
      
        color: var(--title);
      
        margin-bottom: 14px;
      
        transition: color .2s ease;
      }
      
      .news-card:hover .news-card-title {
        color: var(--title-red);
      }
      
      .news-card-excerpt {
        font-size: 15px;
        line-height: 1.7;
        color: var(--text);
      
        margin-bottom: 24px;
      }
      
      .news-card-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
      
        font-size: 11px;
        font-weight: 700;
      
        letter-spacing: 1px;
        text-transform: uppercase;
      
        color: var(--title);
      
        transition: gap .2s ease, color .2s ease;
      }
      
      .news-card:hover .news-card-link {
        color: var(--title-red);
        gap: 12px;
      }
      
      /* RESPONSIVE */
      @media (max-width: 1024px) {
      
        .news-grid {
          grid-template-columns: 1fr;
        }
      
        .news-hero h1 {
          font-size: 42px;
        }
      
      }
      
      @media (max-width: 768px) {
      
        .news-hero {
          padding: 32px 0 12px;
        }
      
        .news-hero h1 {
          font-size: 34px;
        }
      
        .news-description {
          font-size: 16px;
        }
      
        .news-card-content {
          padding: 22px;
        }
      
        .news-card-title {
          font-size: 20px;
        }
      
      }
/* ══════════════════════════════════════════ HERO ══════════════════════════════════════════ */

.agreements-hero {
  padding: var(--section-gap) 0 50px;
}

.agreements-hero-content {
  max-width: 760px;
}

.agreements-hero h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 300;
  margin: 14px 0 20px;
  letter-spacing: -1.5px;
}

.agreements-hero h1 strong {
  font-weight: 700;
}

.agreements-hero p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

/* ══════════════════════════════════════════ SECTION ══════════════════════════════════════════ */

.agreements-section {
  padding-bottom: 100px;
}

.agreement-category {
  margin-bottom: 80px;
}

/* ══════════════════════════════════════════ CATEGORY HEADER ══════════════════════════════════════════ */

.agreement-category-header {
  margin-bottom: 28px;
}

.agreement-category-header h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--title);
  letter-spacing: -0.5px;
  margin: 0;
}

.agreement-category-header span {
  display: none;
}

/* ══════════════════════════════════════════ GRID ══════════════════════════════════════════ */

.agreements-grid {
  display: grid;

  grid-template-columns: repeat(8, minmax(0, 1fr));

  gap: 18px 14px;
}

/* ══════════════════════════════════════════ CARD ══════════════════════════════════════════ */

.agreement-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  background: transparent;
  border: none;

  transition: transform .2s ease;
  max-width: 98px;
}

.agreement-card:hover {
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════ IMAGE ══════════════════════════════════════════ */

.agreement-image {
  width: 98px;
  height: 98px;

  border-radius: 16px;

  background: #fff;

  border: 1px solid #f1f1f1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;

  overflow: hidden;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.agreement-card:hover .agreement-image {
  border-color: #e3e3e3;

  box-shadow:
    0 8px 20px rgba(0,0,0,.05);
}

.agreement-image img {

}

/* ══════════════════════════════════════════ CONTENT ══════════════════════════════════════════ */

.agreement-content {
  margin-top: 12px;

  width: 100%;
}

.agreement-content h3 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;

  color: var(--title);

  margin: 0 0 6px;

  transition: color .2s ease;
}

.agreement-card:hover h3 {
  color: var(--title-red);
}

.agreement-content p {
  font-size: 12px;
  line-height: 1.55;

  color: var(--text);

  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

/* opcional */
.agreement-meta {
  margin-top: 6px;

  font-size: 11px;
  color: #888;
}

/* ══════════════════════════════════════════ RESPONSIVE ══════════════════════════════════════════ */

@media (max-width: 1400px) {

  .agreements-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

}

@media (max-width: 1200px) {

  .agreements-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

}

@media (max-width: 992px) {

  .agreements-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (max-width: 768px) {

  .agreements-hero {
    padding: 50px 0 40px;
  }

  .agreements-hero h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .agreement-category {
    margin-bottom: 60px;
  }

  .agreement-category-header h2 {
    font-size: 24px;
  }

  .agreements-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px;
  }

}

@media (max-width: 540px) {

  .agreements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agreement-image {
    width: 82px;
    height: 82px;

    border-radius: 14px;
  }

  .agreement-content h3 {
    font-size: 13px;
  }

  .agreement-content p {
    font-size: 11px;
  }

}

.acordo_reg_page .contact-info-card{margin-bottom:40px; flex-direction:row; gap:20px}
.acordo_reg_page .article-back {margin-bottom: 100px;margin-top:0}

.schedule-form-section{margin:var(--section-gap) 0 }
/* ==========================================
   VISION TEST WRAPPER
========================================== */

#plk_vision_test {
  max-width: 1280px;
  margin: var(--section-gap) auto 100px;
}

/* ==========================================
   INTRO
========================================== */

#plk_vision_test .vision-intro {
  grid-column: 1 / -1;
  max-width: 720px;
}

#plk_vision_test .vision-intro h1 {
  font-size: 54px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -1.5px;
  margin: 0 0 12px;
  color: var(--title);
}

#plk_vision_test .vision-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  max-width: 620px;
}

/* ==========================================
   PROGRESS
========================================== */

#plk_vision_test .vision-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 50px;
}

#plk_vision_test .vision-progress span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: #e8e8e8;
  transition: .3s ease;
}

#plk_vision_test .vision-progress span.active {
  background: var(--title-red);
}

/* ==========================================
   STEP VISIBILITY
========================================== */

#plk_vision_test .vision-step {
  display: none;
}

#plk_vision_test .vision-step.active {
  display: block;
}

/* ==========================================
   LAYOUT
========================================== */

#plk_vision_test .vision_text_box {
  display: grid;
  grid-template-columns: minmax(520px, 60%) 1fr;
  gap: 60px;
  align-items: center;
}

/* ==========================================
   IMAGE
========================================== */

#plk_vision_test .img_box {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 40px;

  border-radius: 24px;

  background: #fff;

  border: 1px solid #ececec;

  box-shadow: 0 18px 45px rgba(0,0,0,.04);
}

#plk_vision_test .img_box img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

/* ==========================================
   CONTENT
========================================== */

#plk_vision_test .vision-content {
  max-width: 520px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* STEP TITLE (H2) */
#plk_vision_test .vision-content h2 {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
  color: var(--title);
}

/* TEXT (não mexido em estilo base) */
#plk_vision_test span,
#plk_vision_test span p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

#plk_vision_test span p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   NOTE
========================================== */

#plk_vision_test .vision-test-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f8f8f8;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

/* ==========================================
   ACTIONS
========================================== */

#plk_vision_test .vision-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.vision-actions .vision-next{margin-top: 1rem;}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 1024px) {

  #plk_vision_test .vision_text_box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #plk_vision_test .vision-content {
    max-width: none;
  }

  #plk_vision_test .vision-intro h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {

  #plk_vision_test {
    margin: 40px auto 70px;
  }

  #plk_vision_test .img_box {
    padding: 20px;
  }

  #plk_vision_test .vision-intro h1 {
    font-size: 34px;
  }

  #plk_vision_test .vision-content h2 {
    font-size: 28px;
  }
}