/* =====================================================
   CSS RESET + NORMALIZE
===================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.4;
  background: #F7F6F1;
  color: #1A2236;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #E94E1B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #b89c4e;
  outline: none;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
  list-style: disc inside;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A2236;
  line-height: 1.14;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #222222;
}
strong, b {
  font-weight: 700;
  color: #1A2236;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px 0 rgba(26,34,54,0.07);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
}
.text-section {
  padding: 32px 0;
}
.button, .cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 32px;
  background: #1A2236;
  color: #fff;
  letter-spacing: 0.4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 12px 0 rgba(26,34,54,0.09);
  position: relative;
  overflow: hidden;
  outline: none;
}
.cta-btn {
  background: #b89c4e;
  color: #fff;
  border: 2px solid #b89c4e;
}
.button:hover, .cta-btn:hover, .button:focus, .cta-btn:focus {
  background: #947830;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(184,156,78,0.19);
  text-decoration: none;
}
.button.secondary, .cta-btn.secondary {
  background: #1A2236;
  color: #b89c4e;
  border: 2px solid #b89c4e;
}
.button.secondary:hover, .cta-btn.secondary:hover {
  background: #b89c4e;
  color: #fff;
}
hr {
  border: 0;
  border-top: 1px solid #E5E4DE;
  margin: 40px 0;
}
/* =====================================================
   HEADER & NAVIGATION
===================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(26,34,54,0.04);
  padding: 0;
  margin: 0 0 40px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 30px;
}
header img {
  width: 180px;
  min-width: 120px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1A2236;
  padding: 9px 15px;
  border-radius: 16px;
  transition: background 0.14s, color 0.15s;
  position: relative;
}
.main-nav a:hover:not(.cta-btn), .main-nav a:focus:not(.cta-btn) {
  background: #f9f7f2;
  color: #b89c4e;
}
.main-nav .cta-btn {
  margin-left: 10px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 1.5px solid #b89c4e;
  color: #b89c4e;
  font-size: 2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border 0.2s, color 0.2s;
  cursor: pointer;
  z-index: 500;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #fff3da;
  color: #947830;
  border: 1.5px solid #947830;
}
/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1A2236EE;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0.8,0.3,1);
  z-index: 9999;
  padding-top: 40px;
  padding-bottom: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: 30px;
  background: none;
  border: none;
  color: #b89c4e;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 32px;
  flex: 1 1 0%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 0px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 8px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #b89c4e;
  color: #1A2236;
}
/* Hide main nav on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* HERO SECTION */
.hero {
  background: #1A2236;
  padding: 60px 20px 60px 20px;
  color: #fff;
  border-radius: 0 0 28px 28px;
  margin-bottom: 60px;
  box-shadow: 0 8px 48px 0 rgba(26,34,54,0.09);
  position: relative;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.8px;
}
.hero .subheadline {
  font-size: 1.25rem;
  color: #ddd6cb;
  margin-bottom: 32px;
}
.hero .cta-btn {
  font-size: 1.13rem;
  padding: 16px 40px;
  background: #b89c4e;
  border: none;
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(184,156,78,0.22);
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #fff;
  color: #b89c4e;
  border: 2px solid #b89c4e;
}
/* =====================================================
   FLEXBOX LAYOUTS & STRUCTURAL PATTERNS
===================================================== */
.card-container, .card-grid, .feature-grid, .teacher-list, .levels-list, .content-grid, .footer-nav, .footer-contact, .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(26,34,54,0.08);
  margin-bottom: 20px;
  padding: 28px 24px;
  transition: box-shadow 0.19s, transform 0.17s;
  width: 100%;
  max-width: 350px;
  min-width: 260px;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 36px 0 rgba(26,34,54,0.15);
  transform: translateY(-3px) scale(1.01);
  z-index: 3;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 20px 26px 18px;
  background: #F7F6F1;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(184,156,78,0.09);
  min-width: 220px;
  flex: 1 1 220px;
  border: 1.5px solid #ebdfbf;
  margin-bottom: 20px;
  transition: box-shadow 0.12s;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}
