/* Fonts - VALISOFT 2026 Dark Theme */

/* Custom Goldplay fonts */
@font-face {
  font-family: 'Goldplay Semi Bold';
  src: url('../font/goldplay-semi-bold.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Goldplay light';
  src: url('../font/goldplay-light.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Goldplay Regular';
  src: url('../font/Goldplay-Regular.ttf') format('truetype');
  font-style: normal;
}

/* ============================================
   VALISOFT 2026 - Light Corporate Theme
   Inspirado en Capitole Consulting
   ============================================ */
:root {
  /* Fonts - Goldplay (original) */
  --default-font: "Goldplay Regular", "Poppins", system-ui, -apple-system, sans-serif;
  --heading-font: "Goldplay Semi Bold", "Poppins", sans-serif;
  --nav-font: "Goldplay light", "Poppins", sans-serif;
  --mono-font: "JetBrains Mono", "Fira Code", monospace;

  /* Light Theme - Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f7f8f9;
  --bg-surface: #f0f0f0;
  --bg-surface-rgb: 240, 240, 240;

  /* Accent Colors */
  --accent-blue: #1e73be;
  --accent-blue-rgb: 30, 115, 190;
  --accent-cyan: #0891b2;
  --accent-cyan-rgb: 8, 145, 178;
  --accent-red: #c92e4c;
  --accent-red-rgb: 201, 46, 76;
  --accent-orange: #F97316;
  --accent-orange-rgb: 249, 115, 22;
  --accent-green: #16a34a;
  --accent-green-rgb: 22, 163, 74;

  /* Text Colors */
  --text-primary: #222222;
  --text-secondary: #575760;
  --text-tertiary: #8a8a8a;

  /* Legacy variables for compatibility */
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #575760;
  --default-color-rgb: 87, 87, 96;
  --heading-color: #222222;
  --heading-color-rgb: 34, 34, 34;
  --accent-color: #c92e4c;
  --accent-color-rgb: 201, 46, 76;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;

  /* Spacing */
  --section-padding: 100px;
  --container-padding: 80px;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 100px;
}

/* Nav Menu Colors - Light Theme */
:root {
  --nav-color: #575760;
  --nav-hover-color: #c92e4c;
  --nav-dropdown-color: #222222;
  --nav-dropdown-hover-color: #c92e4c;
  --nav-dropdown-background-color: #ffffff;
}

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

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

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

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

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

.section-title span{
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #242424;
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --heading-color: #ffffff;
  --heading-color: #ffffff;
  --heading-color-rgb: 255, 255, 255;
  --contrast-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contactanos-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contactanos-info i a,
.header .topbar .contactanos-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contactanos-info i a,
  .header .topbar .contactanos-info i span {
    font-size: 18px;
  }
}

.header .topbar .contactanos-info i a {
  line-height: 0;
  transition: 0.3s;
  font-size: 13px;
}

.header .topbar .contactanos-info i span {
  font-size: 13px;
}

.header .topbar .contactanos-info .bi {
  font-size: 14px;
  margin-right: 4px;
}

.header .topbar .contactanos-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: rgba(var(--default-color-rgb), 0.6);
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
  margin-right: 8px;
  font-size: 15px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  background-color: rgba(var(--default-color-rgb), 0.05);
}

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

.header .logo img {
  max-height: 110px;
  margin-right: 4px;
  margin-top: -15px;
  margin-bottom: -15px;
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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: 28px 15px;
    margin-left: 2px;
    font-size: 18px;
    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:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    background-color: var(--nav-hover-color);
  }


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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: 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;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 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: rgba(var(--accent-color-rgb), 0.1);
  }

  .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);
  }



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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #0c0c0c;
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --heading-color: #f9f9f9;
  --heading-color: #f9f9f9;
  --heading-color-rgb: 249, 249, 249;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.footer .footer-acerca {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--default-color-rgb), 0.05);
  border-top: 4px solid var(--accent-color);
  padding: 30px 20px;
}

.footer .footer-acerca .logo {
  margin-bottom: 5px;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 36px;
  padding: 0;
  font-weight: 700;
}

.footer .footer-acerca p {
  font-size: 14px;
  text-align: center;
  font-family: var(--heading-font);
  font: 100% sans-serif;
}

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

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



.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

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

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

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

.footer .footer-links ul a {
  color: rgba(var(--default-color-rgb), 0.7);
  display: inline-block;
  line-height: 1;
}

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

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

.footer .footer-contactanos span{
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 0;
  border: 1px solid rgba(var(--default-color-rgb), 0.2);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -8px -9px -8px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
}

.footer .footer-newsletter .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-top: 10px;
}

.footer .footer-newsletter .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(--background-color);
  animation: subscription-loading 1s linear infinite;
}

@keyframes subscription-loading {
  0% {
    transform: rotate(0deg);
  }

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

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px; /* Alineado con FAB */
  bottom: 85px; /* Pegado arriba del FAB (24 + 50 + 11 gap) */
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.4s ease;
}

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

.scroll-top:hover {
  background-color: rgba(var(--accent-color-rgb), 0.8);
  color: var(--contrast-color);
}

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

