/* Reset e Variáveis */
:root {
  --primary-color: #1b4b5a; /* Azul petróleo */
  --primary-dark: #123840; /* Azul petróleo mais escuro */
  --secondary-color: #2e7d6d; /* Verde musgo */
  --dark-color: #1f2a33; /* Cinza grafite bem escuro */
  --light-color: #f4f6f7; /* Branco gelo */
  --gray-color: #a0a6ab; /* Cinza médio */
  --dark-gray: #6e7479; /* Cinza escuro */
  --white: #ffffff; /* Branco puro */
  --black: #000000; /* Preto */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.5rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  gap: 1rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background-color: var(--dark-color);
  color: var(--white);
  border: 2px solid var(--primary-dark);
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-title {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: var(--primary-color);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 0.3rem;
  background-color: var(--primary-color);
  border-radius: 1rem;
}

.section-subtitle {
  font-size: 1.6rem;
  color: var(--gray-color);
  max-width: 60rem;
  margin: 0 auto;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 5rem;
  height: 5rem;
  border: 0.3rem solid rgba(46, 204, 113, 0.2);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99;
  text-decoration: none !important;
}

.whatsapp-float a {
  text-decoration: none;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 1rem 3rem rgba(46, 204, 113, 0.3);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 1.5rem 4rem rgba(46, 204, 113, 0.4);
}

.whatsapp-float i {
  font-size: 2.4rem;
  margin-right: 1rem;
}

/* HEADER - Versão isolada que não afeta outras seções */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 999;
  transition: all 0.3s ease;
  background-color: var(--dark-color);
}

/* Container específico para o header apenas */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Logo maior e alinhamento */
.header-logo {
  margin-left: auto;
  order: 2;
}

.header-logo img {
  height: 8rem;
  transition: var(--transition);
}

/* Menu à esquerda */
.header-nav {
  order: 1;
  margin-right: 3rem;
}

.header-nav ul {
  display: flex;
  gap: 3rem;
}

.header-nav li a {
  font-size: 1.6rem;
  color: var(--white);
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
}

/* Efeitos (mantidos do original) */
.header-scrolled .header-nav li a {
  color: var(--dark-color);
}

.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

/* Menu Mobile Original Funcional */
.mobile-menu {
  display: none;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  order: 1; /* Ícone à esquerda */
  z-index: 1000;
}

.header.scrolled .mobile-menu {
  color: var(--white);
}

/* Menu Mobile Aberto */
.navbar-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: var(--dark-color);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  z-index: 999;
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
}

.navbar-mobile.active {
  left: 0;
}

.navbar-mobile ul {
  flex-direction: column;
  gap: 2rem;
}

.navbar-mobile li a {
  color: var(--white);
  font-size: 1.8rem;
  padding: 1rem 0;
  display: block;
  border-bottom: 1px solid rgba(175, 171, 171, 0.05);
  text-decoration: none;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.no-scroll {
  overflow: hidden;
}
/* Responsivo */
@media (max-width: 992px) {
  .header-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-logo {
    order: 2;
    margin-left: 0;
    flex-grow: 1;
    text-align: center;
  }

  .header-logo img {
    height: 6rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 80rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.3)
    ),
    url("assets/image/banner-sp.jpg");
  background-size: cover;
  background-position: center calc(80% + 80px);
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-content {
  max-width: 60rem;
  color: var(--white);
}

.hero-title {
  font-size: 5.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--gray-color);
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  text-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 5rem;
}

.scroll-down {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  border: 0.2rem solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-3rem) translateX(-50%);
  }
  60% {
    transform: translateY(-1.5rem) translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

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

@media (max-width: 576px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }
}

/* Services Section */
.services-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.services-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 31, 40, 0.9);
  z-index: -1;
}

.services-section .section-title,
.services-section .section-subtitle {
  color: var(--white);
}

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

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1rem);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  transition: var(--transition);
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-1rem);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 7rem;
  height: 7rem;
  background-color: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.service-card p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--light-color);
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: var(--transition);
}

.service-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--white);
}

.service-link:hover i {
  transform: translateX(0.5rem);
}

