/* ==========================================================================
   IGUITO EUROPA — Azeite de Oliva Virgem Extra Português
   Design tokens e estilos globais
   Paleta: navy + azul vivo + creme + dourado  (azulejo português)
   Tipografia: Fraunces (títulos) + Inter (corpo)
   ========================================================================== */

:root {
  /* Cores */
  --c-navy:        #0e2038;
  --c-navy-2:      #16304f;
  --c-blue:        #1a6bff;
  --c-blue-deep:   #0f52cc;
  --c-cream:       #faf7f0;
  --c-cream-2:     #f3ecdf;
  --c-white:       #ffffff;
  --c-gold:        #c49029;
  --c-gold-bright: #e0b968;
  --c-text:        #26313f;
  --c-muted:       #5c6773;
  --c-soft:        #8a949e;
  --c-line:        rgba(14, 32, 56, 0.12);
  --c-line-soft:   rgba(14, 32, 56, 0.07);

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container-max: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Sombras */
  --shadow-soft: 0 10px 40px rgba(14, 32, 56, 0.10);
  --shadow-card: 0 4px 22px rgba(14, 32, 56, 0.08);
  --shadow-blue: 0 12px 34px rgba(26, 107, 255, 0.22);

  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Azulejo — padrão sutil em SVG (folha de oliveira estilizada) */
  --azulejo: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%231a6bff' stroke-width='1.1' opacity='0.5'%3E%3Cpath d='M40 8c-9 8-9 20 0 28 9-8 9-20 0-28z'/%3E%3Cpath d='M8 40c8 9 20 9 28 0-8-9-20-9-28 0z'/%3E%3Cpath d='M72 40c-8 9-20 9-28 0 8-9 20-9 28 0z'/%3E%3Cpath d='M40 72c-9-8-9-20 0-28 9 8 9 20 0 28z'/%3E%3Ccircle cx='40' cy='40' r='3.2' fill='%231a6bff' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 17px;
}

body {
  margin: 0;
  background: var(--c-cream);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-blue-deep);
  text-decoration: none;
  transition: color .25s var(--ease);
}
a:hover { color: var(--c-blue); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 480px) { .container { padding: 0 18px; } }

