/* ========================================
   JUSTI SOLUÇÕES - CSS v3
   Bootstrap 5.3 + Custom Styling
   Cores: Roxo, Amarelo Ouro, Branco
   ======================================== */

:root {
  /* Cores Principais (roxo) */
  --color-primary: #3D15C3;        /* Roxo Principal */
  --color-primary-light: #5a32d6;  /* Roxo Claro */
  --color-accent: #f5a623;         /* Amarelo Ouro */
  --color-accent-dark: #d98500;    /* Laranja Escuro */
  --color-success: #27ae60;         /* Verde */
  --color-white: #ffffff;
  --color-light: #f8f9fa;
  --color-gray: #6c757d;
  --color-dark: #212529;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Fonts */
  --font-family-serif: 'Playfair Display', serif;
  --font-family-sans: 'Poppins', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-sans);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
}

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

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.highlight {
  color: var(--color-accent);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(26, 58, 82, 0.3);
}

.btn-secondary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background-color: #1ebc59;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  font-weight: 600;
  border: 2px solid var(--color-white);
}

.btn-white:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-white.secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-white.secondary:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ========================================
   TOP BAR
   ======================================== */

.top-bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.top-bar a:hover {
  color: var(--color-accent);
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  background-color: var(--color-white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  color: var(--color-primary);
  font-family: var(--font-family-serif);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--color-dark);
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 250px;
  height: 100vh;
  background-color: var(--color-primary);
  padding: 2rem 1rem;
  z-index: 101;
  overflow-y: auto;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav a {
  color: var(--color-white);
  font-weight: 500;
  font-size: 1.1rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(245, 166, 35, 0.2);
  color: var(--color-accent);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.hero-stat .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  z-index: 10;
}

.hero-floating-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.hero-floating-card h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.hero-floating-card span {
  color: var(--color-gray);
  font-size: 0.875rem;
}

.hero-floating-card .stars {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card-1 {
  bottom: 40px;
  left: -100px;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  top: 50px;
  right: -80px;
  animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Hero Decorative Elements */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decor.top-right {
  width: 400px;
  height: 400px;
  background-color: var(--color-accent);
  top: -100px;
  right: -100px;
}

.hero-decor.bottom-left {
  width: 300px;
  height: 300px;
  background-color: var(--color-accent);
  bottom: -50px;
  left: -50px;
}

@media (max-width: 768px) {
  .hero-decor.top-right {
    display: none;
  }

  .hero-decor.bottom-left {
    display: none;
  }
}

/* ========================================
   TICKER
   ======================================== */

.ticker {
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.ticker-item i {
  font-size: 0.5rem;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.ticker-track:hover {
  animation-play-state: paused;
}

/* ========================================
   SECTION TITLE
   ======================================== */

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title .subtitle {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.section-title h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-gray);
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */

.categories {
  position: relative;
  padding: 5rem 0;
  background-color: var(--color-light);
}

.categories-wrapper {
  position: relative;
  margin-top: 3rem;
}

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

/* ========== SCROLL HORIZONTAL ========== */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: var(--color-accent);
  color: var(--color-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.carousel-prev {
  left: -30px;
}

.carousel-next {
  right: -30px;
}

.categories-grid-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  padding: 1rem 0;
}

.category-card {
  background-color: var(--color-white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.category-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* ========================================
   COURSES SECTION
   ======================================== */

.courses {
  padding: 5rem 0;
  background-color: var(--color-white);
}

.courses-wrapper {
  position: relative;
  margin-top: 3rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.courses-grid-scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
}

.courses-grid-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.course-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-light);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  flex-shrink: 0;
}

.course-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.course-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 2rem;
  position: relative;
  text-align: center;
}

.course-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.course-badge {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-content h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.course-description {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.course-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.course-features i {
  color: var(--color-success);
  font-weight: bold;
}

.course-footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.course-footer .btn {
  flex: 1;
}

/* ========================================
   CONSULTORIA SECTION
   ======================================== */

.consultoria {
  padding: 5rem 0;
  background-color: var(--color-light);
}

.consultoria-wrapper {
  position: relative;
  margin-top: 3rem;
}

.consultoria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.consultoria-grid-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.consultoria-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--color-accent);
}

.consultoria-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.consultoria-card .icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.consultoria-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.consultoria-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products {
  padding: 5rem 0;
  background-color: var(--color-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.novo {
  background-color: var(--color-success);
  color: var(--color-white);
}

.product-badge.destaque {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.product-info {
  padding: 1.75rem;
}

.product-info h3 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.product-info p {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.product-footer {
  display: flex;
  gap: 1rem;
}

.product-footer .btn {
  flex: 1;
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */

.instagram-section {
  padding: 5rem 0;
  background-color: var(--color-light);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--color-white);
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  border: 3px solid var(--color-accent);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.instagram-link:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.05);
}

.instagram-link i {
  font-size: 1.5rem;
}

.instagram-card {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--color-light);
}

.instagram-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 58, 82, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-card .overlay i {
  font-size: 2rem;
  color: var(--color-accent);
}

.instagram-card:hover .overlay {
  opacity: 1;
}

/* INSTAGRAM GRID LAYOUT */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1200px) {
  .instagram-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 992px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background-color: rgba(245, 166, 35, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.cta-content h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  padding: 5rem 0;
  background-color: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--color-light);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--color-accent);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.testimonial-author .info h4 {
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.testimonial-author .info span {
  color: var(--color-gray);
  font-size: 0.85rem;
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter {
  padding: 5rem 0;
  background-color: var(--color-light);
  text-align: center;
}

.newsletter h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.newsletter p {
  color: var(--color-gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
  background-color: var(--color-white);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--font-family-sans);
}

.newsletter-form input::placeholder {
  color: var(--color-gray);
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 80px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-column h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links, .footer-contact {
  list-style: none;
}

.footer-links li, .footer-contact li {
  margin-bottom: 1rem;
}

.footer-links a, .footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--color-accent);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
}

.footer-contact i {
  width: 20px;
  text-align: center;
  margin-top: 0.25rem;
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  z-index: 50;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background-color: #1ebc59;
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 50;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-5px);
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.6s ease-out forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-left {
  animation: reveal-left 0.6s ease-out forwards;
}

@keyframes reveal-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal-right {
  animation: reveal-right 0.6s ease-out forwards;
}

@keyframes reveal-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }

  .hero {
    overflow: hidden;
    padding: 3rem 0;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1;
  }

  .card-1 {
    display: none;
  }

  .card-2 {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .mobile-nav-overlay.active {
    display: block !important;
  }

  .mobile-nav.active {
    display: flex !important;
  }

  .mobile-nav-overlay {
    display: none !important;
  }

  .mobile-nav {
    flex-direction: column;
    display: none !important;
  }

  .header .container {
    gap: 0.5rem;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .btn-whatsapp {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid-scroll {
    grid-template-columns: repeat(1, 1fr) !important;
    overflow-x: visible !important;
    gap: 1rem;
    padding: 0 !important;
    scroll-behavior: auto;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    display: none !important;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid-scroll {
    grid-template-columns: 1fr !important;
    overflow-x: visible !important;
    gap: 1rem;
    padding: 0 !important;
    scroll-behavior: auto;
  }

  .course-card {
    min-width: auto !important;
    flex-shrink: 1;
  }

  .consultoria-grid {
    grid-template-columns: 1fr;
  }

  .consultoria-grid-scroll {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    padding: 0 !important;
    overflow-x: visible !important;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    font-size: 0.75rem;
  }

  .top-bar-right {
    flex-direction: row;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  .top-bar {
    padding: 0.5rem 0;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 10px;
  }

  .newsletter-form button {
    border-radius: 10px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-image-wrapper {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 1;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat .number {
    font-size: 1.5rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .categories-grid {
    gap: 1rem;
  }

  .category-card {
    padding: 1.5rem;
  }

  .category-icon {
    font-size: 2rem;
  }

  .product-card {
    margin-bottom: 1rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 20px;
  }
}

/* ===== TURMAS GALLERY SECTION ===== */
.turmas-gallery {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(245, 166, 35, 0.03) 100%);
}

.turmas-gallery .section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.turmas-gallery .subtitle {
  color: var(--color-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.turmas-gallery .section-title h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.turmas-gallery .section-title p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.turmas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.turma-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--color-accent);
}

.turma-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.turma-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: var(--color-light);
}

.turma-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.turma-card:hover .turma-image img {
  transform: scale(1.08);
}

.turma-content {
  padding: 2rem;
}

.turma-content h3 {
  color: var(--color-primary);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.turma-date {
  color: var(--color-accent);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.turma-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.turma-highlight {
  background-color: #fffbf0;
  border-left: 4px solid var(--color-accent);
  padding: 1rem;
  border-radius: 6px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* TURMAS RESPONSIVE */
@media (max-width: 1024px) {
  .turmas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .turmas-gallery {
    padding: 3rem 0;
  }

  .turmas-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .turmas-gallery .section-title h2 {
    font-size: 2rem;
  }

  .turma-card {
    border-top-width: 3px;
  }

  .turma-content {
    padding: 1.5rem;
  }

  .turma-content h3 {
    font-size: 1.15rem;
  }

  .turma-image {
    height: 240px;
  }
}

/* ========================================
   BANNER TREINAMENTO FULLWIDTH
   ======================================== */

.training-banner-full {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0080 0%, #3D15C3 40%, #1a0080 100%);
  overflow: hidden;
  text-align: center;
  padding: 5rem 2rem;
}

.training-banner-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(245,166,35,0.05)" stroke-width="1"/></svg>');
  background-size: 120px 120px;
  opacity: 0.4;
  z-index: 1;
}

.training-banner-full::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.training-banner-overlay {
  display: none;
}

.training-banner-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: #fff;
  animation: fadeInUp .8s ease;
}

.training-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(245,166,35,0.2);
  border: 1.5px solid rgba(245,166,35,0.5);
  color: var(--color-accent);
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.training-banner-content h2 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.training-banner-content h2 span {
  color: var(--color-accent);
  display: block;
}

.training-banner-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.training-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,166,35,.5);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 600;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.training-banner-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 2rem;
}

.tbi-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}

.tbi-item i {
  color: var(--color-accent);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .training-banner-full {
    min-height: 420px;
    padding: 3.5rem 1.5rem;
  }
  .training-banner-content h2 {
    font-size: 1.9rem;
  }
  .training-banner-info {
    gap: 1rem;
  }
}

/* ========================================
   GALERIA DE TREINAMENTOS
   ======================================== */

.gallery-section {
  padding: 5rem 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-item.gallery-large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,21,195,.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .25rem;
}

.gallery-info span {
  color: var(--color-accent);
  font-size: .82rem;
  font-weight: 500;
}

.gallery-overlay > i {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 1.25rem;
  opacity: .8;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item.gallery-large {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.gallery-large {
    grid-column: span 1;
  }
}

/* ========================================
   BLOG SECTION
   ======================================== */

.blog-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(61,21,195,.13);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 50px;
  letter-spacing: .5px;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--color-gray);
  font-size: .78rem;
  margin-bottom: .85rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.blog-meta i {
  color: var(--color-accent);
}

.blog-content h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: .75rem;
  line-height: 1.4;
}

.blog-content p {
  font-size: .9rem;
  color: var(--color-gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: .9rem;
  transition: gap .25s ease, color .25s ease;
  margin-top: auto;
}

.blog-link:hover {
  color: var(--color-accent);
  gap: .7rem;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   GOOGLE MAPS SECTION
   ======================================== */

.maps-section {
  width: 100%;
}

.maps-header {
  background: var(--color-primary);
  color: #fff;
  padding: 1.1rem 2rem;
  text-align: center;
}

.maps-header h3 {
  color: #fff;
  font-size: 1.15rem;
  font-family: var(--font-family-sans);
  font-weight: 600;
  letter-spacing: .5px;
}

.maps-header h3 i {
  color: var(--color-accent);
  margin-right: .4rem;
}

.maps-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  filter: saturate(.9) contrast(1.05);
}

/* ========================================
   FOOTER CONTACT BG
   ======================================== */

.footer-contact-bg {
  position: relative;
  background: linear-gradient(120deg, #1a0060 0%, #3D15C3 50%, #5a32d6 100%);
  padding: 4rem 0;
  overflow: hidden;
}

.footer-contact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(245,166,35,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,166,35,.1) 0%, transparent 50%);
  z-index: 1;
}

.footer-contact-overlay {
  display: none;
}

.footer-contact-bg .container {
  position: relative;
  z-index: 2;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.fcg-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: background .3s ease, transform .3s ease;
}

.fcg-item:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-4px);
}

.fcg-item > i {
  font-size: 1.85rem;
  color: var(--color-accent);
  min-width: 36px;
  text-align: center;
}

.fcg-item h4 {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-family: var(--font-family-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .3rem;
}

.fcg-item a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  transition: color .25s;
}

.fcg-item a:hover {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact-bg {
    padding: 2.5rem 0;
  }
}
