/* 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: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #462918; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2B65E2; /* Accent color that represents your brand on 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. */
}

/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #2B65E2; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #0a0a0a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #3b3b3b; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2B65E2; /* 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: #f8f4f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #6f6f6f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #898989;
  --contrast-color: #ffffff;
}

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

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

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

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

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

/* 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 {
  --background-color: transparent;
  --default-color: #2B65E2;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 40px;
  margin: 0;
  font-weight: 300;
  color: #36A3F2 !important; /* ← Color celeste más brillante */
  text-shadow: 0 0 5px rgba(54, 163, 242, 0.7); /* ← Efecto glow opcional */
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: #36A3F2 !important; /* ← Color celeste más brillante */
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block !important;
  z-index: 998;
  transition: 0.3s;
  text-shadow: 0 0 5px rgba(54, 163, 242, 0.5); /* ← Efecto glow */
}

.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.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;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

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

.mobile-nav-active .mobile-nav-toggle {
  right: 310px;
  font-size: 36px;
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}
/* ---------------------------------FOOTER--------------------------------- */
/* Footer Section - Modificado para coincidir con Services */
.footer {
  color: #ffffff !important;
  background: linear-gradient(to bottom, 
              hsl(207 100% 5%),
              hsl(207 100% 15%)) !important;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

/* Estilos específicos para el texto HyperDev en el footer */
.footer .sitename {
  font-family: var(--heading-font);
  font-weight: 300; /* Texto más fino */
  font-size: 2.5rem;
  color: white;
}

.footer .sitename .hyper {
  color: #36A3F2;
  text-shadow: 0 0 10px #36A3F2, 
               0 0 20px rgba(54, 163, 242, 0.7);
}

.footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
  color: #a8d0ff !important;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

/* Efectos para los iconos de redes sociales - Brillo celeste */
.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(54, 163, 242, 0.15) !important; /* Fondo más celeste */
  color: #36A3F2 !important; /* Color celeste */
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 163, 242, 0.4); /* Borde celeste */
}

.footer .social-links a:hover {
  background: #36A3F2 !important; /* Fondo celeste sólido */
  color: white !important;
  box-shadow: 0 0 12px #36A3F2, 0 0 25px rgba(54, 163, 242, 0.6); /* Brillo celeste */
  transform: translateY(-3px);
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid rgba(43, 101, 226, 0.3);
  color: #a8d0ff !important;
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
  color: #a8d0ff !important;
}

.footer .credits a {
  color: #31a2ff !important;
}

.footer .credits a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 3px rgba(43, 101, 226, 0.7);
}

/* Ajustes responsivos para móviles */
@media (max-width: 768px) {
  .footer .sitename {
    font-size: 2rem;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

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

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-image: linear-gradient(hsl(207 100% 15%), hsl(207 100% 5%));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 15vh 20px 0;
}

/* Capa de mariposas */
.hero .scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
  z-index: 1;
}

/* Estilos de mariposas */
.hero .scene * {
  position: absolute;
  transform-style: preserve-3d;
}

.hero .butterfly {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fly calc(12s + var(--random) * 6s) calc(var(--random) * -100s) infinite linear;
}

.hero .butterfly::before,
.hero .butterfly::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 53px;
  background-color: hsl(calc(197 + var(--random) * 20) 100% 50%);
  clip-path: path('m0 24.949c 2.6262-5.4316 9.7782-15.554 16.428-20.546 4.798-3.6021 12.572-6.3892 12.572 2.4795 0 1.7712-1.0155 14.879-1.6111 17.007-2.0703 7.3984-9.6144 9.2854-16.325 8.1433 11.73 1.9964 14.714 8.6092 8.2697 15.222-12.239 12.559-17.591-3.1511-18.963-7.1766-.2514-.73797-.36904-1.0832-.37077-.78964z');
  transform-origin: left;
}

.hero .butterfly::before {
  animation: flapB calc(0.2s + var(--random) * 0.1s) infinite alternate ease-in-out;
}

.hero .butterfly::after {
  animation: flapA calc(0.2s + var(--random) * 0.1s) infinite alternate ease-in-out;
}

