@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-BoldItalic.woff2') format('woff2'),
      url('../fonts/DMSans-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Italic.woff2') format('woff2'),
      url('../fonts/DMSans-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2'),
      url('../fonts/DMSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-MediumItalic.woff2') format('woff2'),
      url('../fonts/DMSans-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans Bold';
  src: url('../fonts/DMSans-Bold.woff2') format('woff2'),
      url('../fonts/DMSans-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2'),
      url('../fonts/DMSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}




/* Fonts */
:root {
  --default-font: "DM Sans";
  --heading-font: "DM Sans";
  --nav-font: "DM Sans";
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #212529;
  --default-color-rgb: 33, 37, 41;
  --primary-color: #db7410;
  --primary-color-rgb: 188, 115, 20;
  --secondary-color: #32353a;
  --secondary-color-rgb: 50, 53, 58;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #3a3939;
  --nav-hover-color: #db7410;
  --nav-dropdown-color: #3a3939;
  --nav-dropdown-hover-color: #db7410;
  --nav-dropdown-background-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: rgba(var(--primary-color-rgb), 0.7);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--secondary-color);
  font-family: var(--heading-font);
}

section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 70px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 45px;
  font-weight: bolder !important;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary-color);
}

.page-title nav {
  background-color: rgba(var(--default-color-rgb), 0.05);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  padding-left: 0;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: rgba(var(--default-color-rgb), 0.3);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo img {
  max-height: 35px;
  height: 35px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--secondary-color);
}

.header .logo span {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--primary-color);
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  font-size: 12px;
    text-transform: uppercase;
    font-weight: 600 !important;
    letter-spacing: .5px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: rgba(var(--primary-color-rgb), 0.85);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
    display: flex;
    justify-content: flex-end;
  }
}

/* Global Header on page scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --secondary-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #db7410;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
------------------------------*/
section {
  scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
  section {
    scroll-margin-top: 66px;
  }
}

/* Home Page Custom Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 1);
  --secondary-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.515);
  --nav-hover-color: #ffffff;
}

/* Home Page Custom Header on page scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --secondary-color: #444444;
  --nav-color: #444444;
  --nav-hover-color: #db7410;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    width: 100%;
    padding: 0;
  }

  .navmenu ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: black;
    padding: 8px 15px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600 !important;
    letter-spacing: .5px;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: black;
  }

  /* Efecto de subrayado progresivo al hacer hover */
.navmenu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.navmenu li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--nav-dropdown-hover-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.navmenu li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Subrayado para la clase active */
.navmenu li a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: black;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
    list-style: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: bolder;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(var(--primary-color-rgb), 0.1);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--primary-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--primary-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul,
  .navmenu .megamenu ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul,
  .navmenu .megamenu ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active,
  .navmenu .megamenu>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background: #075e54;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #f4f4f4;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--secondary-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer-links h4,
.footer-contact h4 {
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px; /* Ajusta este valor para la separación */
    width: 100%;
    height: 3px; /* Grosor de la línea */
    background-color: var(--nav-hover-color); /* Color de la línea */
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 40px;
  height: 40px;
  /* border-radius: 50%; */
  /* border: 1px solid rgba(var(--default-color-rgb), 0.5); */
  font-size: 16px;
  color: black;
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer .contact-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #000;
  color: white;
  background-color: #000;
}

.footer h4 {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #000;
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(var(--default-color-rgb), 0.05);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.logo_footer {
  width: 200px;
}




























/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
#init-section h2{
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 20px;
}

#init-section h4{
  /* font-size: 60px; */
  font-weight: 600;
  margin-bottom: 20px;
}

#init-section a{
  padding: 8px 15px;
  font-weight: 100;
  border: 2px solid white;
  color: white;
  margin-bottom: 20px;
  transition: .3s ease-in-out;
}

#init-section a:hover{
  background: #db7410;
  border: 2px, solid #db7410;
  color: white;
}

