/* Page Loader Styles */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader .loader-content {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader .loader-gif {
  max-width: 200px;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-loader .outer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-left: 5px solid var(--main-color);
  border-right: 5px solid var(--main-color);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

.page-loader .middle {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border-left: 5px solid var(--secondary-color);
  border-right: 5px solid var(--secondary-color);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite reverse;
}

.page-loader .inner {
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  bottom: 60px;
  border-left: 5px solid #fff;
  border-right: 5px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

.page-loader .dot {
  position: absolute;
  top: 90px;
  left: 90px;
  right: 90px;
  bottom: 90px;
  background-color: var(--main-color);
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.presentation {
  position: relative;
  /* background: var(--secondary-color); */
}

.presentation .content {
  min-height: 90vh;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: start;
  align-items: center;
}

.presentation .content h1,
.presentation .content p {
  text-align: left;
  font-size: 5.6rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .presentation .content h1,
  .presentation .content p {
    font-size: 4.6rem;
    text-align: left;
  }
  .presentation .content {
    text-align: left;
    justify-content: center;
    padding: 0 2rem;
  }
}

@media screen and (max-width: 480px) {
  .presentation .content h1,
  .presentation .content p {
    font-size: 3.4rem;
    text-align: left;
  }
}

.presentation .content h1 span {
  color: var(--main-color);
}

.presentation .content p span span {
  color: var(--main-color);
}

.presentation .content .links {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 2rem;
}

/* mouse animation */

/* .scroll {
  align-self: center;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(100px);
  }
}

.scroll svg #wheel {
  animation: scroll ease 1.5s infinite;
}

.scroll p {
  margin-top: 10px;
  font-family: var(--main-font);
  font-size: 1.4rem;
} */

/* //sobre nosotros */
.wedo {
  padding: 5rem 0 0 0;
  /* background: #000; */
  color: #fff;
  position: relative;
  overflow: hidden;
}

.title-section {
  display: flex;
  align-items: center;
}

.title-section span.plus {
  padding-right: 4rem;
  font-weight: 100;
  font-size: smaller;
}

.wedo .characters,
.wedo .dots {
  color: #82d2bc;
  position: absolute;
  font-family: "Space Grotesk", "Courier New", Courier, monospace;
  font-size: 2rem;
  letter-spacing: 4.5px;
  /* position: absolute; */
      display: none;
}

.wedo .characters {
  position: absolute !important;
  bottom: -10px;
  top: auto;
  left: auto;
  right: 0;
  color: #82d2bc;
  font-weight: 400;
  z-index: 2;
  width: fit-content;
  text-align: right;
  white-space: nowrap;
}

.wedo .dots {
  position: absolute;
  bottom: -10px;
  left: -50px;
  right: auto;
}

.wedo .wedo-slider {
  position: relative;
  /* overflow: hidden; */
}

.wedo .wedo-slider .wedo-slides {
  position: relative;
}

.wedo .wedo-slider .wedo-slides .wedo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  /* min-height: 450px; */
}

.wedo .wedo-slider .wedo-slides .wedo-slide.is-active {
  opacity: 1;
  position: relative;
  /* para que ocupe espacio solo el activo */
}

.wedo .wedo-slider .wedo-slides .wedo-slide .wedo-span {
  display: block;
  font-family: var(--main-font);
  font-size: 11.4rem;
  padding: 0 2rem 0 0;
  line-height: 1.5;
  letter-spacing: -5px;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .wedo .wedo-slider .wedo-slides .wedo-slide .wedo-span {
    font-size: 8.4rem;
    padding: 2rem 0 2rem 0;
    line-height: 1.2;
    letter-spacing: -3px;
  }
}

@media screen and (max-width: 768px) {
  .wedo .wedo-slider .wedo-slides .wedo-slide .wedo-span {
    font-size: 6.4rem;
    padding: 2rem 0 2rem 0;
    line-height: 1.1;
    letter-spacing: -2px;
  }
}

@media screen and (max-width: 480px) {
  .wedo .wedo-slider .wedo-slides .wedo-slide .wedo-span {
    font-size: 3.8rem;
    /* padding: 1rem 0 1rem 0; */
    line-height: 1.1;
    letter-spacing: -1px;
  }
}

.wedo .wedo-slider .wedo-slides .wedo-slide .wedo-span:nth-child(1) {
  /* Estilos para el primer span */
}

.wedo .wedo-slider .wedo-slides .wedo-slide .wedo-span:nth-child(2) {
  text-align: right;
}

.wedo .wedo-slider .wedo-slides .wedo-slide .wedo-span:nth-child(3) {
}

/* Navegación como “dots” con títulos */
.wedo .wedo-slider .wedo-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 0.2rem;
  margin-top: 0.5rem;
  position: absolute;
  top: 45%;
  bottom: 50%;
  transform: translateY(-50%);
  right: auto;
  left: 0;
  z-index: 5;
  max-width: 25vw;
}

@media screen and (max-width: 1400px) {
  .wedo .wedo-slider .wedo-nav {
    position: static;
    margin-top: 1rem;
    transform: none;
  }
}

@media screen and (max-width: 768px) {
  .wedo .wedo-slider .wedo-nav {
    max-width: 100%;
    justify-content: start;
  }
}

.wedo .wedo-slider .wedo-nav .wedo-tab {
  text-decoration: none;
  color: #fff;
  font-family: sans-serif;
  font-size: 40px;
  border: none;
  padding: 2px 4px;
  position: relative;
  transition: all 0.5s;
  overflow: hidden;
  z-index: 1;
  font-size: 16px;
  background: none;
  font-size: 2.1rem;
  font-family: var(--tertiary-font);
  z-index: 5;
}
.wedo .wedo-slider .wedo-nav .wedo-tab:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #351435;
  z-index: -1;
  transform: translateX(-101%);
  transition: all 0.75s;
}

.wedo .wedo-slider .wedo-nav .wedo-tab:nth-of-type(4n + 1):before {
  background-color: var(--main-color);
}
.wedo .wedo-slider .wedo-nav .wedo-tab:nth-of-type(4n + 2):before {
  background-color: #ffff33;
}
.wedo .wedo-slider .wedo-nav .wedo-tab:nth-of-type(4n + 3):before {
  background-color: #c4ff00;
}

.wedo .wedo-slider .wedo-nav .wedo-tab:nth-of-type(4n + 4):before {
  background-color: #cfd0d1;
}

.wedo .wedo-slider .wedo-nav .wedo-tab:hover:before {
  transform: translateX(0);
}

.wedo .wedo-slider .wedo-nav .wedo-tab:hover {
  color: #351435;
  /* color: white; */
}

.wedo .wedo-slider .wedo-nav .wedo-tab.is-active:before {
  transform: translateX(0);
}

.wedo .wedo-slider .wedo-nav .wedo-tab.is-active,
.wedo .wedo-slider .wedo-nav .wedo-tab:focus-visible {
  color: #351435;
}

/* Responsive */
@media (max-width: 768px) {
  .wedo-slide {
    grid-template-columns: 1fr;
  }
}

/* Call to Action Button */
.wedo .call-to-action {
  text-align: left;
  margin-top: 4rem;
}

.wedo .call-to-action a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 2.1rem;
  border-bottom: 4px solid var(--main-color);
  padding-bottom: 4px;
  transition: all 0.3s ease;
  position: relative;
}

