html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  border-bottom: none;
  box-shadow: none;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .logo-container {
  display: flex;
  align-items: center;
}
.main-header .logo-container img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-header .desktop-nav {
  display: flex;
  gap: 32px;
}
.main-header .desktop-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}
.main-header .desktop-nav a:hover {
  color: #E60000;
}
.main-header .header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-header .header-actions .btn {
  padding: 10px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.main-header .header-actions .btn.btn-login {
  background-color: #191919;
  color: #fff;
  border: 1px solid #191919;
}
.main-header .header-actions .btn.btn-login:hover {
  background-color: #374151;
  border-color: #374151;
}
.main-header .header-actions .btn.btn-whatsapp {
  background-color: #fff;
  color: #191919;
  border: 1px solid #d1d5db;
}
.main-header .header-actions .btn.btn-whatsapp:hover {
  background-color: #f3f4f6;
}
.main-header .header-actions .btn.btn-whatsapp i {
  font-size: 16px;
}
.main-header .mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}
.main-header .mobile-toggle:hover {
  color: #E60000;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 30px 5% 50px;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - 66px);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.active {
  display: flex;
  -webkit-animation: slideDown 0.3s ease forwards;
          animation: slideDown 0.3s ease forwards;
}
.mobile-menu .mobile-menu-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
  align-items: center;
}
.mobile-menu .mobile-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}
.mobile-menu .mobile-nav a:hover {
  color: #E60000;
}
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 80%;
  max-width: 280px;
}
.mobile-menu .mobile-actions .btn {
  width: 50%;
  justify-content: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.mobile-menu .mobile-actions .btn.btn-login {
  background-color: #191919;
  color: #fff;
}
.mobile-menu .mobile-actions .btn.btn-login:hover {
  background-color: #374151;
}
.mobile-menu .mobile-actions .btn.btn-whatsapp {
  background-color: #fff;
  color: #191919;
  border: 1px solid #d1d5db;
  gap: 8px;
}
.mobile-menu .mobile-actions .btn.btn-whatsapp i {
  font-size: 16px;
}
.mobile-menu .mobile-actions .btn.btn-whatsapp:hover {
  background-color: #f3f4f6;
}
@-webkit-keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main {
  min-height: calc(100vh - 200px);
}
.main-footer {
  padding: 60px 5% 30px;
  background-color: #fff;
}
.main-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.main-footer .footer-top .footer-logo img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-footer .footer-top .footer-nav {
  display: flex;
  gap: 32px;
}
.main-footer .footer-top .footer-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}
.main-footer .footer-top .footer-nav a:hover {
  color: #E60000;
}
.main-footer hr {
  border: none;
  border-top: none;
  margin-bottom: 30px;
}
.main-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-footer .footer-bottom .copyright {
  font-size: 14px;
  color: #6b7280;
}
.main-footer .footer-bottom .social-links {
  display: flex;
  gap: 30px;
}
.main-footer .footer-bottom .social-links a {
  color: #9ca3af;
  font-size: 20px;
  transition: color 0.3s ease;
}
.main-footer .footer-bottom .social-links a:hover {
  color: #E60000;
}
.mobile-socials {
  display: none;
}
@media (max-width: 1280px) {
  .main-header .desktop-nav {
    gap: 20px;
  }
}
@media (max-width: 1077px) {
  .main-header .desktop-nav,
  .main-header .header-actions {
    display: none;
  }
  .main-header .mobile-toggle {
    display: block;
  }
  .desktop-socials {
    display: none !important;
  }
  .main-footer {
    padding-top: 40px;
  }
  .main-footer .footer-top {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
  }
  .main-footer .footer-top .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    width: 50%;
  }
  .main-footer .footer-top .mobile-socials {
    display: flex;
    gap: 15px;
  }
  .main-footer .footer-top .mobile-socials a {
    color: #9ca3af;
    font-size: 20px;
    transition: color 0.3s ease;
  }
  .main-footer .footer-top .mobile-socials a:hover {
    color: #E60000;
  }
  .main-footer .footer-bottom {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
  }
}
.swal2-popup {
  font-family: 'Inter', 'Roboto', sans-serif !important;
  border-radius: 20px !important;
}
.swal2-popup .swal2-title {
  font-family: 'Agrandir', sans-serif !important;
  font-weight: 800 !important;
  color: #333 !important;
}
.swal2-popup .swal2-confirm {
  background-color: #E60000 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  outline: none !important;
  box-shadow: none !important;
}
.swal2-popup .swal2-cancel {
  border-radius: 10px !important;
  font-weight: 600 !important;
  outline: none !important;
  box-shadow: none !important;
}