.float-social-media {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;

}
.float-social-media li{
  margin-bottom: 20px;
}
.float-social-media li a .icon{
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #ffffff;
  transition: .3s;
  color: rgba(0, 0, 0, 0.5);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-social-media li a:hover .facebook {
  background: #3b5998;
  color: rgba(255, 255, 255, 1);
  transition: .3s;
}
.float-social-media li a:hover .instagramn {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: rgba(255, 255, 255, 1);
  transition: .3s;
}
.float-social-media li a:hover .linkedin {
  background: #0e76a8;
  color: rgba(255, 255, 255, 1);
  transition: .3s;
}
.float-social-media li a .icon i {
  transition: .1;
  color: rgba(0, 0, 0, 0.5);
}
.float-social-media li a:hover .icon i {
  transition: .1;
  color: #fff !important;
}


/* About Section - Home Page
------------------------------*/
.about {
  --background-color: #f2efeb;
}

.about .content{
  height: 100%;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: rgba(var(--primary-color-rgb), 0.05);
  color: var(--primary-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 600;
  font-size: 45px;
}

.about .content p {
  font-size: 20px;

}

.about .content .read-more {
  background: var(--default-color) !important;
  color: var(--contrast-color) !important;
  font-family: var(--heading-font) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  letter-spacing: 1px !important;
  border: 2px solid var(--default-color) !important;
  padding: 12px 24px !important;
  transition: 0.3s !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30% !important;
}
.about .content .read-more:hover {
  background: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}


.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 500px;
}


.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }

  .about .content .read-more {
    width: 100% !important;
    margin-bottom: 15px;
  }

  .captamos-img{
    padding-bottom: 60% !important;
  }
}



/* Recent-posts Section - Home Page
------------------------------*/
.hover-card-proyecto {
  transition: .3s;
}
.hover-card-proyecto .card-proyecto {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  height: 100%;
  border-radius: 10px;
}
.hover-card-proyecto .card-proyecto .card-proyecto-img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.hover-card-proyecto .card-proyecto .card-proyecto-img .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  opacity: 0;
  transition: .3s;
}
.hover-card-proyecto .card-proyecto .card-proyecto-img .overlay img {
  width: 200px;
  height: auto;
}
.hover-card-proyecto .card-proyecto .card-proyecto-img img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: 300px;
  object-fit: cover;
}
.hover-card-proyecto .card-proyecto .card-proyecto-txt {
  height: 125px;
  padding: 20px;  
  transition: .3s;
  border-radius: 0 0 10px 10px;
}
.hover-card-proyecto .card-proyecto .card-proyecto-txt span{
  font-size: 12px;
  letter-spacing: 1px;
  transition: .3s;
}
.hover-card-proyecto .card-proyecto .card-proyecto-txt h5{
  font-weight: 600;
  transition: .3s;
}
.hover-card-proyecto:hover .card-proyecto .card-proyecto-txt {
  background-color: var(--primary-color);
  transition: .3s;
}
.hover-card-proyecto:hover .card-proyecto .card-proyecto-txt span{
  color: #f4f4f4;
  transition: .3s;
}
.hover-card-proyecto:hover .card-proyecto .card-proyecto-txt h5{
  color: #FFF;
  transition: .3s;
}

.hover-card-proyecto:hover .card-proyecto .card-proyecto-img .overlay {
  opacity: 1;
  transition: .3s;
}

/* Services Section - Home Page
------------------------------*/
.services .service-item {
  position: relative;
  padding-top: 40px;
}

.services .service-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(var(--default-color-rgb), 0.1);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-right: 5px solid var(--background-color);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.services .service-item .icon i {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  background: rgba(var(--primary-color-rgb), 0.3);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--secondary-color);
}