@media screen and (max-width: 480px) {
  .wedo .call-to-action a {
    font-size: 1.5rem;
  }
  .wedo .characters,
  .wedo .dots {
    display: none;
  }
}

.wedo .call-to-action a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f061";
  margin-left: 8px;
  color: white;
  transition: transform 0.3s ease;
}

.wedo .call-to-action a:hover {
  border-bottom-color: transparent;
  color: white;
}

.wedo .call-to-action a:hover::after {
  transform: translateX(4px);
}
.about-us {
  padding: 10rem 0;
  position: relative;
  /* background: #f6f6f6;
  color: #333; */
}

.about-us .video-container video {
  object-fit: cover;
  width: 100% !important;
  height: auto;
}

@media screen and (max-width: 768px) {
  .about-us .video-container video {
    height: 30vh;
    width: auto;
  }
}

.about-us .video-container {
  position: relative;
}

.about-us .video-container::after {
  background: rgba(0, 0, 0, 0.5) url(../img/extras/pattern-overlay.png) repeat;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.about-us .about-footer {
  margin-top: 50px;
}

.about-us .about-footer .text-out {
  /* font-family: var(--main-font); */
  /* font-size: 3.2rem; */
  /* line-height: 1.5; */
  flex: 1 1 100%;
  color: #686868;
  max-width: 90%;
}

.main-font {
  font-family: var(--main-font);
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .main-font {
    font-size: 1.8rem;
  }
}

.about-us .about-footer .stats {
  display: flex;
  flex-wrap: wrap;
}

.about-us .about-footer .stats .stat-item {
  flex: 1 1 calc(50% - 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 30px;
  position: relative;
}
.about-us .about-footer .stats .stat-item .character-number {
  font-size: 8.4rem;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.about-us .about-footer .stats .stat-item .stat-title {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .about-us .about-footer .stats .stat-item .character-number {
    font-size: 6.4rem;
  }
}

@media screen and (max-width: 480px) {
  .about-us .about-footer .stats .stat-item {
    flex: 1 1 100%;
  }
  .about-us .about-footer .stats .stat-item .character-number {
    font-size: 4.8rem;
  }
}

.about-us
  .about-footer
  .stats
  .stat-item:nth-child(odd):not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background-color: #686868;
}

@media screen and (max-width: 480px) {
  .about-us
    .about-footer
    .stats
    .stat-item:nth-child(odd):not(:last-child)::before {
    display: none;
  }
}

/* Partners marquee section */
.partnerships {
  padding: 5rem 0 5rem 0;
  position: relative;
  /* background: #f8f9fa; */
  overflow: hidden;
}

/* .partnerships::after {
  content: "";
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  width: 100vw;
  background-color: #fff;
  display: block;
} */

.partnerships .title {
  text-align: center;
  margin-bottom: 2rem;
}

.partnerships .description {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}

.marquee-track {
  display: flex;
  width: fit-content;
}

.marquee-left {
  animation: marquee-left 20s linear infinite;
}

.marquee-right {
  animation: marquee-right 20s linear infinite;
}

.scroll-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 0 20px;
  margin-right: 30px;
  min-width: 200px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.scroll-card img {
  width: 100%;
  border-radius: 8px;
}

.scroll-card:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

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

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Removed pause on hover - marquee continues running */

.success-cases {
  /* background: #fff;
  color: var(--dark-color); */
  position: relative;
  overflow-x: hidden;
}

.caso.card {
  border: 1px solid #e5e5e5;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  max-height: 600px;
  margin: 0 10px;
  border-radius: 15px;
  /* background: red; */
  /* min-height: 400px; */
  color: var(--dark-color);
}

.caso.card .card-footer {
  padding: 1rem;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: white;
}

.caso.card .card-footer .categories-div span {
  white-space: nowrap;
  display: inline-block;
  margin: 0 10px 10px 0;
}

.caso.card .card-footer .btn.btn-primary:hover {
  color: #fff !important;
  background: #000 !important;
  border-color: #000 !important;
}

.caso.card .card-footer .btn.btn-secondary:hover {
  background-color: #dfe0da;
  color: rgb(27, 27, 27);
}

.caso.card .img-card {
  width: 93%;
  margin: 10px auto 0;
  height: 203px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
}

.caso.card .card-body {
  min-height: 150px;
  padding: 2rem;
}
.caso.card .card-body .card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.caso.card .card-body .card-title a {
  font-size: 20px;
  line-height: 23px;
  font-family: var(--main-font);
  letter-spacing: 0.38px;
  font-weight: 600;
  text-decoration: none;
}

.caso.card .card-body .card_title a:hover {
  text-decoration: underline;
}

.caso.card .card-text {
  overflow: hidden;
  /* min-height: 150px; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.caso.card .card-text .description-short {
  font-family: var(--main-font);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  overflow: hidden;
  /* min-height: 150px; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.fig {
  color: white;
  position: relative;
  overflow: hidden;
}

.fig:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 93%;
  height: 203px;
  margin: 10px auto;
  height: 203px;
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 0.5;
  transform: translateY(100%);
  transition: all 0.25s;
  transition-delay: 0.25s;
}

.fig:hover:before {
  transform: translateY(0);
  transition-delay: 0s;
}

.fig .caption {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0 !important;
  right: 0 !important;
  width: 93%;
  margin: 10px auto;
  height: 203px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.25s ease;
}

.fig h3,
.fig h5 {
  margin: 0;
  letter-spacing: 1px;
}

.fig h3 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 20px;
}

.fig h5 {
  /* background-color: rgba(0, 0, 0, 0.75); */
  background: linear-gradient(270.01deg, #00ff0080 -99.74%, #ffff0080 99.99%);
  background: linear-gradient(
    270.01deg,
    var(--main-color),
    var(--secondary-color)
  );
  padding: 3px 10px;
  width: fit-content;
  margin: 0 auto;
}

.fig:hover .caption {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

.services {
  /* background: #fff; */
  padding: 6rem 0 6rem;
  /* color: var(--dark-color); */
}

.services .container {
  overflow: hidden;
  padding: 1rem;
}

.services .items {
  justify-content: center;
}
.section h3.title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
  color: rgb(51, 51, 51) !important;
  font-family: "Inter", sans-serif !important;
}

.services .box {
  position: relative;
  display: flex;
  margin: 25px auto;
  max-width: 1000px;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 15px;
  border: 1px solid rgb(230, 230, 230);
  height: 100%;
}

.services .box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.services .box .icon i {
  font-size: 10rem;
}

.services .box .content {
  padding: 40px;
  width: 100%;
  box-sizing: border-box;
  color: rgb(51, 51, 51) !important;
}


.services .box .content h4 {
  font-family: "Inter", sans-serif !important;
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 3.6rem;
}
.services .box .content h4 span {
  color: #f39200;
}

.services .box .content p {
  font-family: "Inter", sans-serif !important;
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 400;
  color: rgb(51, 51, 51) !important;
}

.services .box .content p span {
  font-weight: 900;
}

@media screen and (max-width: 1200px) {
  .services .box {
    margin: 10px 0;
    height: auto;
  }
  .services .box .icon {
    padding-bottom: 1rem;
  }
  
  .services .box .content h4 {
    margin-bottom: 30px;
    font-size: 1.7rem;
    text-align: center;
  }

  .services .box .content p {
    line-height: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 576px){
  .services .box .icon i {
  font-size: 5rem;
}
    .services .box .content{
    padding: 15px 10px;
  }
}

/* scrolling styles */
.animate {
  opacity: 0;
  filter: blur(5px);
  transition: 1s;
}

.animate.show-animate {
  opacity: 1;
  filter: blur(0px);
}

.animate-down {
  transform: translateY(100%);
}

.animate-down.show-animate {
  transform: translateY(0);
}

.animate-zoom {
  transform: scale(0.7);
}

.animate-zoom.show-animate {
  transform: scale(1);
}
.animate-up {
  transform: translateY(-100%);
}

.animate-up.show-animate {
  transform: translateY(0);
}
.animate-left {
  transform: translateX(-100%);
}
.animate-left.show-animate {
  transform: translateX(0);
}
.animate-right {
  transform: translateX(100%);
}
.animate-right.show-animate {
  transform: translateX(0);
}

.animate-3 {
  transform: rotate(30deg);
}

.animate-3.show-animate {
  transform: rotate(0deg);
}

.animate-4 {
  transform: translateX(100%) rotate(-90deg);
}

.animate-4.show-animate {
  transform: translateX(0) rotate(0deg);
}

/* p.animate {
  transition-delay: 0.2s;
} */

/* Enhanced Slick Slider Dots */
.slick-dots {
  /* position: absolute;
    bottom: 25px; */
  list-style: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 10;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: var(--main-color);
  border: 2px solid rgba(255, 255, 255, 0.6);
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.slick-dots li button:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

.slick-dots li button:focus {
  outline: none;
}

.slick-dots li.slick-active button {
  background: var(--main-color);
  border-color: var(--main-color);
  width: 24px;
  border-radius: 12px;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(130, 210, 188, 0.6);
}

.slick-dots li.slick-active button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* Alternative dark style for light backgrounds */
.slick-dots.dark-dots li button {
  background: rgba(0, 0, 0, 0.3);
}

.slick-dots.dark-dots li button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.slick-dots.dark-dots li.slick-active button {
  background: #351435;
  box-shadow: 0 2px 8px rgba(53, 20, 53, 0.4);
}

.success-cases .cta-section .btn-outline-light {
  border-radius: 10px;
}

.svg-object {
  margin: 0 auto;
  max-width: 900px;
  z-index: 1;
  padding-top: 3rem;
  position: relative;
}

/* .svg-object::before {
  content: "";
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  position: absolute;
  top: -47px;
  left: 0;
  right: 0;
  height: 50px;
  width: 100vw;
  background-color: #1c1c1c;
  display: block;
  z-index: -1;
  margin-left: -50vw;
  left: 50%;
} */

.svg-object #svg-object {
  width: 100%;
  height: auto;
  display: block;
}

.contact .container {
  overflow: hidden;
}

.contact .container .form-control {
  border-radius: 10px;
  padding: 20px 15px;
}

/* Contact Form 7 Spinner Fix */
.contact .wpcf7-form .wpcf7-spinner {
  position: absolute !important;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.contact .wpcf7-form .wpcf7-submit {
  position: relative;
  width: 100%;
  padding-right: 50px; /* Space for spinner */
}

.contact .wpcf7-form p {
  position: relative;
  margin-bottom: 1rem;
}

/* Ensure spinner doesn't break layout */
.contact .wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
}

/* Fix for submit button container */
.contact .wpcf7-form p:has(.wpcf7-submit) {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logos y Apoyos Section */

.logos-apoyos .title-center {
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.logos-apoyos .logos-flex {
  gap: 2rem;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.logo-link:hover {
  /* transform: translateY(-5px); */
  text-decoration: none;
  color: inherit;
}

.logo-image {
  max-width: 120px;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

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