/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #e9eaed; /* Background color for the entire website, including individual sections */
  --default-color: #000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #061D37; /* Color for headings, subheadings and title throughout the website */
  --accent-color:  #5F8697; /* Accent color that represents your brand zon the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --color7: #FCF2CB;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #FCF2CB;  /* The default color of the main navmenu links */
  --nav-hover-color: #FCF2CB; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3690e7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

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

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

/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/
.login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    padding: 4rem 0;
}

.login-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    background: var(--surface-color);
}

.login-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.login-section .card-body {
    padding: 3rem;
}

.login-section h2 {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.login-section .text-muted {
    color: #6c757d !important;
    margin-bottom: 2rem;
    display: block;
}

.login-section .form-label {
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.login-section .form-control {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.login-section .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(10, 48, 92, 0.15);
    background-color: #fff;
}

.login-section .btn-primary {
    background-color: var(--accent-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.login-section .btn-primary:hover {
    background-color: #082547;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 48, 92, 0.2);
}

.login-section .btn-primary:active {
    transform: translateY(0);
}

/* Efecto de borde inferior en los inputs */
.login-section .input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.login-section .input-group:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.login-section .input-group:focus-within:after {
    width: 100%;
}

/* Estilo para el enlace de olvidé mi contraseña */
.login-section .forgot-password {
    display: block;
    text-align: right;
    margin-top: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.login-section .forgot-password:hover {
    color: #082547;
    text-decoration: underline;
}

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

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

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

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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: #F7E28D;
  }

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

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

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

  .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: #F7E28D;
  }

  .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 - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    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;
    list-style: 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(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    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: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-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(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

  .navmenu .dropdown>.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;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--accent-color);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h4, .footer h5 {
  color: #FCF2CB;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer h5 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(252, 242, 203, 0.3);
  display: inline-block;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

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

.footer ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.footer ul li i {
  color: #FCF2CB;
  margin-top: 0.2rem;
  margin-right: 0.5rem;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.footer ul li:hover i {
  color: #ffffff;
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(252, 242, 203, 0.5);
}

/* Estilos generales para enlaces en el footer */
.footer a,
.footer .nav-link,
.footer .list-unstyled a,
.footer .quick-links a,
.footer .footer-links a {
  color: #FCF2CB !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 400;
}

.footer a:hover,
.footer .nav-link:hover,
.footer .list-unstyled a:hover,
.footer .quick-links a:hover,
.footer .footer-links a:hover {
  color: #ffffff !important;
  padding-left: 5px;
  text-decoration: underline;
  opacity: 1;
}

/* Asegurar que los iconos en los enlaces hereden el color */
.footer a i,
.footer .nav-link i {
  color: inherit !important;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(252, 242, 203, 0.1);
  color: #FCF2CB !important; /* Forzar color del icono */
  margin-right: 10px;
  transition: all 0.3s ease;
  border: 1px solid #FCF2CB;
}

.social-links a i {
  color: inherit !important; /* Asegurar que el icono herede el color */
}

.social-links a:hover {
  background: #FCF2CB;
  color: var(--accent-color) !important; /* Forzar color del icono al hacer hover */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-links a:hover i {
  color: var(--accent-color) !important; /* Asegurar color del icono al hacer hover */
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 1.5rem;
  opacity: 1;
}

/* Logo del desarrollador */
.footer-logo {
  height: 24px;
  width: auto;
  vertical-align: middle;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Copyright */
.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.copyright a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .footer {
    text-align: center;
  }
  
  .footer ul li {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  
  .footer-about {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--color7);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--accent-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #F7E28D, transparent 20%);
  color: var(--accent-color);
}

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

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

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

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

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

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

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero 2 Section
--------------------------------------------------------------*/
.hero-2 {
  padding: 80px 0;
}

.hero-2 h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-2 .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.75rem 3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.hero-2 .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero-2 .contact-info strong {
  color: var(--heading-color);
  font-size: 1.1rem;
}

.hero-2 .image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-2 .image-wrapper img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-2 .shape-1,
.hero-2 .shape-2 {
  position: absolute;
  border-radius: 50%;
}

.hero-2 .shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--accent-color);
  top: -30px;
  right: -30px;
  z-index: 0;
}

.hero-2 .shape-2 {
  width: 100px;
  height: 100px;
  background-color: #ffd700;
  bottom: -20px;
  left: -20px;
  z-index: 0;
}

.hero-2 .features .feature-item .icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-2 .features .feature-item .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.hero-2 .features .feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-2 .features .feature-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-2 .features .bg-pink {
  background-color: #ff69b4;
}

.hero-2 .features .bg-green {
  background-color: #00cc66;
}

.hero-2 .features .bg-orange {
  background-color: #ffa500;
}

@media (max-width: 991.98px) {
  .hero-2 {
    text-align: center;
  }

  .hero-2 .image-wrapper {
    margin-top: 3rem;
  }

  .hero-2 .features {
    text-align: left;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header .subtitle {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  position: relative;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  width: 80px;
}

.section-divider span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 0 5px;
}

.section-divider i {
  color: var(--accent-color) !important;
  font-size: 14px;
  transition: all 0.3s ease;
}

.section-divider i:hover {
  transform: scale(1.2);
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.experience-box {
  background: var(--accent-color);
  color: white;
  padding: 20px;
  width: 160px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.experience-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.experience-box .years {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.about-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.about-content p.lead {
  font-size: 18px;
  color: var(--default-color);
  margin-bottom: 25px;
  position: relative;
  padding-left: 30px;
}

.about-content p.lead:before {
  content: '"\201C"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--default-color);
  text-align: justify;
  align-content: center;
}

.feature-box {
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.feature-icon i {
  transition: all 0.3s ease;
  color: var(--accent-color) !important;
}

.feature-box:hover .feature-icon i {
  transform: scale(1.1);
  opacity: 0.9;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.signature h5 {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

/* Values Section */
.values-section {
  padding: 60px 0 0;
}

.value-card {
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.value-icon i {
  transition: all 0.3s ease;
  color: var(--accent-color) !important;
}

.value-card:hover .value-icon i {
  transform: scale(1.1);
  opacity: 0.9;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.value-card p {
  color: var(--default-color);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #0a1a35 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/dots-pattern.png') repeat;
  opacity: 0.1;
  z-index: 1;
}

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

.cta-section h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.cta-section p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 0;
}

.cta-section .btn {
  background: white;
  color: var(--accent-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-section .btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .about-image {
    margin-bottom: 40px;
  }
  
  .about-content {
    padding-left: 0 !important;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .cta-section h3 {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 28px;
  }
  
  .cta-section .btn {
    width: 100%;
    margin-top: 20px;
  }
  
  .experience-box {
    width: 140px;
    padding: 15px;
  }
  
  .experience-box .years {
    font-size: 30px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0);
}

[data-aos^='fade'][data-aos^='fade'] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^='fade'][data-aos^='fade'].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0);
}

[data-aos='fade-up'] {
  transform: translate3d(0, 30px, 0);
}

[data-aos='fade-down'] {
  transform: translate3d(0, -30px, 0);
}

[data-aos='fade-right'] {
  transform: translate3d(-30px, 0, 0);
}

[data-aos='fade-left'] {
  transform: translate3d(30px, 0, 0);
}

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

[data-aos='zoom-out'] {
  transform: scale(1.2);
}

[data-aos='flip-left'] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos='flip-right'] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos='flip-up'] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos='flip-down'] {
  transform: perspective(2500px) rotateX(100deg);
}

/* ===========================================
   Hero Section
   =========================================== */
.hero-section {
  background: #E9EAED;
  color: #2D3748;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/pattern.png') repeat;
  opacity: 0.05;
  z-index: 1;
}

.hero-shape-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  top: -300px;
  right: -200px;
  z-index: 1;
}

.hero-shape-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: rgba(255, 255, 255, 0.02);
  bottom: -100px;
  left: -100px;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  top: 50%;
  right: 10%;
  z-index: 1;
  animation: pulse 4s ease-in-out infinite;
}

.hero-badge {
  background: rgba(0, 0, 0, 0.05);
  color: #4A5568;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1A202C;
}

.hero-subtitle {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 30px;
  max-width: 90%;
  line-height: 1.6;
}

.hero-cta .btn {
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.hero-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: right;
}

/* Botón principal - Estilo sólido */
.hero-cta .btn-primary {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-primary::before {
  background: #2c3e50;
  transform: scaleX(0);
}

.hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: white;
}

.hero-cta .btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Botón secundario - Estilo outline */
.hero-cta .btn-outline-light {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta .btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-cta .btn-outline-light:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-outline-light:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Efecto de elevación al hacer hover en ambos botones */
.hero-cta .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-features {
  margin-top: 50px;
}

.hero-features .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-features span {
  color: #2D3748;
  font-weight: 500;
  font-size: 15px;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.5s ease;
}

.hero-main-image:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.hero-main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.hero-main-image:hover img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 10%;
  right: -5%;
  animation-delay: 0.5s;
}

.floating-card h6 {
  font-weight: 700;
  margin: 0;
  color: var(--heading-color);
}

.floating-card .floating-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #718096;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-link:hover {
  color: var(--accent-color);
  transform: translateY(5px);
}

.scroll-text {
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.scroll-link i {
  font-size: 20px;
  animation: bounce 2s infinite;
}

/* Trusted By Section - Removed */

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    max-width: 100%;
    font-size: 16px;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-features {
    margin-top: 30px;
  }
  
  .floating-card {
    display: none;
  }
  
  .trusted-logos {
    justify-content: center !important;
  }
  
  .trusted-logos img {
    margin: 0 10px 10px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-cta .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .hero-features .col-6 {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 500px;
  width: 500px;
}

.about .image-wrapper .experience-box {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .image-wrapper .experience-box .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

.about .image-wrapper .experience-box .text {
  font-size: 0.9rem;
  margin-top: 5px;
  line-height: 1.2;
}

.about .content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about .content {
    padding-left: 0;
    margin-top: 10px;
  }
}

.about .content .section-header {
  margin-bottom: 2rem;
}

.about .content .section-header .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.about .content .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .about .content .section-header h2 {
    font-size: 2rem;
  }
}

.about .content .highlight-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 500;
}

.about .content .features-list {
  margin-bottom: 2.5rem;
}

.about .content .features-list .feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about .content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.about .content .features-list .feature-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.3s;
}

.about .content .features-list .feature-item .icon-box:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.about .content .features-list .feature-item .text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .content .features-list .feature-item .text p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .content .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about .content .cta-buttons .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
  display: grid;
  place-items: center;
}

.about .content .cta-buttons .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

.about .content .cta-buttons .btn-learn-more {
  background-color: transparent;
  color: var(--accent-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: 0.3s;
}

.about .content .cta-buttons .btn-learn-more:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.services .services-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .services .services-title {
    font-size: 2rem;
  }
}

.services .services-subtitle {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 800px;
  margin: 0 auto;
}

.services .service-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services .service-item .service-icon {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.services .service-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.services .service-item .service-link {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.services .service-item .service-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.services .service-item .service-link:hover {
  color: var(--accent-color);
}

.services .service-item .service-link:hover i {
  transform: translateX(5px);
}

.services .services-image-container {
  position: relative;
  padding: 1rem;
}

.services .services-image-container img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services .services-image-container .experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translate(20%, 20%);
}

.services .services-image-container .experience-badge .years {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.services .services-image-container .experience-badge .text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .services-content {
  padding: 1rem 0 1rem 2rem;
}

@media (max-width: 992px) {
  .services .services-content {
    padding: 2rem 0 0 0;
  }
}

.services .services-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
}

.services .services-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.services .services-content .features-list {
  margin-bottom: 2rem;
}

.services .services-content .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.services .services-content .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.services .services-content .features-list .feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.services .services-content .features-list .feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.services .services-content .cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.services .services-content .cta-container .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.services .services-content .cta-container .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.services .services-content .cta-container .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
}

.services .services-content .cta-container .btn-outline {
  background-color: transparent;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 70%);
}

.services .services-content .cta-container .btn-outline:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-color: var(--heading-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .services .service-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services .services-image-container {
    margin-bottom: 2rem;
  }

  .services .services-image-container .experience-badge {
    padding: 1rem;
    transform: translate(10%, 10%);
  }

  .services .services-image-container .experience-badge .years {
    font-size: 2rem;
  }

  .services .services-image-container .experience-badge .text {
    font-size: 0.8rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services.section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  background: rgba(13, 110, 253, 0.1);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

/* Estilos para los botones de servicios */
.service-btn {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  padding: 0 10px;
}

.service-btn-inner {
  background: #fff;
  border-radius: 50px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.service-btn:hover .service-btn-inner {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #fff;
}

.service-btn i {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-btn:hover i {
  color: #fff;
  transform: scale(1.1);
}

.service-btn span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  display: block;
}

.service-btn:hover span {
  color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .services.section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
    height: 200px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767.98px) {
  .services.section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    height: 180px;
    margin-bottom: 20px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

/*--------------------------------------------------------------
# Contact Section - Full Width Map with Info Boxes
--------------------------------------------------------------*/
.contact-section {
  padding: 0;
  background-color: #fff;
}

/* Encabezado de contacto */
.contact-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-header .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-header .divider {
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  display: block;
}

.contact-header .lead {
  font-size: 1.25rem;
  color: #6c757d;
}

/* Mapa a ancho completo */
.contact-map-container {
  width: 100%;
  height: 500px;
  margin: 0;
  padding: 0;
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
  pointer-events: none;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Sección de información de contacto */
.contact-info-section {
  background-color: #f8f9fa;
  position: relative;
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23f8f9fa" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,112C960,117,1056,107,1152,96C1248,85,1344,75,1392,69.3L1440,64L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z"></path></svg>') no-repeat center top/100% 100%;
  z-index: 1;
}

/* Cajas de información */
.contact-section .info-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.contact-section .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-section .info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(var(--accent-color-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-section .info-box:hover .info-icon {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

.contact-section .info-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.contact-section .info-box p {
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Botones flotantes de redes sociales */
.social-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-button.whatsapp {
  background-color: #25D366;
}

.social-button.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-button:active {
  transform: translateY(1px);
}

/* Efecto de ondas al hacer clic */
.social-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.5s ease-out;
}

.social-button:active::after {
  transform: scale(2);
  opacity: 0;
}

/* Ajustes responsivos */
@media (max-width: 767.98px) {
  .social-buttons {
    bottom: 20px;
    right: 15px;
  }
  
  .social-button {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

@media (max-width: 991.98px) {
  .contact-section .info-box {
    margin-bottom: 30px;
  }
  
  .contact-section .info-box:last-child {
    margin-bottom: 0;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section .bg-light {
    padding: 40px 30px !important;
  }
  
  .contact-map, 
  .contact-map iframe {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 40px 0;
  }
  
  .contact-section .bg-light {
    padding: 30px 20px !important;
  }
  
  .contact-section h2 {
    font-size: 28px;
  }
  
  .contact-form .btn-primary {
    width: 100%;
  }
}

.contact-form .form-control {
  height: 50px;
  padding-left: 45px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.contact-form textarea.form-control {
  height: 120px;
  padding-top: 15px;
  resize: none;
}

.contact-form .input-with-icon {
  position: relative;
}

.contact-form .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 18px;
  z-index: 2;
}

.contact-form textarea + i {
  top: 25px !important;
  transform: none !important;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact-form .btn-send {
  background: var(--accent-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-form .btn-send:hover {
  background: var(--accent-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.info-item {
  padding: 10px 0;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(var(--accent-color-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 16px;
}

.info-item h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.info-item p {
  margin: 0;
  color: #666;
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-form-container {
    height: auto;
    min-height: auto;
    padding: 60px 0;
  }
  
  .contact-section {
    height: auto;
    min-height: auto;
  }
  
  .contact-form-wrapper {
    margin: 0 15px;
  }
}

@media (max-width: 767.98px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-form .btn-send {
    width: 100%;
  }
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/* ABOUT SECTION */
.about-section{
  background-color: var(--accent-color); 
  border-radius: 10px; 
  padding: 25px; 
  text-align: justify;
}

.about-section p{
  color: #fff !important;
}

.about-section p span{
  color: var(--color7) !important;
  font-weight: bold;
}

