/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #ffffff;
  --default-color: #555555;
  --heading-color: #37373f;
  --accent-color: #106eea;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #2c4964;
  --nav-hover-color: #1977cc;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2c4964;
  --nav-dropdown-hover-color: #1977cc;
}

.light-background {
  --background-color: #f1f7fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*-- General Styling & Shared Classes --*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
/*-- End General Styling & Shared Classes --*/

/*-- Preloader --*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*-- End Preloader --*/

/*-- Scroll Top Button --*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: #faba00;
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*-- Disable aos animation delay on mobile devices --*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*-- Global Header --*/
/*-- Topbar --*/
.topbar {
  height: 40px;
  color: #fff;
  font-size: 13px;
  padding: 0;
  background: #282329;
  transition: all 0.5s;
}
@media (max-width: 767.98px) {
  .topbar {
    display: none !important;
  }
}
.topbar-scrolled {
  top: -40px;
}
.topbar .contact-info a {
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}
.topbar .contact-info a:hover {
  color: #faba00;
  text-decoration: none;
}
.topbar .contact-info i {
  padding-right: 4px;
  margin-left: 15px;
}
.topbar .contact-info i:first-child {
  margin-left: 0;
}
/*-- End topbar --*/

/*-- Header --*/
.header {
  color: #fff;
  top: 0px;
  vertical-align: middle;
  background-color: #ff8200;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}
.header .branding {
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0;
}
@media (max-width: 767.98px) {
  .header .branding {
    height: 60px !important;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .navmenu {
    order: 3;
  }
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
/*-- Header End --*/

/*-- Navigation Menu --*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    padding-top: 25px;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }
  .navmenu>ul>li:last-child {
    padding-right: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 15px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
  }
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
    font-weight: 500;
  }
}
/*-- Desktop Navigation End --*/

/* Mobile Navigation */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    position: absolute; 
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    outline: none !important;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    transform: translateY(-50%) rotate(45deg);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }
.navmenu ul {
  display: none;
  list-style: none;
  position: fixed;
  top: 60px;
  right: 20px;
  width: auto;
  padding: 15px;
  margin: 0;
  border-radius: 6px;
  border: 1px solid rgba(128, 128, 128, 0.1);
  background-color: #E6F0F8;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.navmenu a,
.navmenu a:focus {
  color: #333;
  display: flex;
  padding: 0px 20px;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #106eea;
    font-size: 18px;
    font-weight: 700;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
}
/*-- Mobile Navigation End --*/

/*-- Global Sections --*/
section,
.section {
  color: var(--default-color);
  padding: 40px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  background-image: linear-gradient(to bottom, #f1f7fc, #FFF);
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  section,
  .section {
    scroll-margin-top: 56px;
    padding: 40px 0 0 0 !important;
  }
}
/*-- # Global Section Titles --*/
.section-title {
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}
.section-title span {
  color: #106eea;
}
.section-title::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #ccc;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #106eea;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-sub-title {
  color: #ccc;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

section .box {
  position: relative;
  padding: 26px;
  border-top: 1px solid #dedede;
  background: #fff;
}
@media (max-width: 992px) {
  section .box {
    padding: 20px;
  }
}
section .box::before,
section .box::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, #dedede, #fff);
}
section .box::before {
  left: 0;
}
section .box::after {
  right: 0;
}

.section h2 {
  color: #37517e;
  font-size: 32px;
  font-weight: 700;
}
section h3 {
  font-weight: 600;
}
@media (max-width: 992px) {
  section h3 {
    font-weight: 600;
    text-align: justify !important;
  }
}
section h4 {
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  section h4 {
    text-align: center !important;
  }
}
section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6; 
  text-align: justify;
}
@media (max-width: 992px) {
  section p {
    font-size: 17px !important;
  }
}

.cta-btn {
  color: #fff;
  font-size: 14px;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #106eea;
  background: #106eea;
  border-radius: 50px;
  transition: 0.3s;
}
.cta-btn:hover {
  color: #fff;
  border: 2px solid #faba00;
  background: #faba00;
}
@media (max-width: 992px) {
  .cta-btn {
    border: 2px solid #106eea;
    background: #106eea;
  }
  .cta-btn:hover {
    color: #fff;
    border: 2px solid #faba00;
    background: #faba00;
  }
}
.cta-btn2 {
  color: #fff;
  font-size: 14px;
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: 2px solid #106eea;
  background: #106eea;
  border-radius: 50px;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.cta-btn2:hover {
  color: #fff;
  border: 2px solid #faba00;
  background: #faba00;
}
@media (max-width: 992px) {
  .cta-btn2 {
    border: 2px solid #106eea;
    background: #106eea;
  }
  .cta-btn2:hover {
    color: #fff;
    border: 2px solid #faba00;
    background: #faba00;
  }
}
/*-- End Global Sections --*/

/*-- # Hero Section --*/
.hero {
  width: 100%;
  min-height: calc(100vh - 112px);
  padding: 80px 0;
  display: flex;
  align-items: center;
  background: url("../img/hero-bg.webp") center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .hero {
    padding: 60px 0;
    background: url("../img/hero-bg-2.webp") center center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
}
.hero .container {
  position: relative;
  vertical-align: middle;
  z-index: 3;
}
.hero .box2 {
  padding-right: 30px;
}
@media (max-width: 768px) {
  .hero .box2 {
  padding-right: 12px;
  }
}

@media (max-width: 768px) {
  .hero .row {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .hero .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.hero h1 {
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .hero h1 {
    text-align: center;
  }
}
.hero h5 {
  color: #fff;
  text-align: justify;
  padding-bottom: 40px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .hero h5 {
    line-height: normal;
  }
}
@media (max-width: 992px) {
  .hero .hero-button-container {
    margin-bottom: 30px;
  }
}
.hero span {
  color: #106eea;
}
/*-- Hero Section End --*/

/* hero form */
.hero .error,
.hero .success {
  display: none;
  color: #fff;
  text-align: justify;
  padding: 13px 15px;
  border-radius: 6px;
  background: #009900;
  margin-bottom: 0px;
}
.hero .error {
  background: #ff3300;
}

.hero .form-wrapper {
  padding: 20px 20px 0px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 100;
}
@media (max-width: 768px) {
  .hero .form-wrapper {
    padding: 25px 15px 0px 15px;
    width: calc(100% - 20px);
    margin: 0 auto 30px auto;
  }
}

.hero .form-title {
  color: #fff;
  text-align: justify;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero .form-control {
  color: #fff !important;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #888;
  border-radius: 6px;
  padding: 12px 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .hero .form-control {
    font-size: 18px !important;
  }
}
.hero .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic !important;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero input.form-control:focus {
  color: #fff !important;
}
.hero .form-control:hover {
  border: 1px solid #aaa;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.hero .form-control:focus {
  color: #444 !important;
  font-style: normal;
  border: 1px solid #ccc;
  box-shadow: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.hero .form-check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero .form-check label {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero .form-check-input {
  margin-top: 0;
  border: 1px solid #666;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.hero .form-check-input:hover {
  box-shadow: none;
}
.hero .form-check-input:checked {
  background-color: #106eea;
  border-color: #106eea;
  box-shadow: none;
}
.hero .form-label {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
  padding: 10px;
  text-align: justify;
}
/* End hero form */

/*-- Clients Section --*/
.clients.section {
  padding-top: 20px;
  padding-bottom: 20px;
}
.clients .swiper-slide img {
  max-width: 80%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.clients .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

@media (max-width: 767px) {
  .clients {
    display: none;
  }
}
/*-- Clients Section End --*/

/*-- About Us Section --*/
.about .img {
  border-radius: 8px;
  overflow: hidden;
}
.about .img img {
  transition: 0.6s;
}
.about .details {
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.5s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.14);
}
.about .details .icon {
  position: absolute;
  color: #fff;
  font-size: 32px;
  top: -36px;
  left: calc(50% - 36px);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #0072bb;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 0.4s;
}
.about .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}
.about .details p {
  margin-bottom: 0;
}
.about .about-item:hover .details .icon {
  background: #fff;
  color: #0072bb;
  border-color: #0072bb;
}
.about .about-item:hover .img img {
  transform: scale(1.2);
}
/*-- End About Section --*/

/*-- Services Section --*/
.services-content h3 {
  font-weight: 700;
  font-size: 26px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  display: flex;
  align-items: flex-start; 
  margin-bottom: 1.5rem;
}

ul li i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 32px;
  color: #fff;
  background-color: #0072bb;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  border-color: #0072bb;
  border-width: 0px;
  margin-right: 15px;
  line-height: 0;
  padding: 0.75rem;
}
/*-- End Services Section --*/

/*-- Call To Action Section --*/
.call-to-action {
  padding: 100px 0;
  position: relative;
  clip-path: inset(0);
}
.call-to-action .container {
  position: relative;
  z-index: 3;
}
.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.call-to-action:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.call-to-action h4 {
  font-weight: 500;
  color: #fff;
  text-align: left;
}
.call-to-action p {
  color: #fff;
  text-align: justify;
}
.call-to-action h4 {
  font-weight: 500;
  color: #fff !important;
  text-align: left;
  margin-bottom: 0;
}
/*-- Hide Call To Action on Mobile --*/
@media (max-width: 767px) {
  #call-to-action {
    display: none;
  }
}
/*-- Call-To-Action End --*/

/*-- # Contact Section --*/
.contact .info-item {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  text-align: center;
  gap: 0;
  height: 100%;
}
@media (max-width: 768px) {
  .contact .info-item {
    margin-inline: 20px;
  }
}

.contact .info-item i {
  font-size: 38px;
  line-height: 1;
  color: #106eea;
  margin-bottom: 15px; /* Consistent spacing after icon */
}
.contact .info-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0; /* Add consistent bottom margin */
  padding: 0;
}

/* Make address behave like p */
.contact .info-item address {
  margin: 0;
  font-style: normal;
}
.contact .info-item p {
  margin: 0;
}
.contact a {
  color: #999;
}
.contact a:hover {
  color: #333;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .box-none {
    display: none;
  }
}
.whatsapp-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Sección del formulario */
/*Error/Success*/
.contact .error,
.contact .success {
  display: none;
  color: #fff;
  padding: 13px 15px;
  border-radius: 6px;
  background: #009900;
  margin-left: 12px;
  margin-right: 12px;
  width: calc(100% - 24px);
}
.contact .error {
    background: #ff3300;
}

.contact .form-container {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 0px !important;
  border: none;
  position: relative;
}
@media (max-width: 768px) {
  .contact .form-container {
    padding: 20px !important;
  }
}
.contact .form-control {
  font-size: 16px;
  color: #444 !important;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px 15px 12px 45px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .contact .form-control {
    font-size: 18px !important;
  }
}
.contact .form-control:hover {
  border: 1px solid #106eea;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.contact .form-control:focus {
  color: #444 !important;
  font-style: normal;
  border: 2px solid #106eea;
  box-shadow: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.contact .form-control::placeholder {
  color: #999;
  font-style: italic !important;
}
@media (max-width: 768px) {
  .contact .form-control::placeholder {
    font-size: 17px !important;
  }
}
.contact .form-group .input-with-icon {
  position: relative;
}
.contact .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #0072bb;
  font-size: 18px;
  z-index: 10;
}

.contact .form-check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.contact .form-check label {
  font-size: 15px;
  color: #777;
}
.contact .form-check-input {
  margin-top: 0;
  border: 1px solid #666 !important;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.contact .form-check-input:hover {
  box-shadow: none;
}
.contact .form-check-input:checked {
  background-color: #106eea;
  border-color: #106eea;
  box-shadow: none;
}
.contact .form-label {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
  padding: 10px;
  text-align: justify;
}
/*-- # End Contact Section --*/

/*-- # List Section --*/
.list ul {
    list-style: none; 
    padding: 0;       
    margin: 0;        
    margin-left: 20px; 
    margin-bottom: 20px;
}

.list ul li {
    position: relative; 
    padding-left: 25px; 
    margin-bottom: 6px; 
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: justify;
}

.list ul li::before {
    content: "";          
    position: absolute;   
    left: 0;
    top: 10px;            
    width: 6px;           
    height: 6px;          
    background-color: #000; 
    border-radius: 50%;   
}
/*-- # End List Section --*/

/*-- # Foot Section --*/
@media (max-width: 768px) {
  .foot {
    display: none;
  }
}

.foot p {
  font-size: 15px;
  color: #999;
}

/* Estilos para el menú */
.foot-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.foot-nav ul li {
  display: inline-flex;
}

.foot-nav ul li a {
  color: #999;
  position: relative;
  text-decoration: none;
  padding: 5px 10px; 
}

.foot-nav ul li a:hover {
  color: #333;
  transition: all 0.3s ease;
}

a {
  color: #999;
  position: relative;
}

a:hover {
  color: #333;
  text-decoration: none;
  transition: all 1s;
}

/*-- End Foot Section --*/

/*-- # Footer Section --*/
#footer {
  font-size: 14px;
  padding: 0 0 30px 0;
  background: #333;
  text-align: justify;
}