/* 
  Design System & CSS Reset 
*/

:root {
  /* Colors - White, Orange, Dark */
  --primary-color: #EA580C; /* Premium orange */
  --primary-dark: #C2410C;
  --primary-light: #FFEDD5; 
  
  --bg-main: #FFFFFF;
  --bg-alt: #F9FAFB;
  
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #128C7E;
  
  --white: #FFFFFF;
  --text-dark: #111827; /* Very dark grey for premium contrast */
  --text-muted: #4B5563;
  --border-color: #E5E7EB;

  /* Typography */
  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Sora', sans-serif; /* Used for headings */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Base elements */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Top Bar / Countdown */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

.top-bar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.countdown {
  background-color: rgba(0,0,0,0.25);
  padding: 4px 12px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0;
}

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

.logo {
  height: 80px; /* Trava a altura do menu */
  display: flex;
  align-items: center;
  overflow: hidden; /* Corta o excesso de espaço em branco da imagem */
}

.logo-img {
  width: auto;
  height: 60px;
  display: block;
}

.btn-outline {
  border: 2px solid var(--whatsapp-green);
  color: var(--whatsapp-green);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background-color: var(--whatsapp-green);
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  background-color: var(--bg-main);
  background-image: 
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 45%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%),
    url('../assets/orchestra_bg.jpg');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  background-color: rgba(234, 88, 12, 0.1);
  color: var(--primary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.headline {
  font-size: 2.8rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.sub-headline {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 400;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid var(--border-color);
}

.payment-badge i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Video */
.video-wrapper {
  background: var(--white);
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  position: relative;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1579546929662-711aa81148cf?q=80&w=2070&auto=format&fit=crop') center/cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.play-btn {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding-left: 5px; /* Visual center play icon */
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-placeholder p {
  position: relative;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Capture Section */
.capture-section {
  padding: 100px 0;
  background-color: var(--bg-alt);
  color: var(--text-dark);
}

.capture-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.capture-info h2 {
  color: var(--text-dark);
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.capture-info p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.direct-contact {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.direct-contact p {
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.btn-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: none;
  letter-spacing: -0.2px;
}

.btn-whatsapp i {
  font-size: 1.4rem;
}

.btn-whatsapp:hover {
  background-color: #20BA56;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* Form */
.capture-form-wrapper {
  background-color: var(--white);
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.03);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group input, 
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--bg-alt);
  color: var(--text-dark);
}

.form-group input:focus, 
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

select {
  appearance: none;
}

.btn-submit {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.btn-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(234, 88, 12, 0.35);
}

.security-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-main);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.authority-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.authority-text {
  flex: 1;
}

.authority-text h2 {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.authority-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.authority-image {
  flex: 1;
  text-align: right;
}

.ricardo-img {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  object-fit: cover;
}

.stats-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.feature-card {
  background: var(--bg-alt);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 75px;
  height: 75px;
  background: rgba(234, 88, 12, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 25px;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(0deg) scale(1.1);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Brands Section */
.brands-section {
  padding: 100px 0;
  background-color: var(--bg-alt);
}

.brandsSwiper {
  width: 100%;
  padding-bottom: 50px;
}

.brand-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.02);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: auto;
}

.brand-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.brand-card-img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  background-color: var(--white);
  border-bottom: 2px solid rgba(0,0,0,0.05); /* Softer line instead of harsh orange */
}

.brand-card-content {
  padding: 25px;
  flex: 1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.brand-card p {
  display: none; /* Removed as requested */
}

.card-btn {
  display: none; /* Removed as requested */
}

/* Gallery Carousel Section */
.gallery-section {
  padding: 100px 0;
  background-color: var(--bg-main);
  overflow: hidden;
}

.swiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 60px;
}

.mySwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 320px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mySwiper .swiper-slide:hover img {
  transform: scale(1.08);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-color) !important;
  background: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: bold;
}

/* Adjust button positioning for the brands carousel */
.brandsSwiper .swiper-button-next, 
.brandsSwiper .swiper-button-prev {
  top: 180px; /* Vertically centered on the 320px image (160px + 20px padding approx) */
  transform: translateY(-50%);
  margin-top: 0;
}

@media (max-width: 768px) {
  .brandsSwiper .swiper-button-next, 
  .brandsSwiper .swiper-button-prev {
    display: none; /* Hide buttons on mobile to allow clean touch swiping */
  }
}

/* Trust Section */
.trust-section {
  padding: 100px 0;
  background-color: var(--bg-alt);
}

.trust-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.trust-content {
  flex: 1;
}

.trust-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.trust-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.risk-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.risk-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding: 16px 20px;
  background-color: var(--white);
  border-radius: 12px;
  border-left: 4px solid #ef4444;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  font-weight: 500;
}

.risk-list li i {
  color: #ef4444;
  font-size: 1.2rem;
}

.risk-list li.benefit-item {
  border-left: 4px solid #10b981; /* Green border */
  margin-top: 20px; /* Slight separation from risks */
}

.risk-list li.benefit-item i {
  color: #10b981; /* Green icon */
}

.trust-image {
  flex: 1;
}

.trust-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 45px;
  opacity: 0.9;
  font-weight: 300;
}

.cta-btn {
  background-color: #FFFFFF;
  color: #111827;
  padding: 16px 35px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: none;
}

.cta-btn i {
  color: #25D366;
}

.cta-btn:hover {
  background-color: #F9FAFB;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background-color: #0F172A; /* Very dark slate */
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-note {
  margin-top: 10px;
  opacity: 0.8;
}

/* Animations */
.fade-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.reviewer-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stars {
  color: #fbbc05; /* Google Yellow */
  font-size: 0.95rem;
}

.review-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 30px;
  background: var(--white);
  border-radius: 50px;
  max-width: fit-content;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.google-logo {
  width: 35px;
  height: 35px;
}

.rating-info strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.rating-info span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.rating-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.rating-info a:hover {
  text-decoration: underline;
}

.rating-info a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: var(--primary-color);
}

.faq-question {
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none; /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '\f078'; /* FontAwesome down arrow */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px 25px 25px;
}

.faq-answer p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .capture-container {
    grid-template-columns: 1fr;
  }
  
  .authority-content {
    flex-direction: column;
    text-align: center;
  }
  
  .authority-image {
    text-align: center;
  }
  
  .stats-bar {
    justify-content: center;
  }
  
  .hero {
    background-image: 
      linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 45%, rgba(255,255,255,0.8) 70%, rgba(255,255,255,0.2) 100%),
      url('../assets/orchestra_bg.jpg');
    background-position: center bottom;
  }

  .headline {
    font-size: 2.5rem;
  }
  
  .video-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: 2rem;
  }

  .authority-text h2 {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .hero {
    padding: 50px 0;
  }
  
  .capture-form-wrapper {
    padding: 25px;
  }
  
  .capture-section {
    padding: 50px 0;
  }
  
  .trust-container {
    flex-direction: column-reverse;
  }
  
  .cta-btn {
    width: 100%;
    padding: 16px 20px;
  }

  .btn-outline {
    font-size: 0.7rem;
    padding: 5px 10px;
    white-space: nowrap;
  }

  .logo-img {
    height: 45px;
  }

  .logo {
    height: 55px;
  }

  .top-bar {
    font-size: 0.8rem;
    padding: 8px 5px;
  }

  .top-bar-container {
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }

  .countdown {
    font-size: 0.95rem;
    padding: 2px 8px;
  }
}