.services .service-item .title a:hover {
  color: var(--primary-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}


/* Call-to-action Section - Home Page
------------------------------*/
.call-to-action{
  background-image: url(../img/cta-bg.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.call-to-action .form-control {
  background-color: #8e8f89c4; /* Gris con opacidad */
  border: 1px solid white; /* Bordes de 1px sólidos de color blanco */
  color: white; /* Texto de color blanco */
}

/* Estilo para la flecha del select */
.call-to-action .form-select {
  background-color: #8e8f89c4; /* Gris con opacidad */
  border: 1px solid white; /* Bordes de 1px sólidos de color blanco */
  color: white; /* Texto de color blanco */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="80" viewBox="0 0 24 24" width="80" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>'); /* Tamaño ajustado a 48 */
  background-repeat: no-repeat;
  background-position: right 10px center;
  /* padding-right: 60px; Espacio ajustado para la flecha más grande */
}

.call-to-action .form-control::placeholder, .call-to-action .form-select::placeholder {
  color: white; /* Placeholder de color blanco */
  opacity: 1; /* Asegura que el color del placeholder sea visible */
}

.call-to-action .btn-submit{
  background-color: #222211df;
  color: white;
  border: 1px solid white;
  letter-spacing: 1px;
  padding: 10px 40px;
}


/* Team Section - Home Page
------------------------------*/
.team {
  --background-color: #fafafa;
}

.team .member {
  position: relative;
}

.team .member .member-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--background-color);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--primary-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# DETALLES
--------------------------------------------------------------*/

.bg-cover {
  background-position: center;
  background-size: cover;
}

.full-slider {
  height: 500px;
  width: 100%;
}

.thumb-slider {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
}

.thumb-slider .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}

.thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}

.thumb-slider .swiper-slide img, .full-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-button {
  position: absolute;
  right: 10px;
  top: 10px;
}

.my-btn {
  background: var(--primary-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.my-btn:hover {
  background: rgba(var(--primary-color-rgb), 0.8);
  color: #FFF;
}

.mapa-size iframe{
  width: 100% !important;
  height: 350px !important;
  border-radius: .5rem;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
}

.more-links {
  margin-top: 50px;
  margin-bottom: 50px;
}
.more-links li {
  margin-bottom: 20px;
}
.more-links li a .more-projects {
  display: flex;
  justify-content: start;
  align-items: center;
}
.more-links li a .more-projects img{
  width: 75px;
  height: 75px;
  transition: .3s;
  margin-right: 20px;
  object-fit: cover;
}
.more-links li a .more-projects p {
  color: var(--nav-dropdown-color);
  transition: .3s;
}
.more-links li a:hover .more-projects img{
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
  transition: .3s;
}
.more-links li a:hover .more-projects p {
  color: var(--primary-color);
  transition: .3s;
}

.yt-video iframe {
  width: 100%;
  height: 500px;
  border-radius: .5rem;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
}

.form-control {
  background-color: #FFF;
  border-bottom: 1px solid #ced4da;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.form-control::placeholder, .form-floating>label {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1; /* Firefox */
}

.form-control::-ms-input-placeholder, .form-floating>label { /* Edge 12 -18 */
  color: rgba(0, 0, 0, 0.5);
}

.contacto-mapa iframe{
  width: 100%;
  height: 100%;
}




/* Stats Section - Home Page
------------------------------*/
.stats {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color-rgb: 0, 0, 0;
  position: relative;
  
}

.stats h1 {
  line-height: 50px;
}

.stats h1 .texto1{
  font-size: 34px;
  font-family: "DM Sans Bold";
}

.stats h1 .texto2{
  font-size: 75px;
  font-family: "DM Sans Bold";
  color: var(--primary-color);
}

/* .stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
} */


.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  background-color: var(--nav-dropdown-hover-color);
  width: 70%;
}

.stats .stats-item span {
  font-size: 40px;
  display: block;
  color: var(--default-color);
  font-weight: bolder;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}



@media (max-width: 768px) {
  .team .member .member-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 200px !important;
    object-fit: cover;
    border-radius: 10px;
  }

  .full-slider {
    height: 350px;
    width: 100%;
  }
  
  .thumb-slider {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
  }
  
  .thumb-slider .swiper-slide {
    width: calc(100% / 4) !important;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
  }
  
  .thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
  }
  
  .thumb-slider .swiper-slide img, .full-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .yt-video iframe {
    height: 350px !important;
  }  

  .contacto-mapa iframe{
    width: 100%;
    height: 350px;
    margin-top: 40px;
  }

}