/* About Section */
.about-section {
  padding: 10rem 0;
  background-color: var(--light-color);
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-content {
  flex: 1;
  background-color: var(--white);
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

.about-image {
  flex: 1;
  position: relative;
  align-self: stretch;
  min-height: 50rem;
}

.profile-image {
  width: 100%;
  height: 75%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.about-content .section-title::after {
  left: 0;
  transform: translateX(0);
}

.about-content p {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

.about-features {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 0.5rem;
}

.feature i {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.feature p {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: var(--dark-gray);
}

/* Responsivo */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .about-image {
    min-height: 0.5rem;
    width: 100%;
  }

  .about-content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 6rem 0;
  }

  .about-content {
    padding: 3rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Features Section */
.features-section {
  padding: 10rem 0;
  background-color: var(--light-color);
}

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

.feature-card {
  background-color: var(--white);
  padding: 4rem 3rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 100%;
  background-color: var(--dark-color);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-1rem);
}

.feature-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.feature-number {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(44, 62, 80, 0.05);
  position: absolute;
  top: 2rem;
  right: 3rem;
  line-height: 1;
  transition: var(--transition);
}

.feature-card:hover .feature-number {
  color: rgba(19, 37, 42, 0.1);
}

.feature-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 1.4rem;
  color: var(--gray-color);
  position: relative;
  z-index: 1;
}

/* Contact Section */
.contact-section {
  padding: 10rem 0;
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 5rem;
}

.contact-info {
  padding-right: 5rem;
}

.contact-info .section-header {
  text-align: left;
}

.contact-info .section-title::after {
  left: 0;
  transform: translateX(0);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-item i {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.info-item p {
  font-size: 1.4rem;
  color: var(--gray-color);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 5rem;
}

.social-links a {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--dark-color);
  transform: translateY(-0.5rem);
}

.contact-form {
  background-color: var(--light-color);
  padding: 5rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  background-color: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 15rem;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding: 8rem 0 0;
}

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

.footer-col h4 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 5rem;
  height: 0.2rem;
  background-color: var(--primary-color);
}

.footer-logo {
  height: 6rem;
  margin-bottom: 2rem;
}

.footer-col p {
  font-size: 1.4rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

.footer-col ul li {
  margin-bottom: 1.5rem;
}

.footer-col ul li a {
  font-size: 1.4rem;
  color: var(--gray-color);
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  transform: translateX(0.5rem);
}

.newsletter-form {
  display: flex;
  margin-top: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
  font-size: 1.4rem;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0 2rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
}

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

.footer-bottom p {
  font-size: 1.2rem;
  color: var(--gray-color);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 1.2rem;
  color: var(--gray-color);
  transition: var(--transition);
}

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

/* Responsivo */
@media (max-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .about-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 8rem;
    left: -100%;
    width: 80%;
    height: calc(100vh - 8rem);
    background-color: var(--white);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 3rem;
    transition: var(--transition);
  }

  .navbar.active {
    left: 0;
  }

  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .navbar ul li a {
    color: var(--dark-color);
  }

  .header.scrolled .navbar {
    top: 7rem;
    height: calc(100vh - 7rem);
  }

  .hero-title {
    font-size: 3.8rem;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .service-card {
    padding: 2rem;
  }

  .about-content {
    padding: 3rem;
  }

  .contact-form {
    padding: 3rem;
  }

  .whatsapp-float a span {
    display: none;
  }

  .whatsapp-float a {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float i {
    margin-right: 0;
  }
}

/* Seção Premium */
.premium-process-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a2a3a 0%, #0d1620 100%);
  color: #fff;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.premium-process-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Cabeçalho */
.premium-header {
  text-align: center;
  margin-bottom: 50px;
}

.premium-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.premium-title span {
  color: #4e9af1;
}

.premium-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

/* Indicadores */
.step-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.indicator {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.indicator.active {
  background: #4e9af1;
  color: white;
  border-color: #4e9af1;
  transform: scale(1.1);
}

.indicator::after {
  content: attr(data-step);
  position: absolute;
  bottom: -25px;
  font-size: 1rem;
  font-weight: bold;
  color: rgba(255,255,255,0.7);
}

.indicator.active::after {
  color: #4e9af1;
}

/* Passos */
.premium-steps {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.premium-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.premium-step.active {
  display: block;
}

.step-content {
  padding: 20px;
}

.step-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
}

.step-content h3 i {
  color: #4e9af1;
  font-size: 4rem;
}

.step-content p {
  font-size: 2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 800px;
  margin-left: 45px;
}

/* Animação */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 768px) {
  .premium-title {
    font-size: 2.2rem;
  }
  
  .premium-subtitle {
    font-size: 1.1rem;
  }
  
  .indicator {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .step-indicators {
    gap: 15px;
  }
  
  .premium-steps {
    padding: 25px;
  }
  
  .step-content h3 {
    font-size: 1.5rem;
  }
  
  .step-content p {
    font-size: 1rem;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .premium-process-section {
    padding: 60px 15px;
  }
  
  .step-indicators {
    flex-wrap: wrap;
  }
}