/* Contenedor principal del contenido */
.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  color: white;
  transform: none;
  margin-top: 0;
}

/* Estilos para el logo CON EFECTO GLOW */
.hero-logo-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  transform: none;
}

.hero-logo {
  max-width: 400px;
  width: 70%;
  height: auto;
  animation: fadeIn 1s ease-out, logo-glow 2s infinite alternate;
  filter: 
    drop-shadow(0 0 5px #2B65E2)
    drop-shadow(0 0 15px rgba(43, 101, 226, 0.7));
  transition: filter 0.5s ease;
}

/* Texto y botón con efecto glow */
.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 
    0 0 8px #2B65E2,
    0 0 16px #2B65E2,
    0 0 24px rgba(43, 101, 226, 0.5);
  animation: text-glow 2s ease-in-out infinite alternate;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: #31a2ff;
  text-shadow: 
    0 0 4px #2B65E2,
    0 0 8px rgba(43, 101, 226, 0.7);
}



/* ------------------Botón Hero------------------ */

 .hero .btn-get-started {
  background: transparent;
  color: #31a2ff;
  border: 2px solid #2B65E2;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 45px;
  margin: 20px 0 0 0;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #2B65E2, 0 0 20px rgba(43, 101, 226, 0.5);
  animation: neon-pulse 2s infinite alternate;
  transition: all 0.3s ease;
}

.hero .btn-get-started:hover {
  background: rgba(43, 101, 226, 0.2);
  text-shadow: 0 0 5px #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px #2B65E2, 0 0 30px rgba(43, 101, 226, 0.8);
}