.scroll-top.fab-expanded {
  bottom: 205px; /* Sube cuando FAB está desplegado (85 + 120 de botones) */
}

/*--------------------------------------------------------------
# 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 {
  --background-color: #0c0c0c;
  --default-color: var(--contrast-color);
  --default-color-rgb: var(--contrast-color-rgb);
  --heading-color: var(--contrast-color);
  --accent-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 2px;
  color: rgba(var(--heading-color-rgb), 0.05);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1.5;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  margin: 0 10px 0;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 34px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 34px;
  }
}

/*--------------------------------------------------------------
# inicio Section
--------------------------------------------------------------*/
.inicio {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color-rgb: 0, 0, 0;
  --heading-color: #ffffff;
  --heading-color-rgb: 169, 167, 167;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 160px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.inicio:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.7);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.inicio h1 {
  margin: 0;
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 700;
}

.inicio p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: var(--heading-color);
}

.inicio .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 15px;
  display: inline-block;
  padding: 8px 30px;
  margin: 30px 0 0 0;
  transition: 0.5s;
  text-transform: uppercase;
  border: 2px solid rgba(var(--default-color-rgb), 0.8);
}

.inicio .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .inicio h2 {
    font-size: 32px;
  }

  .inicio p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# acerca Section
--------------------------------------------------------------*/
.acerca .content{
  align-content: center;
}

.acerca .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.acerca .content ul {
  margin-top: 3%;
  list-style: none;
  padding: 0;
}

.acerca .content ul li {
  padding-bottom: 3px;
}

.acerca .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.frase{
  text-align: justify;
  margin-top: 3%;
}




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

.acerca .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 30px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.acerca .content .read-more:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
  padding-right: 25px;
}

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

.acerca img{
  width: 100%;
  height: auto;
}



/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card {
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid rgba(var(--default-color-rgb), 0.1);
  padding: 40px;
  margin: -1px;
  border-radius: 0;
}

.cards .card span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent-color);
}

.cards .card h4 {
  color: rgba(var(--heading-color-rgb), 0.8);
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card p {
  color: rgba(var(--default-color-rgb), 0.6);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  --background-color: rgba(var(--default-color-rgb), .05);
  padding: 15px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --default-color: #ffffff;
  --background-color-rgb: 0, 0, 0;
  --contrast-color: #ffffff;
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.eventos .eventos-filters {
  padding: 150;
  margin: 80 auto 20px auto;
  list-style: none;
  text-align: center;
}

.eventos .eventos-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.eventos .eventos-filters li:hover,
.eventos .eventos-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.eventos .eventos-filters li:first-child {
  margin-left: 0;
}

.eventos .eventos-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .eventos .eventos-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.eventos .eventos-item {
  position: relative;
  overflow: hidden;
}

.eventos .eventos-item .eventos-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: rgba(var(--background-color-rgb), 0.9);
  padding: 15px;
}

.eventos .eventos-item .eventos-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.eventos .eventos-item .eventos-info p {
  color: rgba(var(--default-color-rgb), 0.7);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.eventos .eventos-item .eventos-info .preview-link,
.eventos .eventos-item .eventos-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--default-color-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}

.eventos .eventos-item .eventos-info .preview-link:hover,
.eventos .eventos-item .eventos-info .details-link:hover {
  color: var(--accent-color);
}

.eventos .eventos-item .eventos-info .details-link {
  right: 14px;
  font-size: 28px;
}

.eventos .eventos-item:hover .eventos-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(var(--default-color-rgb), 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(var(--default-color-rgb), 0.4);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: rgba(var(--default-color-rgb), 0.7);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(var(--default-color-rgb), 0.4);
}

.pricing ul .na i {
  color: rgba(var(--default-color-rgb), 0.4);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: rgba(var(--default-color-rgb), 0.6);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid rgba(var(--default-color-rgb), 0.4);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: rgba(var(--background-color-rgb), 0.08);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  border: 1px solid rgba(var(--default-color-rgb), 0.1);
  text-align: center;
  margin-bottom: 20px;
}

.team .member img {
  border-radius: 50%;
  max-width: 60%;
  margin: 30px 0;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

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

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: rgba(var(--default-color-rgb), 0.8);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: rgba(var(--default-color-rgb), 0.6);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: rgba(var(--default-color-rgb), 0.4);
  transition: 0.3s;
}

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

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contactanos .info-item {
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
}

.contactanos .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-in-out;
  border-radius: 50%;
  border: 2px dotted rgba(var(--accent-color-rgb), 0.6);
}

.contactanos .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

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

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

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.eventos-details .eventos-details-slider img {
  width: 100%;
}

.eventos-details .eventos-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.eventos-details .eventos-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--default-color-rgb), 0.15);
  opacity: 1;
}

.eventos-details .eventos-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.eventos-details .eventos-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(var(--default-color-rgb), 0.1);
}

.eventos-details .eventos-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--default-color-rgb), 0.15);
}

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

.eventos-details .eventos-info ul li+li {
  margin-top: 10px;
}

