@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* Variables CSS Modernas */
:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f093fb;
  --dark-color: #2d3748;
  --light-color: #f7fafc;
  --success-color: #48bb78;
  --text-dark: #1a202c;
  --text-light: #718096;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-hero: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
  scroll-behavior: smooth;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container h2 span {
  color: #6fd557;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Animaciones CSS Modernas */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Clases de utilidad para animaciones */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/*header section*/
.hero_area {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--gradient-hero), url(../images/slider-bg.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero_area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero_area > * {
  position: relative;
  z-index: 2;
}

.sub_page .hero_area {
  height: auto;
}

.sub_page .header_section {
  margin-top: 0;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.header_section {
  padding: 15px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

/* Navegación Moderna */
.header_section {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.header_section.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.logo-mdp {
  width: 40px;
  height: 40px;
  transition: var(--transition);
}

.navbar-brand span {
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 12px 24px;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: var(--transition);
  z-index: -1;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link::before,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::before {
  left: 0;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, 
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.quote_btn-container a {
  color: #000000;
  text-transform: uppercase;
}

.quote_btn-container a span {
  margin-left: 5px;
}

.quote_btn-container a:hover {
  color: #4d5878;
}

.quote_btn-container .quote_btn {
  display: inline-block;
  padding: 5px 25px;
  background-color: #6fd557;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.quote_btn-container .quote_btn:hover {
  background-color: #46b32d;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  text-align: center;
  color: #ffffff;
}

/* Tipografía Moderna */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  font-weight: 800; 
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 { 
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 700; 
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem); 
  font-weight: 600; 
}

/* Slider Hero Moderno */
.slider_section .detail-box h1 {
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.slider_section .detail-box p {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.slider_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5px;
  margin-top: 45px;
}

.slider_section .detail-box .btn-box a {
  margin: 5px;
  text-align: center;
  width: 185px;
}

/* Botones Modernos */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  color: #ffffff;
}

.slider_section .detail-box .btn-box .btn1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.slider_section .detail-box .btn-box .btn1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: var(--transition);
  z-index: -1;
}

.slider_section .detail-box .btn-box .btn1:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.slider_section .detail-box .btn-box .btn1:hover::before {
  left: 0;
}

.slider_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: black;
}

.slider_section .img-box img {
  width: 100%;
}

/* Modern Carousel Indicators - Updated for Bootstrap 5 */
.slider_section .carousel-indicators {
  position: static;
  margin: 2rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.slider_section .carousel-indicators button {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  opacity: 1;
  text-indent: 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider_section .carousel-indicators button.active {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.slider_section .carousel-indicators button:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
}

.about_section .img-box img {
  width: 100%;
}

.about_section .detail-box p {
  color: #1f1f1f;
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #6fd557;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #46b32d;
}

/* Sección de Servicios Moderna */
.service_section {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  color: var(--text-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="a" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
  z-index: 1;
}

.service_section > * {
  position: relative;
  z-index: 2;
}

.service_section .heading_container {
  align-items: center;
  margin-bottom: 4rem;
}

.service_section .heading_container h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service_section .heading_container p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Container de Servicios con Grid Moderno */
.service_section .service_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Cards de Servicios con Glassmorphism */
.service_section .service_container .box {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service_section .service_container .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.service_section .service_container .box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  color: #ffffff;
}

.service_section .service_container .box:hover::before {
  opacity: 1;
}

/* Iconos de Servicios Modernos */
.service_section .service_container .box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin: 0 auto 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service_section .service_container .box .img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
}

.service_section .service_container .box .img-box img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.service_section .service_container .box .detail-box {
  text-align: center;
}

.service_section .service_container .box .detail-box h5 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service_section .service_container .box .detail-box p {
  color: var(--text-light);
  line-height: 1.6;
  transition: var(--transition);
}

.service_section .service_container .box:hover .img-box {
  transform: scale(1.1) rotate(5deg);
  animation: pulse 2s infinite;
}

.service_section .service_container .box:hover .img-box::before {
  opacity: 1;
}

.service_section .service_container .box:hover .img-box img {
  transform: scale(1.1);
}

.service_section .service_container .box:hover .detail-box h5,
.service_section .service_container .box:hover .detail-box p {
  color: #ffffff;
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #6fd557;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.service_section .btn-box a:hover {
  background-color: #46b32d;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px 0;
  padding: 45px 25px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.client_section .box .img-box {
  width: 125px;
  height: 125px;
  min-width: 125px;
  margin-right: 25px;
  position: relative;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  color: #4d5878;
  margin-bottom: 0;
  text-transform: uppercase;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #6fd557;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
}

.client_section .box .client_info i {
  font-size: 24px;
  color: #6fd557;
}

.client_section .box p {
  margin-top: 15px;
}

.client_section .box .detail-box {
  background-color: #ffffff;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .carousel-indicators li {
  background-color: #6fd557;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #4d5878;
}

.news_section .heading_container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.news_section .box {
  margin-top: 45px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.news_section .box .img-box {
  position: relative;
}

.news_section .box .img-box img {
  width: 100%;
}

.news_section .box .detail-box {
  padding: 25px;
}

.news_section .box .detail-box h5 {
  font-weight: bold;
}

.news_section .box .detail-box p {
  font-size: 15px;
}

.news_section .box .detail-box a {
  text-transform: uppercase;
  color: #6fd557;
}

.contact_section {
  position: relative;
}

.contact_section .heading_container {
  margin-bottom: 25px;
}

.contact_section .heading_container h2 {
  text-transform: uppercase;
}

.contact_section .form_container {
  margin-right: 15px;
  -webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.07);
  padding: 45px 25px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  outline: none;
  color: #101010;
  background-color: #f8f8f8;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #4d5878;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #4d5878;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #4d5878;
}

.contact_section .form_container input::placeholder {
  color: #4d5878;
}

.contact_section .form_container input.message-box {
  height: 120px;
}

.contact_section .form_container button {
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 65px;
  background-color: #6fd557;
  color: #ffffff;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
}

.contact_section .form_container button:hover {
  background-color: #46b32d;
}

.contact_section .img-box img {
  width: 100%;
}

/* info section */
.info_section {
  background-color: #4d5878;
  color: #ffffff;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
}

.info_section .info_contact .contact_link_box a:hover {
  color: #6fd557;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
}

.info_section .info_social a:hover {
  color: #6fd557;
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover, .info_section .info_links a.active {
  color: #6fd557;
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #6fd557;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: #46b32d;
}

/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: center;
}

.footer_section p {
  color: #000000;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

/* Logo Moderno */
.logo-mdp {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: var(--transition);
}

/* ===== ESTILOS MODERNOS ADICIONALES ===== */

/* Sección de Estadísticas */
.stats_section {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="stats" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stats)"/></svg>');
}

.stats_section .container {
  position: relative;
  z-index: 2;
}

.stat_card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.stat_card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat_card .counter {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: block;
}

.stat_card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

/* Testimonios Modernos */
.testimonials_section {
  background: var(--light-color);
  padding: 100px 0;
}

.testimonial_card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  margin: 2rem 0;
  transition: var(--transition);
}

.testimonial_card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.testimonial_card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1;
}

.testimonial_avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-color);
  overflow: hidden;
}

.testimonial_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial_content {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial_author h5 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.testimonial_author p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.stars {
  color: #ffd700;
  margin-bottom: 1rem;
}

/* Portfolio/Casos de Éxito */
.portfolio_section {
  padding: 100px 0;
  background: #ffffff;
}

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

.portfolio_item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  background: #ffffff;
}

.portfolio_item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.portfolio_image {
  width: 100%;
  height: 250px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

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

.portfolio_item:hover .portfolio_image img {
  transform: scale(1.1);
}

.portfolio_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio_item:hover .portfolio_overlay {
  opacity: 0.9;
}

.portfolio_overlay_content {
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: var(--transition);
}

.portfolio_item:hover .portfolio_overlay_content {
  transform: translateY(0);
}

.portfolio_content {
  padding: 2rem;
}

.portfolio_content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.portfolio_content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.portfolio_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio_tag {
  background: var(--light-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Sección CTA (Call to Action) */
.cta_section {
  background: var(--gradient-accent);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta_section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

.cta_content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta_content h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta_content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Back to Top Button */
.back_to_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-soft);
}

.back_to_top.show {
  opacity: 1;
  visibility: visible;
}

.back_to_top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Loading Screen */
.loading_screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading_spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Progress Bar */
.progress_bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--gradient-accent);
  z-index: 9999;
  transition: width 0.3s ease;
}

/* Responsive Design Mejorado */
@media (max-width: 768px) {
  .hero_area {
    height: 80vh;
  }
  
  .slider_section .detail-box h1 {
    font-size: 2rem;
  }
  
  .service_section .service_container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .portfolio_grid {
    grid-template-columns: 1fr;
  }
  
  .stat_card .counter {
    font-size: 2.5rem;
  }
  
  .navbar-brand span {
    font-size: 20px;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .slider_section .detail-box h1 {
    font-size: 1.8rem;
  }
  
  .service_section .service_container .box {
    padding: 2rem 1.5rem;
  }
  
  .testimonial_card {
    padding: 2rem 1.5rem;
  }
  
  .back_to_top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Animaciones AOS (Animate On Scroll) */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.8);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-hover {
  box-shadow: var(--shadow-hover);
}

.border-radius {
  border-radius: var(--border-radius);
}

/* ===== ESTILOS PARA PÁGINA ABOUT ===== */

/* Value Cards */
.value-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #ffffff;
  font-size: 1.5rem;
}

.value-card h5 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.value-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

/* Tech Badges */
.tech-badge {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

/* Team Section */
.team_section {
  background: var(--light-color);
}

.team_card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  text-align: center;
}

.team_card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.team_image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.team_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team_card:hover .team_overlay {
  opacity: 0.9;
}

.team_card:hover .team_image img {
  transform: scale(1.1);
}

.social_links {
  display: flex;
  gap: 1rem;
}

.social_links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social_links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.team_content {
  padding: 2rem;
}

.team_content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.team_content p {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.specialty {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* Timeline Section */
.timeline_section {
  background: #ffffff;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline_item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline_item:nth-child(odd) {
  flex-direction: row;
}

.timeline_item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline_year {
  background: var(--gradient-primary);
  color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  position: relative;
}

.timeline_content {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  max-width: 350px;
  margin: 0 2rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: var(--transition);
}

.timeline_content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.timeline_content h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline_content p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline_item {
    flex-direction: row !important;
    padding-left: 70px;
  }
  
  .timeline_year {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }
  
  .timeline_content {
    margin: 0;
    max-width: none;
  }
}

/*# sourceMappingURL=style.css.map */