.feature-item h3 {
  font-size: 1.125rem;
  color: #b89c4e;
  margin-bottom: 4px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 6px 32px 0 rgba(184,156,78,0.17);
}
.teacher-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
  margin-top: 14px;
  justify-content: flex-start;
}
.teacher-profile {
  padding: 26px 20px 26px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(184,156,78,0.10);
  border: 1.5px solid #ebdfbf;
  max-width: 340px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s;
}
.teacher-profile h2 {
  font-size: 1.125rem;
  color: #b89c4e;
}
.teacher-profile:hover, .teacher-profile:focus {
  box-shadow: 0 6px 32px 0 rgba(184,156,78,0.14);
}
.levels-list {
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 20px;
  align-items: stretch;
}
.level-block {
  flex: 1 1 220px;
  background: #F7F6F1;
  border-radius: 16px;
  box-shadow: 0 2.5px 16px 0 rgba(184,156,78,0.09);
  padding: 28px 20px 24px 20px;
  border: 1.5px solid #ebdfbf;
  min-width: 220px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fbf8ee;
  box-shadow: 0 4px 22px 0 rgba(184,156,78,0.10);
  border-radius: 18px;
  margin-bottom: 20px;
  color: #222;
  border-left: 5px solid #b89c4e;
  flex-wrap: wrap;
  transition: box-shadow 0.15s, border 0.22s;
}
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: #1A2236;
}
.testimonial-card strong {
  color: #b89c4e;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 38px 0 rgba(184,156,78,0.17);
  border-left: 5px solid #E94E1B;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.2rem;
  color: #b89c4e;
  margin-top: 20px;
  background: #fffbe7;
  padding: 14px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.rating-summary span {
  font-size: 1.15em;
}
/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
}
/* CTA secondary area */
.cta-secondary {
  background: #f9f7f2;
  border-radius: 16px;
  padding: 22px 24px;
  margin-top: 32px;
  margin-bottom: 12px;
  box-shadow: 0 2.5px 14px 0 rgba(184,156,78,0.07);
}
.cta-secondary p {
  margin-bottom: 12px;
  color: #1A2236;
}
/* Misc/helpful classes */
.note {
  background: #fffbe7;
  color: #887423;
  border-left: 4px solid #b89c4e;
  padding: 12px 20px;
  border-radius: 9px;
  margin-top: 18px;
  font-size: 0.96rem;
}
.confirmation-message {
  background: #F7F6F1;
  padding: 20px 30px;
  border-radius: 12px;
  color: #222222;
  box-shadow: 0 2px 9px 0 rgba(184,156,78,0.09);
  margin-bottom: 14px;
}
/* Contact details, social links,
   used in contato and footer */