.eventos-details .eventos-description {
  padding-top: 30px;
}

.eventos-details .eventos-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.eventos-details .eventos-description p {
  padding: 0;
  color: rgba(var(--default-color-rgb), 0.7);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#iconwhatsapp {
  color: #059652;
  font-size: 20px;
}

#textblack {
  color: #000000;
}

/* ============================================
   VALISOFT 2026 - New Dark Theme Sections
   ============================================ */

/* Global Light Body */
body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
}

/* ============================================
   Light Header (Corporate Style)
   ============================================ */
.header-dark {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.header-dark .branding {
  background: transparent;
  padding: 16px 0;
}

.header-dark .branding .container {
  max-width: 1200px;
}

.header-dark .logo img {
  max-height: 90px;
}

.header-dark .navmenu a {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 12px 22px;
}

.header-dark .navmenu a:hover,
.header-dark .navmenu .active {
  color: var(--accent-red);
  background: transparent;
}

.header-dark .topbar {
  background: var(--accent-red);
  border-bottom: none;
  height: 40px;
}

.header-dark .topbar .contactanos-info i {
  color: #ffffff;
  font-size: 14px;
}

.header-dark .topbar .contactanos-info a,
.header-dark .topbar .contactanos-info span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.header-dark .topbar .contactanos-info a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header-dark .topbar .social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-dark .topbar .social-links a {
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
}

.header-dark .topbar .social-links a:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Header CTA Button */
.header-cta {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c3c 100%) !important;
  color: #ffffff !important;
  padding: 13px 28px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(201, 46, 76, 0.25);
}