/* ============== Tipografia ============== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--c-navy);
}
h1, h2, h3, h4 { word-break: normal; overflow-wrap: normal; hyphens: manual; -webkit-hyphens: manual; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.break-md { display: inline; }
@media (max-width: 880px) { .break-md { display: none; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-blue-deep);
  margin-bottom: 1rem;
  font-weight: 600;
  max-width: 100%;
}
@media (max-width: 520px) { .eyebrow { letter-spacing: .14em; font-size: .7rem; } }

.lead {
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  font-weight: 400;
  color: var(--c-muted);
  line-height: 1.6;
}

.muted { color: var(--c-muted); }
.soft  { color: var(--c-soft); }
.accent { color: var(--c-blue-deep); }
.gold  { color: var(--c-gold); }

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-navy);
}
.brand-mark {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  overflow: hidden;
  flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  line-height: 1;
  font-size: 1.35rem;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--c-navy);
}
.brand-name small {
  font-family: var(--font-body);
  font-size: .64rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-top: 5px;
  font-weight: 600;
  padding-left: 2px;
}
@media (max-width: 480px) {
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 1.15rem; }
  .brand-name small { font-size: .58rem; letter-spacing: .34em; }
}
.nav-links {
  display: flex; gap: 26px;
  margin-left: auto;
  list-style: none; padding: 0; margin-block: 0;
}
.nav-links a {
  color: var(--c-text);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--c-blue-deep); }
.nav-actions { display: flex; gap: 10px; }

.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--c-navy);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--c-cream);
    border-bottom: 1px solid var(--c-line);
    padding: 8px 0;
    box-shadow: var(--shadow-soft);
  }
  .site-header.menu-open .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--c-line-soft);
  }
}

/* ============== Botões ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1.5px solid var(--c-navy);
  background: transparent;
  color: var(--c-navy);
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}
@media (max-width: 520px) {
  .btn { white-space: normal; padding: 13px 20px; font-size: .84rem; line-height: 1.25; }
}
.btn:hover { border-color: var(--c-blue); color: var(--c-blue-deep); transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--c-blue-deep) 0%, var(--c-navy) 100%);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp { background: #25D366; color: #08351b; border-color: transparent; }
.btn-whatsapp:hover { background: #1ebe5a; color: #08351b; }
.btn svg { width: 18px; height: 18px; }

/* ============== Seções ============== */
section { padding: clamp(56px, 8vw, 104px) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .lead { margin-top: 12px; }

.divider-gold {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: 14px auto 22px;
}

/* ============== Hero ============== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 78% 12%, rgba(26,107,255,.10), transparent 55%),
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  overflow: hidden;
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(48px, 7vw, 84px);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--azulejo);
  opacity: .12;
  mask-image: radial-gradient(ellipse at 30% 40%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, #000 10%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--c-blue-deep); }
.hero p.lead { max-width: 520px; }
@media (max-width: 880px) { .hero p.lead { margin-inline: auto; } }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 880px) { .hero-cta { justify-content: center; } }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  margin-top: 30px;
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  color: var(--c-navy);
}
@media (max-width: 880px) { .hero-badges { justify-content: center; } }
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges svg { width: 16px; height: 16px; color: var(--c-blue); }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-visual::after {
  content: '';
  position: absolute;
  width: 62%; height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,.16), transparent 70%);
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  max-height: 560px;
  filter: drop-shadow(0 24px 40px rgba(14,32,56,.22));
}
@media (max-width: 880px) { .hero-visual img { max-height: 420px; } }

/* ============== Faixa de selos ============== */
.selos {
  background: var(--c-navy);
  color: #fff;
  padding: 44px 0;
}
.selos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
@media (max-width: 720px) { .selos-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.selo .ic { color: var(--c-gold-bright); margin-bottom: 10px; display: grid; place-items: center; }
.selo .ic svg { width: 34px; height: 34px; }
.selo .t { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.selo .d { font-size: .8rem; letter-spacing: .06em; color: rgba(255,255,255,.68); }

/* ============== Produto ============== */
.produto { background: var(--c-cream); }
.produto-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .produto-grid { grid-template-columns: 1fr; gap: 32px; } }
.produto-photo {
  position: relative;
  display: flex; justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(26,107,255,.08), transparent 68%),
    var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.produto-photo img { max-height: 460px; width: auto; filter: drop-shadow(0 16px 26px rgba(14,32,56,.16)); }
.produto-notes { margin-top: 26px; display: grid; gap: 14px; }
.produto-note {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 14px; border-bottom: 1px solid var(--c-line-soft);
}
.produto-note:last-child { border-bottom: none; padding-bottom: 0; }
.produto-note .ic {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  background: rgba(26,107,255,.10);
  color: var(--c-blue-deep);
  display: grid; place-items: center;
}
.produto-note .ic svg { width: 20px; height: 20px; }
.produto-note h4 { margin: 0 0 2px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--c-navy); }
.produto-note p { margin: 0; font-size: .94rem; color: var(--c-muted); }

/* ============== Origem ============== */
.origem {
  position: relative;
  background: linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
  color: #fff;
  overflow: hidden;
}
.origem::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--azulejo);
  opacity: .10;
  pointer-events: none;
}
.origem .container { position: relative; }
.origem .section-head h2, .origem h2, .origem h3 { color: #fff; }
.origem .eyebrow { color: var(--c-gold-bright); }
.origem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 880px) { .origem-grid { grid-template-columns: 1fr; text-align: center; } }
.origem-text p { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 1.1em; }
.origem-text strong { color: #fff; font-weight: 600; }
.origem-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.origem-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px;
}
@media (max-width: 520px) { .origem-highlights { grid-template-columns: 1fr; } }
.origem-hi {
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  text-align: center;
}
.origem-hi .n { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--c-gold-bright); line-height: 1; }
.origem-hi .l { font-size: .82rem; letter-spacing: .05em; color: rgba(255,255,255,.72); margin-top: 6px; }

/* ============== Diferenciais (cards) ============== */
.dif { background: var(--c-cream); }
.dif-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 880px) { .dif-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .dif-grid { grid-template-columns: repeat(2, 1fr); } }
.dif-card {
  padding: 30px 26px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-white);
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.dif-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.dif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.dif-card:hover::before { transform: scaleX(1); }
.dif-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(26,107,255,.10);
  color: var(--c-blue-deep);
  margin-bottom: 18px;
}
.dif-icon svg { width: 26px; height: 26px; }
.dif-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--c-navy); }
.dif-card p { font-size: .95rem; color: var(--c-muted); margin: 0; }