@keyframes neon-pulse {
  from { opacity: 0.8; box-shadow: 0 0 5px #2B65E2; }
  to { opacity: 1; box-shadow: 0 0 20px #2B65E2; }
} 

/* ------------------------------------------------------------- */

/* Elimina TODO el espacio entre logo y texto */
.hero-logo {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  display: block;
}

.hero .container.text-center {
  margin-top: -40px !important;  /* Valor más negativo para acercar */
  padding-top: 0 !important;
}

.hero .container .row {
  margin-top: 0 !important;
}

.hero p {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Versión móvil - ajuste más extremo */
@media (max-width: 768px) {
  .hero .container.text-center {
    margin-top: -30px !important;
  }
  
  .hero-logo {
    max-width: 180px;
    margin-bottom: -10px !important; /* Compensación adicional */
  }
}


/* ------------------------------------------------------------- */


/* ANIMACIONES NUEVAS PARA EL GLOW DEL LOGO */
@keyframes logo-glow {
  0% {
    filter: 
      drop-shadow(0 0 5px #2B65E2)
      drop-shadow(0 0 10px rgba(43, 101, 226, 0.5));
  }
  100% {
    filter: 
      drop-shadow(0 0 10px #2B65E2)
      drop-shadow(0 0 20px rgba(43, 101, 226, 0.9));
  }
}

@keyframes text-glow {
  from {
    text-shadow: 
      0 0 5px #2B65E2,
      0 0 10px rgba(43, 101, 226, 0.7);
  }
  to {
    text-shadow: 
      0 0 10px #2B65E2,
      0 0 20px rgba(43, 101, 226, 0.7),
      0 0 30px rgba(43, 101, 226, 0.4);
  }
}

@keyframes fly {
  0% { transform: rotateX(90deg) rotate(calc(var(--random) * 360deg)) translateX(200px) translateZ(-70vh); }
  100% { transform: rotateX(90deg) rotate(calc(var(--random) * 360deg - 720deg)) translateX(200px) translateZ(70vh); }
}

@keyframes flapB {
  from { rotate: y 15deg; } 
  to { rotate: y -30deg; } 
}

@keyframes flapA {
  from { rotate: y 165deg; } 
  to { rotate: y 210deg; } 
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Media queries para móvil */
@media (max-width: 768px) {
  .hero {
    padding-top: 10vh;
  }

  .hero h2 {
    font-size: 32px;
    text-shadow: 
      0 0 5px #2B65E2,
      0 0 10px rgba(43, 101, 226, 0.7);
  }
  
  .hero p {
    font-size: 18px;
    text-shadow: 
      0 0 3px #2B65E2,
      0 0 6px rgba(43, 101, 226, 0.7);
    margin-top: 3px;
  }
  
  .hero .btn-get-started {
    padding: 10px 35px;
    font-size: 15px;
  }

  .hero-logo {
    max-width: 200px;
    width: 70%;
    animation: fadeIn 1s ease-out, logo-glow-mobile 2s infinite alternate;
  }

  @keyframes logo-glow-mobile {
    0% {
      filter: 
        drop-shadow(0 0 3px #2B65E2)
        drop-shadow(0 0 6px rgba(43, 101, 226, 0.5));
    }
    100% {
      filter: 
        drop-shadow(0 0 6px #2B65E2)
        drop-shadow(0 0 12px rgba(43, 101, 226, 0.7));
    }
  }
}

/* Animaciones */
@keyframes fly {
  0% { transform: rotateX(90deg) rotate(calc(var(--random) * 360deg)) translateX(200px) translateZ(-70vh); }
  100% { transform: rotateX(90deg) rotate(calc(var(--random) * 360deg - 720deg)) translateX(200px) translateZ(70vh); }
}

@keyframes flapB {
  from { rotate: y 15deg; } 
  to { rotate: y -30deg; } 
}

@keyframes flapA {
  from { rotate: y 165deg; } 
  to { rotate: y 210deg; } 
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Media queries para móvil */
@media (max-width: 768px) {
  .hero {
    padding-top: 10vh; /* Ajuste para móvil */
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
    margin-top: 3px; /* Reducción adicional en móvil */
  }

  .hero-logo {
    max-width: 200px;
    width: 70%;
  }
  
  .hero-logo-container {
    margin-bottom: 3px; /* Reducción adicional en móvil */
  }
  
  .hero .btn-get-started {
    margin-top: 8px; /* Reducción adicional en móvil */
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title {
  text-align: center; /* Centra el título por defecto */
  margin-bottom: 30px; /* Espacio bajo el título */
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

/* About p size */
.about .content p {
  font-size: 18px !important;    /* ← Agrega esta línea */
  line-height: 1.6 !important;   /* ← Opcional: interlineado */
}

.about .content ul li {
  font-size: 18px !important;    /* ← Para los items de lista */
  line-height: 1.6 !important;
}
/* -- */

.about .content p:last-child {
  margin-bottom: 0;
}

/* --- ESTILOS MODIFICADOS --- */
.about .row.gy-4 {
  --bs-gutter-x: 2rem; /* Espacio más equilibrado entre columnas */
  align-items: center;
}

.about .col-lg-6:first-child {
  padding-right: 15px; /* Pequeño espacio para la imagen */
  text-align: right;
}

.about .col-lg-6:last-child {
  padding-left: 15px; /* Pequeño espacio para el texto */
}

.about .col-lg-6 img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
  margin-right: 0; /* Eliminamos el margen derecho */
}

@media (max-width: 768px) {
  .about .col-lg-6 img {
    max-height: 250px;
    text-align: center;
    margin: 0 auto; /* Centrado perfecto en móvil */
  }
  
  .about .row.gy-4 {
    --bs-gutter-x: 1rem;
  }
  
  .about .col-lg-6:first-child,
  .about .col-lg-6:last-child {
    padding: 0 10px;
    text-align: center;
  }
}

/* Why Us Section (se mantiene igual) */
.why-us .card {
  background-color: var(--surface-color);
  /* ... resto del código Why Us permanece igual ... */
}

/* Color */

.about {
  position: relative;
  /* Reemplaza el color sólido por el gradiente invertido */
  background: linear-gradient(to bottom, 
              hsl(207 100% 5%) /* Oscuro arriba */,
              hsl(207 100% 15%) /* Claro abajo */);
  color: #ffffff;
  padding: 100px 0;
  margin-top: 0;
  z-index: 1; /* Asegura que el contenido quede sobre el gradiente */
}

/* Ajustamos el z-index de la línea divisoria para que quede sobre el gradiente */
.about::before {
  z-index: 3;
}

/* Versión móvil */
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
    background: linear-gradient(to bottom, 
                  hsl(207 100% 5%),
                  hsl(207 100% 12%)); /* Gradiente más corto para móvil */
  }
}
/* Ajusta colores de texto para mejor legibilidad */
.about .content h3,
.about .content .fst-italic,
.about .content ul li,
.about .content p {
  color: #ffffff !important;
}

/* Ajusta el color de los íconos */
.about .content ul i {
  color: #2B65E2 !important; /* Mantiene el azul de tu acento */
}


/* Responsive color */

@media (max-width: 768px) {
  .about {
    padding: 60px 0; /* Padding reducido en móvil */
  }
}



/* --------------------------------------------------------------
   Línea divisoria Hero-About (GLOW INTENSO)
-------------------------------------------------------------- */
.about {
  position: relative;
  background-color: hsl(207 100% 5%);
  padding-top: 100px; /* Espacio para la línea */
  margin-top: 0;
}

.about::before {
  content: "";
  position: absolute;
  top: 1px; /* 1px más abajo del borde */
  left: 0;
  right: 0;
  height: 4px; /* Línea más delgada pero con más glow */
  background: #36A3F2;
  box-shadow: 
    0 0 10px #36A3F2,
    0 0 20px #36A3F2,
    0 -5px 30px #36A3F2; /* Efecto glow intenso hacia ARRIBA */
  z-index: 2;
  animation: line-glow 2s infinite alternate; /* Animación opcional */
}

/* Animación para el glow (opcional) */
@keyframes line-glow {
  from {
    opacity: 0.8;
    box-shadow: 0 0 10px #36A3F2, 0 0 20px #36A3F2, 0 -5px 20px #36A3F2;
  }
  to {
    opacity: 1;
    box-shadow: 0 0 15px #36A3F2, 0 0 30px #36A3F2, 0 -10px 40px #36A3F2;
  }
}

/* Versión móvil */
@media (max-width: 768px) {
  .about {
    padding-top: 80px;
  }
  .about::before {
    height: 3px;
    box-shadow: 
      0 0 8px #36A3F2,
      0 0 16px #36A3F2,
      0 -3px 24px #36A3F2;
  }
}

/* Title */
/* Estilo personalizado para el título */
.about .section-title h2 {
  font-family: var(--heading-font);
  font-weight: 700; /* Mismo grosor que el h3 */
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

.about .section-title h2 span.hyper {
  color: #36A3F2; /* Color celeste de la línea */
}

/* Versión móvil */
@media (max-width: 768px) {
  .about .section-title h2 {
    font-size: 2rem;
  }
}

.about .section-title h2 span.hyper {
  text-shadow: 0 0 10px #36A3F2, 
               0 0 20px rgba(54, 163, 242, 0.7);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  background: linear-gradient(to top, 
              hsl(207 100% 5%) /* Oscuro abajo */,
              hsl(207 100% 15%) /* Claro arriba */);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.why-us .card {
  background-color: var(--surface-color); /* Restauramos el fondo original */
  color: var(--default-color); /* Texto oscuro por defecto */
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  margin-bottom: 20px;
  border: 0;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.why-us .card {
  border-radius: 8px; /* Añade curvatura suave */
}


.why-us .card .img {
  border-radius: 8px 8px 0 0; /* Curva solo en esquinas superiores */
}


/* Resto de estilos de las cards (conserva estos) */
.why-us .card .img {
  position: relative;
  padding: 0;
}

.why-us .card .icon {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), white 92%);
  border: 4px solid var(--background-color);
  width: 72px;
  height: 72px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 32px);
  bottom: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 0;
  transition: 0.3s;
}

.why-us .card:hover .icon {
  background-color: #36A3F2;
  color: white;
  box-shadow: 
    0 0 10px #36A3F2,
    0 0 20px rgba(54, 163, 242, 0.7);
  /* Eliminamos TODAS las transformaciones */
  transition: 
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Aseguramos que el icono no tenga transformaciones iniciales */
.why-us .card .icon {
  transform: none !important; /* Fuerza posición estática */
  left: 50%;
  margin-left: -30px; /* Reemplaza el translateX */
}

.why-us .card h2 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  padding: 0;
  margin: 50px 0 12px 0;
}

.why-us .card h2 a {
  color: var(--heading-color);
}

.why-us .card h2 a:hover {
  color: var(--accent-color);
}

.why-us .card p {
  font-size: 18px !important;    /* ← Valor modificado */
  line-height: 1.6 !important;   /* ← Mejor interlineado */
  margin-bottom: 0;
  padding: 0 30px 30px 30px;
  color: var(--default-color);
}

/* Versión móvil */
@media (max-width: 768px) {
  .why-us {
    padding: 60px 0;
    background: linear-gradient(to top, 
                  hsl(207 100% 5%),
                  hsl(207 100% 12%));
  }
  
  .why-us .card {
    margin-bottom: 50px; /* Más espacio para el icono flotante */
  }
}


/* Estilo para el título Why Us*/
.why-us .section-title h2 {
  font-family: var(--heading-font);
  font-weight: 700; /* Mismo grosor que "Desarrollo web independiente..." */
  font-size: 2.5rem;
  color: white !important; /* Fuerza color blanco */
  margin-bottom: 30px;
  text-align: center;
}

/* Versión móvil */
@media (max-width: 768px) {
  .why-us .section-title h2 {
    font-size: 2rem;
  }
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background: linear-gradient(to bottom, 
              hsl(207 100% 5%) /* Oscuro arriba */,
              hsl(207 100% 15%) /* Claro abajo */) !important;
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

/* Título de Services (igual a Why Us) */
.services .section-title h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.5rem;
  color: white !important;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}


/* Añade este estilo para el subrayado de Services */
.services .section-title h2 {
  position: relative;
  padding-bottom: 15px;
}

.services .section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background: #2B65E2; /* Color sólido sin efectos */
  border-radius: 50%;
}

/* Contenedor de servicios */
.services .container {
  padding-top: 30px;
}

/* Tarjetas de servicios */
.services .service-item {
  background: rgba(11, 20, 44, 0.7) !important;
  border: 2px solid #2B65E2;
  color: #31a2ff;
  box-shadow: 
    0 0 5px #2B65E2,
    0 0 10px rgba(43, 101, 226, 0.3);
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 12px #2B65E2,
    0 0 25px rgba(43, 101, 226, 0.5);
}

/* Iconos */
.services .service-item .icon {
  background: rgba(54, 163, 242, 0.1) !important;
  border: 2px solid #36A3F2 !important;
  color: #36A3F2 !important;
  box-shadow: 
    0 0 3px #36A3F2,
    0 0 6px rgba(54, 163, 242, 0.25);
  filter: drop-shadow(0 0 2px #36A3F2);
  text-shadow: 0 0 3px #36A3F2;
  width: 72px;
  height: 72px;
  font-size: 28px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.services .service-item:hover .icon {
  background: #36A3F2 !important;
  color: white !important;
  box-shadow: 
    0 0 12px #36A3F2,
    0 0 25px rgba(54, 163, 242, 0.6);
  transform: scale(1.05);
}

/* Contenido de las tarjetas */
.services .service-item h3 {
  color: white !important;
  text-shadow: 0 0 3px #2B65E2;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-align: center;
}
/* Card p size */
.services .service-item p {
  color: #a8d0ff !important;
  margin: 0;
  font-size: 18px !important;
  line-height: 1.6;
  text-align: center;
}

/* Versión móvil */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
    background: linear-gradient(to bottom, 
                  hsl(207 100% 5%),
                  hsl(207 100% 12%)) !important;
  }
  
  .services .section-title h2 {
    font-size: 2rem;
  }
  
  .services .service-item {
    padding: 25px;
  }
  
  .services .service-item .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

@media (min-width: 992px) {
  .contact .info-item.info-item-borders {
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  }
}

.contact .php-email-form {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Neon Card Sections (Mi Misión, Our Plan, Our Vision)
--------------------------------------------------------------*/
.neon-card {
  background: transparent;
  border: 2px solid #2B65E2;
  color: #31a2ff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 0 10px #2B65E2,
    0 0 20px rgba(43, 101, 226, 0.5);
  animation: neon-pulse 2s infinite alternate;
  transition: all 0.3s ease;
}

.neon-card:hover {
  background: rgba(43, 101, 226, 0.1);
  box-shadow: 
    0 0 15px #2B65E2,
    0 0 30px rgba(43, 101, 226, 0.8);
  transform: translateY(-5px);
}

.neon-card h3 {
  color: #ffffff !important;
  text-shadow: 
    0 0 5px #2B65E2,
    0 0 10px rgba(43, 101, 226, 0.7);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.neon-card p {
  color: #a8d0ff !important;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contenedor flexible para desktop */
@media (min-width: 768px) {
  .neon-card-container {
    display: flex;
    gap: 20px;
  }
  .neon-card {
    flex: 1;
  }
}

/*  */
/* Ajustes para las cards neón en Why Us */
.why-us .neon-card {
  background: rgba(11, 20, 44, 0.7) !important;
  border: 2px solid #2B65E2;
  color: #31a2ff;
  box-shadow: 0 0 10px #2B65E2, 0 0 20px rgba(43, 101, 226, 0.5);
  animation: neon-pulse 2s infinite alternate;
  transition: all 0.3s ease;
  border-radius: 8px;
  height: 100%;
}

.why-us .neon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #2B65E2, 0 0 30px rgba(43, 101, 226, 0.8);
}

.why-us .neon-card .title a {
  color: white !important;
  text-shadow: 0 0 5px #2B65E2;
}

.why-us .neon-card p {
  color: #a8d0ff !important;
}

.why-us .neon-card .icon {
  background: rgba(43, 101, 226, 0.2) !important;
  border: 2px solid #2B65E2;
  color: #31a2ff !important;
  box-shadow: 0 0 10px rgba(43, 101, 226, 0.5);
}

.why-us .neon-card:hover .icon {
  background: #2B65E2 !important;
  color: white !important;
  box-shadow: 0 0 15px #2B65E2;
}
/*  */


.neon-title {
  position: relative;
  padding-bottom: 15px;
  color: #ffffff !important;
  text-shadow: 0 0 5px #2B65E2;
}

.neon-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background: #2B65E2;
  box-shadow: 
    0 0 10px #2B65E2,
    0 0 20px rgba(43, 101, 226, 0.8);
  border-radius: 50%;
}


/* Igualar tamaño de fuente en todas las tarjetas */
.neon-card,
.neon-card p,
.neon-card .neon-list li {
  font-size: 18px !important; /* Mismo tamaño que la lista */
}

/* Lista Segunda carta */

.neon-card .neon-list {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.neon-card .neon-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #a8d0ff;
  line-height: 1.5;
}

.neon-card .neon-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232B65E2'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: contain;
  filter: drop-shadow(0 0 2px #2B65E2);
}
/*  */


/*----------------------- Services background ---------------------------*/

/* Fondo para Services (igual que About) */
.services {
  background: linear-gradient(to bottom, 
              hsl(207 100% 5%) /* Oscuro arriba */,
              hsl(207 100% 15%) /* Claro abajo */) !important;
  color: #ffffff;
  position: relative;
  padding: 100px 0;
  z-index: 1;
}


/* Ajustes para móvil */
@media (max-width: 768px) {
  .services {
    padding: 60px 0;
    background: linear-gradient(to bottom, 
                  hsl(207 100% 5%),
                  hsl(207 100% 12%)) !important;
  }
  .services::before {
    height: 3px;
  }
}


/* Color de texto para títulos y contenido */
.services .section-title h2,
.services .service-item h3 {
  color: white !important;
  text-shadow: 0 0 5px #2B65E2;
}

.services .service-item p {
  color: #a8d0ff !important;
}

/* Ajuste de cards de servicios */
.services .service-item {
  background: rgba(11, 20, 44, 0.7) !important;
  border: 1px solid #2B65E2;
}

/* Iconos de las tarjetas whyus */
.why-us .card .icon {
  background: rgba(54, 163, 242, 0.15) !important;
  border: 2px solid #36A3F2 !important;
  color: #36A3F2 !important;
  box-shadow: 
    0 0 10px #36A3F2,
    0 0 20px rgba(54, 163, 242, 0.7),
    0 0 30px rgba(54, 163, 242, 0.4);
  filter: drop-shadow(0 0 5px #36A3F2);
  text-shadow: 0 0 8px #36A3F2;
  animation: neon-pulse 1.5s infinite alternate;
}

.why-us .card:hover .icon {
  background: #36A3F2 !important;
  color: white !important;
  box-shadow: 
    0 0 15px #36A3F2,
    0 0 30px rgba(54, 163, 242, 0.9),
    0 0 45px rgba(54, 163, 242, 0.6);
  transform: scale(1.05);
}


/* Why Us Section - Iconos con brillo reducido */
.why-us .card .icon {
  background: rgba(54, 163, 242, 0.1) !important;
  border: 2px solid #36A3F2 !important;
  color: #36A3F2 !important;
  box-shadow: 
    0 0 3px #36A3F2,
    0 0 6px rgba(54, 163, 242, 0.25);
  filter: drop-shadow(0 0 2px #36A3F2);
  text-shadow: 0 0 3px #36A3F2;
  width: 72px;
  height: 72px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.why-us .card:hover .icon {
  background: #36A3F2 !important;
  color: white !important;
  box-shadow: 
    0 0 12px #36A3F2,
    0 0 25px rgba(54, 163, 242, 0.6);
  transform: scale(1.05);
}

/* Why Us - Tarjetas estáticas */
.why-us .card {
  background: rgba(11, 20, 44, 0.7) !important;
  border: 2px solid #2B65E2;
  color: #31a2ff;
  box-shadow: 
    0 0 4px #2B65E2,
    0 0 8px rgba(43, 101, 226, 0.25);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.why-us .card:hover {
  box-shadow: 
    0 0 12px #2B65E2,
    0 0 25px rgba(43, 101, 226, 0.45);
}

/* Services Section - Iconos con brillo reducido */
.services .service-item .icon {
  background: rgba(54, 163, 242, 0.1) !important;
  border: 2px solid #36A3F2 !important;
  color: #36A3F2 !important;
  box-shadow: 
    0 0 3px #36A3F2,
    0 0 6px rgba(54, 163, 242, 0.25);
  filter: drop-shadow(0 0 2px #36A3F2);
  text-shadow: 0 0 3px #36A3F2;
  width: 72px;
  height: 72px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.services .service-item:hover .icon {
  background: #36A3F2 !important;
  color: white !important;
  box-shadow: 
    0 0 12px #36A3F2,
    0 0 25px rgba(54, 163, 242, 0.6);
  transform: scale(1.05);
}

/* Services - Tarjetas estáticas */
.services .service-item {
  background: rgba(11, 20, 44, 0.7) !important;
  border: 2px solid #2B65E2;
  color: #31a2ff;
  box-shadow: 
    0 0 4px #2B65E2,
    0 0 8px rgba(43, 101, 226, 0.25);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.services .service-item:hover {
  box-shadow: 
    0 0 12px #2B65E2,
    0 0 25px rgba(43, 101, 226, 0.45);
}

/* Eliminar animaciones de pulsación si no se usan en otro lugar */
@keyframes neon-pulse {
  /* Puedes eliminar esta keyframe si no se usa en otro lugar */
}

/* Contact us styles*/

/*--------------------------------------------------------------
# Contact Section (Fondo igual a Why Us)
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(to top, 
              hsl(207 100% 5%) /* Oscuro abajo */,
              hsl(207 100% 15%) /* Claro arriba */) !important;
  color: #ffffff;
  padding: 80px 0;
  position: relative;
}

/* Ajustes para los textos y formulario */
.contact .section-title h2,
.contact .section-title p,
.contact .info-item h3,
.contact .info-item p {
  color: white !important;
  text-shadow: 0 0 5px rgba(43, 101, 226, 0.5);
}

/* Estilo de los íconos de contacto */
.contact .info-item i {
  color: #36A3F2 !important;
  filter: drop-shadow(0 0 3px #36A3F2);
}

/* Estilo del formulario */
.contact .php-email-form {
  background: rgba(11, 20, 44, 0.7) !important;
  border: 2px solid #2B65E2;
  box-shadow: 
    0 0 10px #2B65E2,
    0 0 20px rgba(43, 101, 226, 0.5);
  border-radius: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1px solid rgba(43, 101, 226, 0.5);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact .php-email-form button[type="submit"] {
  background: #2B65E2 !important;
  color: white !important;
  border: none;
  box-shadow: 0 0 10px #2B65E2;
  transition: all 0.3s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #36A3F2 !important;
  box-shadow: 0 0 15px #36A3F2;
}

/*--------------------------------------------------------------
# Contact Section Title
--------------------------------------------------------------*/
.contact .section-title h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.5rem;
  color: white !important;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.contact .section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 3px;
  background: #36A3F2;
  box-shadow: 
    0 0 10px #36A3F2,
    0 0 20px rgba(54, 163, 242, 0.7);
  border-radius: 50%;
}

/* Versión móvil */
@media (max-width: 768px) {
  .contact .section-title h2 {
    font-size: 2rem;
  }
}


/* Centrar los 3 íconos de redes sociales */
.footer .social-links {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  gap: 15px; /* Espacio entre íconos */
  margin: 0 0 15px 0;
}

/* Asegurar que los íconos mantengan sus estilos actuales */
.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(54, 163, 242, 0.15) !important;
  color: #36A3F2 !important;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  border: 1px solid rgba(54, 163, 242, 0.4);
}

/* Efectos hover (se mantienen igual) */
.footer .social-links a:hover {
  background: #36A3F2 !important;
  color: white !important;
  box-shadow: 0 0 12px #36A3F2, 0 0 25px rgba(54, 163, 242, 0.6);
  transform: translateY(-3px);
}

/* Estilos botones info al enviar form */
/* ========== ESTILOS MODERNOS PARA MENSAJES DEL FORMULARIO ========== */
.form-messages {
  position: relative;
  width: 100%;
  margin: 20px 0;
}

.form-messages > div {
  display: none;
  padding: 20px;
  border-radius: 12px;
  margin: 15px 0;
  text-align: center;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.5s ease-out;
  transition: all 0.3s ease;
}

/* Mensaje de carga (sin animación de spinner) */
.message-loading {
  background: rgba(43, 101, 226, 0.15);
  border-color: #2B65E2 !important;
  color: #31a2ff;
  box-shadow: 
    0 0 15px rgba(43, 101, 226, 0.4),
    inset 0 0 20px rgba(43, 101, 226, 0.1) !important;
}

/* Mensaje de error */
.message-error {
  background: rgba(220, 53, 69, 0.15);
  border-color: #dc3545 !important;
  color: #ff6b7f;
  box-shadow: 
    0 0 15px rgba(220, 53, 69, 0.4),
    inset 0 0 20px rgba(220, 53, 69, 0.1) !important;
}

/* Mensaje de éxito */
.message-success {
  background: rgba(40, 167, 69, 0.15);
  border-color: #28a745 !important;
  color: #6eff8b;
  box-shadow: 
    0 0 20px rgba(40, 167, 69, 0.5),
    inset 0 0 25px rgba(40, 167, 69, 0.15) !important;
  animation: successPulse 2s infinite alternate;
}

/* Iconos */
.form-messages i {
  font-size: 24px;
  margin-right: 12px;
  vertical-align: middle;
  filter: drop-shadow(0 0 3px currentColor);
}

/* Texto */
.form-messages span {
  vertical-align: middle;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

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

@keyframes successPulse {
  from {
    box-shadow: 
      0 0 15px rgba(40, 167, 69, 0.4),
      inset 0 0 20px rgba(40, 167, 69, 0.1);
  }
  to {
    box-shadow: 
      0 0 25px rgba(40, 167, 69, 0.7),
      inset 0 0 30px rgba(40, 167, 69, 0.2);
  }
}

/* Efectos hover */
.form-messages > div:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 25px rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .form-messages > div {
    padding: 15px;
    margin: 10px 0;
  }
  
  .form-messages i {
    font-size: 20px;
    margin-right: 8px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section (mantén esto si lo usas)
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}