.contact-details {
  margin-bottom: 18px;
}
.contact-details p, .footer-contact p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 12px;
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.social-links a img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(184,156,78,0.11);
  padding: 4px;
  transition: box-shadow 0.16s, filter 0.14s;
}
.social-links a:hover img, .social-links a:focus img {
  box-shadow: 0 4px 20px 0 rgba(184,156,78,0.19);
  filter: brightness(1.2) saturate(1.2);
}
.location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-size: 1rem;
}
/* Table – Pricing Format (planos-precos) */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(26,34,54,0.08);
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1px solid #E5E4DE;
  padding: 20px 14px;
  text-align: left;
  font-size: 1rem;
  vertical-align: top;
}
.pricing-table th {
  background: #F7F6F1;
  color: #b89c4e;
  font-size: 1.08rem;
  font-weight: 700;
  border-bottom: 2.5px solid #E5E4DE;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:nth-child(even) td {
  background: #F7F6F1;
}
.pricing-table ul {
  margin: 0 0 0 20px;
}
.pricing-table li {
  padding: 4px 0;
}
/* Footer */
footer {
  background: #1A2236;
  color: #fff;
  padding: 64px 20px 32px 20px;
  margin-top: 60px;
  border-radius: 22px 22px 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 52px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #b89c4e;
  margin-bottom: 2px;
  transition: color 0.16s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact p {
  font-size: 1rem;
  color: #fff8de;
  margin-bottom: 7px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  border-top: 1.5px solid #b89c4e;
  padding-top: 18px;
  font-size: 1.05rem;
  color: #b89c4e;
  justify-content: flex-start;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}
/* ================================
   COOKIE CONSENT BANNER
=================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 30000;
  width: 100vw;
  background: #1A2236;
  color: #fff;
  box-shadow: 0 -4px 32px 0 rgba(26,34,54,.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  gap: 24px;
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInUp 0.7s;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner button {
  padding: 11px 20px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  font-weight: 700;
  border: none;
  margin-left: 2px;
  cursor: pointer;
  background: #b89c4e;
  color: #fff;
  transition: background 0.16s, color 0.13s;
}
.cookie-consent-banner button.cookie-reject {
  background: #fff;
  color: #b89c4e;
  border: 1.5px solid #b89c4e;
}
.cookie-consent-banner button.cookie-settings {
  background: #1A2236;
  color: #b89c4e;
  border: 1.5px solid #b89c4e;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #947830;
  color: #fff;
  outline: none;
}
.cookie-consent-banner button.cookie-reject:hover,
.cookie-consent-banner button.cookie-reject:focus {
  background: #E94E1B;
  color: #fff;
  border: none;
}
.cookie-consent-banner button.cookie-settings:hover,
.cookie-consent-banner button.cookie-settings:focus {
  background: #F7F6F1;
  color: #b89c4e;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0);}
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 40000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,34,54,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.7s;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 70px 0 rgba(26,34,54,0.14);
  padding: 38px 32px;
  max-width: 410px;
  width: 92vw;
  color: #1A2236;
  position: relative;
  animation: fadeInUp 0.5s;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #b89c4e;
  margin-bottom: 20px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 13px;
  color: #1A2236;
}
.cookie-modal .toggle-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #e8e4d9;
  border-radius: 15px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-modal .toggle-switch:checked {
  background: #b89c4e;
}
.cookie-modal .toggle-switch::after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 4px 0 rgba(26,34,54,0.13);
  transition: left 0.23s;
}
.cookie-modal .toggle-switch:checked::after {
  left: 21px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 28px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: #b89c4e;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #1A2236;
}
/* ============== RESPONSIVE DESIGN ============== */
@media (max-width: 1200px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .content-wrapper { max-width: 100%; }
}
@media (max-width: 1024px) {
  .hero { padding: 48px 8px 48px 8px; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .feature-grid, .card-container, .teacher-list, .levels-list, .content-grid { gap: 18px; }
  .feature-item, .teacher-profile, .level-block, .card { min-width: 180px; }
}
@media (max-width: 860px) {
  .section { padding: 26px 6px; }
  .hero h1 { font-size: 2rem; }
  header .container { gap: 8px; }
}
@media (max-width: 640px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.08rem; }
  .container { padding-left: 4px; padding-right: 4px; }
  .footer-brand { flex-direction: column; gap: 4px; }
  .footer-brand img { width: 34px; height: 34px; }
  .section { margin-bottom: 38px; padding: 14px 2px; }
  .rating-summary { flex-direction: column; gap: 7px; padding: 9px 8px; }
}
@media (max-width: 768px) {
  .hero, section, .section { border-radius: 0; }
  .feature-grid, .teacher-list, .levels-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature-item, .teacher-profile, .level-block, .card { width: 100%; max-width: 100%; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 500px) {
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; padding: 18px 7px; gap: 12px; font-size: .98rem;}
  .cookie-consent-banner .cookie-buttons { width: 100%; gap: 8px; }
}
@media (max-width: 400px) {
  .cookie-modal { padding: 23px 8px; }
}
/* =========== INPUT, FORMS, ETC =========== */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #E9E7E1;
  padding: 8px 16px;
  margin-bottom: 16px;
  width: 100%;
  background: #FAF9F7;
  transition: border 0.12s;
}
input:focus, select:focus, textarea:focus {
  border-color: #b89c4e;
  outline: none;
}
/* =========== CUSTOM SCROLLBARS =========== */
body::-webkit-scrollbar {
  width: 11px;
  background: #E9E7E1;
}
body::-webkit-scrollbar-thumb {
  background: #b89c4e;
  border-radius: 7px;
}
/* =========== UTILITY CLASSES =========== */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.gap-20 { gap: 20px !important; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
/* =========== BORDERS & ACCENT DECOR =========== */
hr.gold { border-top: 2px solid #b89c4e; margin: 32px 0; }
/* =========== FOCUS VISIBLE FOR ACCESSIBILITY =========== */
:focus-visible {
  outline: 2px solid #b89c4e !important;
  outline-offset: 1px;
}
/*
  --- End of CSS ---
*/