/* Hero Section Styles */
:root {
  --gradient-primary: #0130ba;
  ;
  --gradient-secondary: #0130ba;
  --text-color: #ffffff;
  --text-dark: #2d3748;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


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


body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}


.navbar {
  background: #0130ba;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
}


.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1400px;
  padding: 0 2rem;
}


.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.5px;
}


.logo-highlight {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 4px;
}


.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}


.navbar-item {
  position: relative;
}


.navbar-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}


.navbar-link:hover {
  color: white;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}


.navbar-link.active {
  color: white;
  font-weight: 600;
}


.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(1);
  transition: var(--transition);
}


.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}


.navbar-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}


.navbar-search:focus-within {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}


.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 0.9rem;
  width: 150px;
  transition: var(--transition);
  padding: 0.3rem 0;
}


.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}


.search-input:focus {
  width: 180px;
}


.search-btn {
  background: white;
  color: #764ba2;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}


.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


.navbar-button {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.navbar-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.navbar-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}


.bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: var(--transition);
}


/* Media Queries para Responsividad */


@media screen and (max-width: 1200px) {
  .navbar-container {
    padding: 0 1.5rem;
  }
}


@media screen and (max-width: 992px) {
  .navbar-menu {
    gap: 1.5rem;
  }

  .navbar-actions {
    gap: 1rem;
  }
}


@media screen and (max-width: 768px) {
  .navbar {
    height: 75px;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: #0130ba;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transition: var(--transition);
  }

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

  .navbar-item {
    width: 100%;
    text-align: center;
  }

  .navbar-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }

  .navbar-link.active::after {
    width: 50%;
    left: 25%;
  }

  .navbar-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0130ba;
    ;
    padding: 1rem;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .navbar-search {
    width: 70%;
    max-width: 400px;
  }

  .search-input {
    width: 100%;
  }

  .search-input:focus {
    width: 100%;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


@media screen and (max-width: 576px) {
  .navbar-logo {
    font-size: 1.3rem;
  }

  .navbar-actions {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .navbar-search {
    width: 100%;
  }

  .navbar-button {
    width: 100%;
  }
}





.hero {
  background: #f8f9fa;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

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

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transition);
}

.hero-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: #0130ba;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 500px;
}

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

.hero-button {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.hero-button i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.hero-button.primary {
  background: #EC751B;
  color: white;
  box-shadow: 0 4px 15px rgba(41, 68, 184, 0.3);
}

.hero-button.primary:hover {
  background: #0130ba;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(41, 68, 184, 0.4);
}

.hero-button.secondary {
  background: #0130ba;
  color: white;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-button.secondary:hover {
  background: #EC751B;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #718096;
  margin-top: 0.5rem;
}

/* Features Section Styles */
.features {
  padding: 6rem 0;
  background: white;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title span {
  background: #0130ba;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #718096;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

.feature-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-description {
  color: #4a5568;
  line-height: 1.6;
}

/* Testimonials Section Styles */
.testimonials {
  padding: 6rem 0;
  background: #f8f9fa;
}

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

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  left: -10px;
  color: #e2e8f0;
  font-size: 3rem;
  z-index: 1;
}

.testimonial-text {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  font-style: italic;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.author-position {
  font-size: 0.9rem;
  color: #718096;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .hero-container {
    gap: 2rem;
  }

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

@media screen and (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    margin-top: 3rem;
    max-width: 600px;
  }

  .hero-image img {
    transform: none;
  }

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

@media screen and (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

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

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

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

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

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

  .section-subtitle {
    font-size: 1rem;
  }

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


/* Products Section Styles */
.products {
  padding: 6rem 0;
  background: #f8f9fa;
}

.products-tabs {
  margin-top: 3rem;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-button {
  background: transparent;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  position: relative;
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.tab-button:hover::after {
  width: 100%;
}

.tab-button.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(41, 68, 184, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

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

.product-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-image {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.product-image-2 {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-title {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-description {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 60px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.product-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #718096;
}

.product-button {
  display: block;
  text-align: center;
  background: #0130ba;
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.direct-falabella {
  display: block;
  text-align: center;
  background: #EC751B;
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.product-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(41, 68, 184, 0.3);
}

/* Clients Logos Styles */
.clients-logos {
  margin-top: 5rem;
  text-align: center;
}

.logos-title {
  font-size: 1.1rem;
  color: #718096;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.client-logo {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Contact Section Styles */
.contact {
  padding: 6rem 0;
  background: white;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EC751B;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-title {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-text {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-social .social-link {
  width: 45px;
  height: 45px;
  font-size: 1.1rem;
}

.contact-form {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-button {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background: #0130ba;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.form-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(41, 68, 184, 0.3);
}

.logos-slider {
  margin: 20px 0;
}

.logo-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 20px 10px !important;
  height: 120px !important;
  min-height: 120px !important;
  box-sizing: border-box !important;
}

.client-logo {
  max-width: 80% !important;
  max-height: 80px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  margin: 0 auto !important;
  display: block !important;
}

.client-logo:hover {
  filter: grayscale(0%);
}

.slick-prev,
.slick-next {
  color: #333;
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #333;
  font-size: 24px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .logos-grid {
    gap: 1.5rem;
  }

  .client-logo {
    max-width: 120px;
  }
}

@media screen and (max-width: 576px) {
  .tab-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tab-button {
    width: 100%;
    text-align: center;
  }

  .product-card {
    padding: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../img/footerbg.jpg');
  padding: 4rem 0 0;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

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

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

.links-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.5rem;
}

.links-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.links-list {
  list-style: none;
}

.links-list li {
  margin-bottom: 0.8rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-link:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.legal-link:hover {
  color: white;
}

.divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .links-group {
    margin-bottom: 1.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
  }

  .copyright {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding: 3rem 0 0;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}