/* ============== Uso / harmonização ============== */
.uso { background: var(--c-white); border-block: 1px solid var(--c-line); }
.uso-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 880px) { .uso-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .uso-grid { grid-template-columns: 1fr; } }
.uso-card {
  text-align: center;
  padding: 26px 18px;
  border-radius: var(--radius-md);
  background: var(--c-cream);
  border: 1px solid var(--c-line-soft);
}
.uso-card .ic { color: var(--c-blue-deep); margin-bottom: 12px; display: grid; place-items: center; }
.uso-card .ic svg { width: 30px; height: 30px; }
.uso-card h4 { margin: 0 0 6px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--c-navy); }
.uso-card p { margin: 0; font-size: .9rem; color: var(--c-muted); }

/* ============== CTA / faixa ============== */
.cta-band {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-deep) 60%, var(--c-navy) 100%);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-band .btn { border-color: #fff; color: #fff; }
.cta-band .btn:hover { background: #fff; color: var(--c-blue-deep); }
.cta-band .btn-whatsapp { background: #fff; color: var(--c-blue-deep); border-color: #fff; }
.cta-band .btn-whatsapp:hover { background: rgba(255,255,255,.9); color: var(--c-navy); }

/* ============== Contato ============== */
.contact { background: var(--c-cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-card {
  padding: 26px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: var(--c-white);
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.contact-card .icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  background: rgba(26,107,255,.10);
  color: var(--c-blue-deep);
  display: grid; place-items: center;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h4 {
  font-family: var(--font-body);
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-soft); margin-bottom: 5px; font-weight: 600;
}
.contact-card p, .contact-card a { font-size: 1rem; color: var(--c-text); margin: 0; }
.contact-card a { color: var(--c-blue-deep); }
.contact-card a:hover { color: var(--c-blue); }

.contact-cta {
  padding: 34px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(26,107,255,.06), var(--c-white));
  box-shadow: var(--shadow-card);
}
.contact-cta h3 { color: var(--c-navy); }
.contact-cta .btn-row { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }

.map-embed { margin-top: 16px; border-radius: var(--radius-md); overflow: hidden; }
.map-embed-frame {
  position: relative; width: 100%; padding-bottom: 62%;
  overflow: hidden; border-radius: var(--radius-md);
  background: rgba(14,32,56,.06);
  border: 1px solid var(--c-line);
}
.map-embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* Anti-overflow defensivo */
.contact-grid > *, .footer-grid > *, .dif-grid > *, .selos-grid > *,
.produto-grid > *, .hero-inner > *, .origem-grid > *, .uso-grid > * { min-width: 0; }
img, iframe { max-width: 100%; }

/* ============== Footer ============== */
.site-footer { background: var(--c-navy); color: rgba(255,255,255,.72); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name small { color: var(--c-gold-bright); }
.site-footer h5 {
  font-family: var(--font-body);
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-gold-bright); margin-bottom: 16px; font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .94rem; }
.site-footer a:hover { color: #fff; }
.lang-switcher { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-switcher a {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .82rem; color: rgba(255,255,255,.82);
}
.lang-switcher a.active, .lang-switcher a:hover { border-color: var(--c-gold-bright); color: var(--c-gold-bright); }
.social-icons { display: flex; gap: 12px; margin-top: 4px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; color: rgba(255,255,255,.72);
  transition: all .25s var(--ease);
}
.social-icons a:hover { border-color: var(--c-gold-bright); color: var(--c-gold-bright); transform: translateY(-2px); }
.social-icons svg { width: 18px; height: 18px; }
.copyright {
  text-align: center; font-size: .82rem; color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px;
}
.copyright small { display: block; margin-top: 8px; color: rgba(255,255,255,.38); font-size: .76rem; }

/* ============== WhatsApp flutuante ============== */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center; z-index: 100;
  box-shadow: 0 6px 24px rgba(37,211,102,.42);
  transition: transform .25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ============== Animações ============== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