.header-cta:hover {
  background: linear-gradient(135deg, #b91c3c 0%, #a82540 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 46, 76, 0.35);
}

.navmenu li .header-cta {
  margin: 0;
  padding: 14px 32px !important;
}

/* Alinear el li del CTA con el resto del menú */
.navmenu ul li:last-child {
  display: flex;
  align-items: center;
}

/* Asegurar que topbar y branding estén alineados horizontalmente */
.header-dark .topbar .container,
.header-dark .branding .container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

/* Alinear los social-links del topbar con el botón CONTACTAR */
.header-dark .topbar .social-links {
  margin-right: 0;
  padding-right: 5px;
}

/* El último ícono no necesita margen */
.header-dark .topbar .social-links a:last-child {
  margin-right: 0;
}

/* ============================================
   Hero Enterprise Section
   ============================================ */
.hero-enterprise {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(8, 145, 178, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 46, 76, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.min-vh-80 {
  min-height: 80vh;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), #0284c7);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-main-title {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-main-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c3c 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 46, 76, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 46, 76, 0.4);
  color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.hero-trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.trust-badge i {
  color: var(--accent-green);
  font-size: 18px;
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  padding: 20px;
}

.hero-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 24px;
  color: var(--accent-cyan);
}

.floating-card strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-card span {
  font-size: 12px;
  color: var(--text-tertiary);
}

.floating-card.card-1 {
  top: 40px;
  left: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 100px;
  left: -40px;
  animation-delay: 1s;
}

.floating-card.card-3 {
  top: 120px;
  right: -20px;
  animation-delay: 2s;
}

.floating-card.card-3 i {
  color: var(--accent-green);
}

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

/* ============================================
   Hero Dual Section (NORA + Servicios 50/50)
   ============================================ */
.hero-dual {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

.hero-dual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(201, 46, 76, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-dual .container {
  position: relative;
  z-index: 1;
}

.hero-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.hero-card {
  padding: 48px 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-8px);
}

/* NORA Card */
.hero-card.nora {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #f59e0b;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.hero-card.nora:hover {
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.25);
}

/* Servicios Card */
.hero-card.servicios {
  background: linear-gradient(135deg, #fff1f2 0%, #fecdd3 100%);
  border: 2px solid #c92e4c;
  box-shadow: 0 10px 40px rgba(201, 46, 76, 0.15);
}

.hero-card.servicios:hover {
  box-shadow: 0 20px 50px rgba(201, 46, 76, 0.25);
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-badge.pulse {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  animation: pulse-badge 2s infinite;
}

.hero-badge.available {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
}

/* Hero Card Titles */
.hero-card h2 {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1;
}

.hero-card.nora h2 {
  color: #b45309;
}

.hero-card.servicios h2 {
  color: #9f1239;
}

/* Hero Card Text */
.hero-card .hero-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.hero-card .hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Hero Buttons */
.btn-hero-nora {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-hero-nora:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  color: white;
}

.btn-hero-servicios {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #c92e4c, #9f1239);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 46, 76, 0.3);
}

.btn-hero-servicios:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 46, 76, 0.4);
  color: white;
}

/* Hero Note */
.hero-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-trust span i {
  color: var(--accent-green);
  font-size: 18px;
}

/* Responsive Hero Dual */
@media (max-width: 991px) {
  .hero-dual {
    padding: 140px 0 60px;
  }

  .hero-dual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-card {
    padding: 36px 28px;
  }

  .hero-card h2 {
    font-size: 36px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero-dual {
    padding: 120px 0 40px;
  }

  .hero-card {
    padding: 28px 20px;
  }

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

  .hero-card .hero-tagline {
    font-size: 16px;
  }

  .btn-hero-nora,
  .btn-hero-servicios {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
  }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
  background: var(--accent-red);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   Logos Section
   ============================================ */
.logos-section {
  background: white;
  padding: 80px 0;
  border-bottom: 1px solid #e5e5e5;
}

.logos-title {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-tertiary);
  margin-bottom: 30px;
}

.logos-carousel {
  overflow: hidden;
}

.logos-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-item {
  flex-shrink: 0;
}

.logo-item img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   Industries Section
   ============================================ */
.industries-section {
  background: var(--bg-secondary);
  padding: var(--section-padding) 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-cyan);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(201, 46, 76, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.industry-icon i {
  font-size: 28px;
  color: var(--accent-cyan);
}

.industry-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Hero Dual Section OLD - keeping for compatibility */
.hero-dual {
  background: var(--bg-secondary);
  padding: 160px 20px 80px;
  min-height: auto;
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 48px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* NORA Card */
.hero-card.nora {
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Servicios Card */
.hero-card.servicios {
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-card.servicios:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--accent-red);
}

/* Badge Styles (Light Theme) */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-pill.cyan {
  background: rgba(var(--accent-cyan-rgb), 0.1);
  color: var(--accent-cyan);
}

.badge-pill.green {
  background: rgba(var(--accent-green-rgb), 0.1);
  color: var(--accent-green);
}

.badge-pill i {
  font-size: 12px;
}

/* Hero Titles - Corporate Style */
.hero-title {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.hero-title.cyan {
  color: var(--accent-cyan);
}

.hero-title.white {
  color: var(--text-primary);
}

.hero-subtitle {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  max-width: 500px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 420px;
}

/* Tech Badges (Python, UiPath, etc.) */
.tech-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
}

.tech-badge.python {
  background: rgba(var(--accent-cyan-rgb), 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(var(--accent-cyan-rgb), 0.2);
}

.tech-badge.enterprise {
  background: rgba(var(--accent-red-rgb), 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(var(--accent-red-rgb), 0.2);
}

/* CTA Buttons (Corporate Style) */
.btn-primary-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-cyan);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary-cyan:hover {
  background: #0284c7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--accent-cyan-rgb), 0.3);
}

.btn-primary-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-red);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-red:hover {
  background: #a82540;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--accent-red-rgb), 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid #d1d5db;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* ============================================
   Trust Section (Light)
   ============================================ */
.trust-section {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
}

/* ============================================
   Testimonial Section
   ============================================ */
.testimonial-section {
  background: var(--bg-secondary);
  padding: 60px 0;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-left: 4px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-content i {
  font-size: 40px;
  color: var(--accent-red);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}

.testimonial-content p {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-info strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

.author-info span {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   Contact Form Section
   ============================================ */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-primary);
  background: #fafafa;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--accent-red-rgb), 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-tertiary);
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-note {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
  text-align: center;
}

/* Contact Info Card */
.contact-info-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 100%;
}

.contact-info-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-method:hover {
  padding-left: 8px;
}

.contact-method a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  width: 100%;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-icon.whatsapp {
  background: #25D366;
}

.contact-icon.email {
  background: var(--accent-cyan);
}

.contact-icon.linkedin {
  background: #0A66C2;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-details strong {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-details span {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-details small {
  font-size: 12px;
  color: var(--text-tertiary);
}

.contact-guarantee {
  margin-top: 24px;
  padding: 20px;
  background: rgba(var(--accent-green-rgb), 0.08);
  border-radius: var(--radius-md);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-guarantee i {
  font-size: 24px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.contact-guarantee p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.contact-guarantee strong {
  color: var(--text-primary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  color: var(--accent-red);
  font-size: 22px;
}

.trust-item span {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ============================================
   Section Headers (Light Theme)
   ============================================ */
.section-dark {
  background: var(--bg-secondary);
  padding: var(--section-padding) 0;
}

.section-darker {
  background: var(--bg-primary);
  padding: var(--section-padding) 0;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-red) 0%, #e84a67 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 8px 20px;
  border-radius: 50px;
}

.section-title-new {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Problem Cards (NORA Section) - Light
   ============================================ */
.problem-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.problem-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 32px;
  width: 260px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.problem-card i {
  color: var(--accent-orange);
  font-size: 28px;
}

.problem-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* ============================================
   Steps Cards (How It Works) - Light
   ============================================ */
.steps-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 32px;
  width: 320px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.step-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   Benefits Grid - Light
   ============================================ */
.benefits-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 32px;
  width: 260px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--accent-red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
  color: var(--accent-red);
  font-size: 28px;
}

.benefit-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   NORA Section - Enterprise Style
   ============================================ */
.nora-section {
  background: var(--bg-secondary);
  padding: var(--section-padding) 0;
}

.nora-features-list {
  margin-top: 32px;
}

.nora-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.nora-feature:last-child {
  border-bottom: none;
}

.feature-icon-sm {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-sm i {
  font-size: 20px;
  color: var(--accent-cyan);
}

.nora-feature strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.nora-feature span {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* NORA Technical Features Grid */
.nora-tech-features {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  margin-bottom: 40px;
}

.nora-tech-features h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.tech-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tech-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.tech-feature-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.tech-feature-item i {
  font-size: 24px;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.tech-feature-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.tech-feature-item span {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .tech-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tech-features-grid {
    grid-template-columns: 1fr;
  }
  .nora-tech-features {
    padding: 32px 20px;
  }
}

.nora-mockup-container {
  position: relative;
  padding: 20px;
}

.nora-mockup-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mockup-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #0284c7 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.4);
}

/* NORA Action Card - Unified "How it works" + CTA */
.nora-action-card {
  background: white;
  border-radius: 12px;
  padding: 60px 50px;
  margin-top: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
}

.nora-action-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}

/* NORA Visual Divider */
.nora-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d1d5db, transparent);
  margin: 50px 0;
}

/* NORA CTA Content */
.nora-cta-content {
  text-align: center;
}

.nora-cta-content .cta-label {
  color: var(--accent-red);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.nora-cta-content .cta-headline {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.nora-cta-content .cta-headline span {
  color: var(--accent-green);
}

.nora-cta-content .cta-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
}

.nora-cta-content .cta-note strong {
  color: #dc2626;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c3c 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(201, 46, 76, 0.3);
}

.step-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-cyan) 100%);
  margin-top: 30px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nora-mockup-image {
    height: 300px;
  }

  .nora-action-card {
    padding: 40px 24px;
  }

  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .process-connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }

  .process-step {
    max-width: 100%;
  }

  .nora-divider {
    margin: 40px 0;
  }

  .nora-cta-content .cta-headline {
    font-size: 18px;
  }
}

/* ============================================
   Services Section - Enterprise Style
   ============================================ */
.services-section {
  background: var(--bg-primary);
  padding: var(--section-padding) 0;
}

.services-highlights {
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.highlight-item i {
  color: var(--accent-green);
  font-size: 18px;
}

.services-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-card-new {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.service-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-new.python:hover {
  border-color: var(--accent-cyan);
}

.service-card-new.enterprise:hover {
  border-color: var(--accent-red);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(8, 145, 178, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 26px;
  color: var(--accent-cyan);
}

.service-icon.red {
  background: linear-gradient(135deg, rgba(201, 46, 76, 0.15) 0%, rgba(201, 46, 76, 0.05) 100%);
}

.service-icon.red i {
  color: var(--accent-red);
}

.service-tag {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #0284c7 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-tag.red {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c3c 100%);
}

.service-card-new h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card-new > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-list-new {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.service-list-new li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid #f0f0f0;
}

.service-list-new li:last-child {
  border-bottom: none;
}

.service-list-new li i {
  color: var(--accent-green);
  font-size: 16px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-cta:hover {
  gap: 12px;
  color: #0284c7;
}

.service-cta.red {
  color: var(--accent-red);
}

.service-cta.red:hover {
  color: #b91c3c;
}

/* Process Cards */
.process-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  height: 100%;
}

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

.process-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c3c 100%);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 20px;
}

.process-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-hero-image {
    height: 280px;
    margin-top: 30px;
  }
}

/* ============================================
   Pricing Section - Grid Layout
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Header */
.pricing-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.pricing-badge.cyan {
  background: rgba(8, 145, 178, 0.1);
  color: var(--accent-cyan);
}

.pricing-badge.red {
  background: rgba(201, 46, 76, 0.1);
  color: var(--accent-red);
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Body */
.pricing-body {
  padding: 28px;
  flex: 1;
}

.pricing-price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-price .discount {
  display: block;
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1.1;
}

.pricing-price .custom {
  display: block;
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-red);
  line-height: 1.1;
}

.pricing-price .duration {
  display: block;
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-features li i {
  color: var(--accent-green);
  font-size: 16px;
  flex-shrink: 0;
}

/* Footer */
.pricing-footer {
  padding: 24px 28px 28px;
  text-align: center;
  background: #fafafa;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-btn.cyan {
  background: var(--accent-cyan);
  color: #ffffff;
}

.pricing-btn.cyan:hover {
  background: #0284c7;
  transform: translateY(-2px);
}

.pricing-btn.red {
  background: var(--accent-red);
  color: #ffffff;
}

.pricing-btn.red:hover {
  background: #b91c3c;
  transform: translateY(-2px);
}

.pricing-note {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

/* Popular Card Highlight */
.pricing-card.popular {
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 8px 30px rgba(8, 145, 178, 0.15);
  position: relative;
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  box-shadow: 0 12px 40px rgba(8, 145, 178, 0.25);
}

.pricing-badge.popular {
  background: linear-gradient(135deg, var(--accent-cyan), #0284c7);
  color: #ffffff;
}

.pricing-btn.popular {
  background: linear-gradient(135deg, var(--accent-cyan), #0284c7);
  color: #ffffff;
}

.pricing-btn.popular:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  transform: translateY(-2px);
}

/* Comparison Table */
.pricing-comparison {
  max-width: 1200px;
  margin: 48px auto 0;
}

.pricing-comparison h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  color: var(--text-secondary);
}

.comparison-table thead th {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e5e5;
}

.comparison-table .popular-col {
  background: rgba(8, 145, 178, 0.04);
}

.comparison-table thead .popular-col {
  color: var(--accent-cyan);
}

.comparison-table .bi-check2 {
  color: var(--accent-green);
  font-size: 18px;
}

.comparison-table .row-highlight {
  background: #fafafa;
  font-weight: 600;
}

.comparison-table .row-highlight td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 12px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 8px 6px;
  }
  .pricing-card.popular {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.pricing-price .discount small {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* Servicios Pricing Banner */
.servicios-pricing-banner {
  max-width: 1200px;
  margin: 32px auto 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.servicios-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.servicios-banner-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 8px 0 4px;
}

.servicios-banner-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.servicios-banner-content .pricing-btn {
  white-space: nowrap;
  width: auto;
  padding: 14px 32px;
}

@media (max-width: 768px) {
  .servicios-banner-content {
    flex-direction: column;
    text-align: center;
  }
  .servicios-pricing-banner {
    padding: 24px 20px;
  }
}

/* ============================================
   FAQ Section - Accordion Light Theme
   ============================================ */
.faq-section {
  background: var(--bg-secondary);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

/* Accordion Container */
.faq-accordion .accordion {
  --bs-accordion-bg: #ffffff;
  --bs-accordion-border-color: #e5e5e5;
  --bs-accordion-border-radius: var(--radius-md);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(201, 46, 76, 0.15);
}

/* Accordion Item */
.faq-accordion .accordion-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: var(--accent-red);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Accordion Button */
.faq-accordion .accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: #ffffff;
  padding: 20px 24px;
  gap: 12px;
  border-radius: var(--radius-md) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-red);
  background: #ffffff;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-red);
}

/* Icon in button */
.faq-accordion .accordion-button i {
  font-size: 18px;
  color: var(--accent-red);
  min-width: 24px;
}

/* Arrow indicator */
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23575760'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c92e4c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Accordion Body */
.faq-accordion .accordion-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 0 24px 20px 60px;
  background: #ffffff;
}

/* ============================================
   Footer Light Corporate
   ============================================ */
.footer-dark {
  background: #636363;
  padding: 50px 0 30px;
  border-top: none;
}

.footer-dark .logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
}

.footer-dark .footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin-top: 14px;
}

.footer-dark h5 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

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

.footer-dark ul li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-dark ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-dark ul a:hover {
  color: #ffffff;
}

.footer-dark .social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-right: 14px;
  transition: color 0.3s ease;
}

.footer-dark .social-links a:hover {
  color: #ffffff;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ============================================
   Floating Action Button (FAB) - Light
   ============================================ */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.fab-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.fab-container.active .fab-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.fab-btn.main {
  background: var(--accent-red);
  width: 56px;
  height: 56px;
}

.fab-btn.main:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(var(--accent-red-rgb), 0.4);
}

.fab-btn.whatsapp {
  background: #25D366;
}

.fab-btn.email {
  background: var(--accent-cyan);
}

.fab-btn:hover {
  transform: scale(1.05);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 1200px) {
  .hero-dual {
    padding: 80px 40px;
  }

  .hero-title {
    font-size: 44px;
  }

  :root {
    --section-padding: 80px;
  }
}

@media (max-width: 992px) {
  .hero-dual .row {
    gap: 32px;
  }

  .hero-card {
    padding: 32px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  /* FAQ Accordion responsive */
  .faq-accordion .accordion-button {
    font-size: 14px;
    padding: 16px 20px;
  }

  .faq-accordion .accordion-body {
    padding: 0 20px 16px 52px;
  }

  .problem-card,
  .step-card,
  .benefit-card {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 160px;
  }
}

@media (max-width: 768px) {
  .hero-dual {
    padding: 60px 20px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .section-title-new {
    font-size: 32px;
  }

  .section-label {
    font-size: 11px;
    padding: 6px 16px;
  }

  .section-desc {
    font-size: 16px;
  }

  :root {
    --section-padding: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    margin-top: 16px;
  }

  .footer-legal a {
    margin: 0 12px;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(var(--accent-cyan-rgb), 0.5);
  }
}

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

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

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

/* ============================================
   Preloader Light
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  border: 4px solid #e5e5e5;
  border-top-color: var(--accent-red);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: preloader-spin 1s linear infinite;
}

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

/* ============================================
   Dark Mode Utility Classes
   ============================================ */
.text-cyan {
  color: var(--accent-cyan) !important;
}

.text-red {
  color: var(--accent-red) !important;
}

.bg-dark-primary {
  background-color: var(--bg-primary) !important;
}

.bg-dark-secondary {
  background-color: var(--bg-secondary) !important;
}

.bg-dark-surface {
  background-color: var(--bg-surface) !important;
}

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

/* Selection color */
::selection {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* ============================================
   Success Modal - Animated
   ============================================ */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-modal.active {
  display: flex;
  opacity: 1;
}

.success-modal-content {
  background: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  transform: scale(0.8);
  animation: modalPopIn 0.5s ease forwards;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalPopIn {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.success-modal-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 20px 0 15px;
}

.success-modal-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.success-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f0fdf4;
  padding: 12px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.success-details i {
  color: #16a34a;
  font-size: 20px;
}

.success-details span {
  color: #15803d;
  font-size: 14px;
  font-weight: 500;
}

.btn-success-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c3c 100%);
  color: white;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 46, 76, 0.4);
}

/* Success Checkmark Animation */
.success-animation {
  margin: 0 auto;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #16a34a;
}

.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  background: #ffffff;
  transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #16a34a;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(22, 163, 74, 0.5);
}

.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: #ffffff;
}

@keyframes rotate-circle {
  0% { transform: rotate(-45deg); }
  5% { transform: rotate(-45deg); }
  12% { transform: rotate(-405deg); }
  100% { transform: rotate(-405deg); }
}

@keyframes icon-line-tip {
  0% { width: 0; left: 1px; top: 19px; }
  54% { width: 0; left: 1px; top: 19px; }
  70% { width: 50px; left: -8px; top: 37px; }
  84% { width: 17px; left: 21px; top: 48px; }
  100% { width: 25px; left: 14px; top: 46px; }
}

@keyframes icon-line-long {
  0% { width: 0; right: 46px; top: 54px; }
  65% { width: 0; right: 46px; top: 54px; }
  84% { width: 55px; right: 0px; top: 35px; }
  100% { width: 47px; right: 8px; top: 38px; }
}

/* ============================================
   RESPONSIVE - Enterprise Sections
   ============================================ */
@media (max-width: 1200px) {
  .hero-main-title {
    font-size: 44px;
  }

  .floating-card.card-1 {
    left: 0;
  }

  .floating-card.card-2 {
    left: 0;
  }
}

@media (max-width: 991px) {
  .hero-enterprise {
    padding: 120px 0 60px;
  }

  .min-vh-80 {
    min-height: auto;
  }

  .hero-main-title {
    font-size: 38px;
  }

  .hero-image-container {
    margin-top: 50px;
  }

  .hero-main-image {
    height: 400px;
  }

  .floating-card {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 40px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-enterprise {
    padding: 100px 0 50px;
  }

  .hero-main-title {
    font-size: 32px;
  }

  .hero-main-desc {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-nora-launch {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  .hero-main-image {
    height: 300px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .logos-track {
    gap: 30px;
  }

  .logo-item img {
    height: 35px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 28px;
  }

  .stats-section {
    padding: 40px 0;
  }

  .stat-number {
    font-size: 28px;
  }

  .logos-track {
    gap: 20px;
  }

  .logo-item img {
    height: 28px;
  }
}

/* ============================================
   Mobile Hero Fixes
   ============================================ */
@media (max-width: 991px) {
  /* Ocultar hero-label en mobile */
  .hero-label {
    display: none;
  }

  /* Ocultar imagen hero en mobile - mejor UX, menos scroll */
  .hero-image-container {
    display: none;
  }

  /* Ajustar padding del hero en mobile */
  .hero-enterprise {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  /* Trust badges */
  .hero-trust-badges {
    margin-top: 24px;
  }

  /* Ocultar floating cards en mobile */
  .floating-card {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-enterprise {
    padding-top: 130px;
  }

  .hero-main-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-main-desc {
    font-size: 15px;
  }

  /* FAB más arriba para no tapar stats */
  .fab-container {
    bottom: 90px;
  }
}

/* ============================================
   Contact Modal (FAB)
   ============================================ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.contact-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  width: 90%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  /* Ocultar scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.contact-modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.contact-modal.active .contact-modal-content {
  transform: scale(1) translateY(0);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #64748b;
  transition: all 0.3s ease;
  z-index: 10;
}

.contact-modal-close:hover {
  background: var(--accent-red);
  color: #ffffff;
  transform: rotate(90deg);
}

.contact-modal-header {
  background: linear-gradient(135deg, var(--accent-red) 0%, #9a1e3a 100%);
  padding: 40px 40px 35px;
  text-align: center;
  color: #ffffff;
  border-radius: 20px 20px 0 0;
}

.contact-modal-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.contact-modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff !important;
}

.contact-modal-header p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
}

.contact-modal-form {
  padding: 35px 40px 40px;
}

.contact-modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-modal-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-modal-form .form-group.full-width {
  margin-bottom: 20px;
}

.contact-modal-form label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.contact-modal-form input,
.contact-modal-form select,
.contact-modal-form textarea {
  padding: 14px 16px;
  border: 1.5px solid #e8e0e2;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #374151;
}

.contact-modal-form input:focus,
.contact-modal-form select:focus,
.contact-modal-form textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(201, 46, 76, 0.1);
}

.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
  color: #9ca3af;
}

#modal-interes {
  color: #9ca3af !important;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

#modal-interes option {
  color: #374151;
}

#modal-interes.has-value {
  color: #374151 !important;
}

.contact-modal-form textarea {
  resize: none;
}

.btn-modal-submit {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #9a1e3a 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 46, 76, 0.35);
}

.btn-modal-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-note-modal {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin: 15px 0 0;
}

/* Contact Modal Responsive */
@media (max-width: 600px) {
  .contact-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .contact-modal-header {
    padding: 30px 25px 25px;
  }

  .contact-modal-header h2 {
    font-size: 24px;
  }

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

  .contact-modal-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .contact-modal-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* ============================================
   MOBILE FIXES - Safe additions
   ============================================ */

/* Fix: FAB más pequeño en phones pequeños */
@media (max-width: 480px) {
  .fab-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .fab-btn.main {
    width: 50px;
    height: 50px;
  }

  .fab-container {
    bottom: 20px;
    right: 20px;
  }
}

/* Fix: Scroll-top pegado al FAB en mobile */
@media (max-width: 768px) {
  .scroll-top {
    bottom: 85px; /* Pegado arriba del FAB */
    right: 25px;
    width: 36px;
    height: 36px;
    z-index: 99999; /* Mayor que FAB para que se pueda clickear */
  }

  .scroll-top.fab-expanded {
    bottom: 195px; /* Sube cuando FAB desplegado */
  }
}

/* Fix: Stats números más pequeños en mobile */
@media (max-width: 480px) {
  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stat-item {
    padding: 15px 10px;
  }
}

/* Fix: Hero image altura en mobile pequeño */
@media (max-width: 480px) {
  .hero-main-image {
    height: 220px;
  }

  .hero-main-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}

/* Fix: Section titles en mobile */
@media (max-width: 480px) {
  .section-title-new {
    font-size: 28px;
  }

  .section-desc {
    font-size: 14px;
  }

  .section-label {
    font-size: 11px;
    padding: 6px 14px;
  }
}

/* Fix: Header topbar en mobile pequeño */
@media (max-width: 480px) {
  .header .topbar,
  .header-dark .topbar {
    height: auto;
    padding: 8px 0;
  }

  .header .topbar .contactanos-info,
  .header-dark .topbar .contactanos-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  .header .topbar .contactanos-info i,
  .header-dark .topbar .contactanos-info i {
    margin-left: 8px !important;
  }

  .header .topbar .contactanos-info i a,
  .header .topbar .contactanos-info i span,
  .header-dark .topbar .contactanos-info a,
  .header-dark .topbar .contactanos-info span {
    font-size: 11px !important;
  }
}

/* Fix: Pricing cards en mobile */
@media (max-width: 480px) {
  .pricing-card {
    padding: 25px 20px;
  }

  .pricing-card .price {
    font-size: 36px;
  }
}

/* Fix: Contact form en mobile */
@media (max-width: 480px) {
  .contact-form-card,
  .contact-info-card {
    padding: 25px 20px;
  }

  .contact-form-card h4,
  .contact-info-card h4 {
    font-size: 20px;
  }
}

/* Fix: Footer en mobile */
@media (max-width: 480px) {
  .footer-dark {
    padding: 40px 0 20px;
  }

  .footer-dark h5 {
    font-size: 16px;
  }
}

/* Fix: NORA section en mobile */
@media (max-width: 480px) {
  .nora-features li {
    font-size: 14px;
    padding: 10px 12px;
  }

  .process-step {
    padding: 0 10px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step-title {
    font-size: 14px;
  }
}

/* ============================================
   ERROR TOAST ANIMATION
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.error-toast {
  animation: fadeIn 0.3s ease forwards;
}

/* ============================================
   PULSE ANIMATION - Para NORA Coming Soon
   ============================================ */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }
}

/* ============================================
   NORA Highlight Effects - Launch Campaign
   ============================================ */

/* Nav Link - Spotlight + Scanner */
.nav-nora-highlight {
  position: relative;
  background: linear-gradient(135deg, #fff7ed, #ffedd5) !important;
  border-radius: 8px !important;
  color: #b45309 !important;
  font-weight: 800 !important;
  overflow: hidden;
}

.nav-nora-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f59e0b, #dc2626, transparent);
  animation: nora-scanner 2s ease-in-out infinite;
}

@keyframes nora-scanner {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* Botón - Lightning Shine Effect */
.btn-nora-launch {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background: #f59e0b !important;
  background: -webkit-linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: white !important;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.btn-nora-launch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-25deg);
  animation: lightning-shine 3s ease-in-out infinite;
}

@keyframes lightning-shine {
  0% { left: -100%; }
  15% { left: 150%; }
  100% { left: 150%; }
}

.btn-nora-launch:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  color: white;
}

.btn-nora-launch i {
  font-size: 18px;
  animation: lightning-pulse 1.5s ease-in-out infinite;
}

@keyframes lightning-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* Select placeholder color */
select.select-placeholder {
  color: #9ca3af;
}
select.select-placeholder option:not([value=""]) {
  color: var(--text-primary);
}