/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  --primary: #0108a0;
  --primary-light: #2341e8;
  --primary-dark: #010370;
  --accent: #1acc8d;
  --accent-light: #2be4a2;
  --accent-dark: #13a870;
  --accent-pale: #e8fdf5;
  --accent-border: #7ceec6;
  --gradient-hero: linear-gradient(135deg, #010370 0%, #0108a0 40%, #0d1fc2 70%, #1a2fe0 100%);
  --gradient-cta: linear-gradient(135deg, #010370 0%, #0108a0 50%, #0d1fc2 100%);
  --gradient-accent: linear-gradient(135deg, #1acc8d 0%, #13c4a0 100%);
  --shadow-sm: 0 2px 15px rgba(1, 8, 160, 0.08);
  --shadow-md: 0 5px 25px rgba(1, 8, 160, 0.14);
  --shadow-lg: 0 10px 40px rgba(1, 8, 160, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent-light);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--gradient-accent);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(26, 204, 141, 0.4);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 204, 141, 0.5);
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.4s;
  z-index: 997;
  background: rgba(1, 4, 136, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 204, 141, 0.15);
}

#header.header-transparent {
  background: transparent;
  border-bottom-color: transparent;
}

#header.header-scrolled {
  background: rgba(1, 3, 112, 0.97);
  height: 60px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(26, 204, 141, 0.2);
}

#header .logo h1 {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.5px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo h1 a span {
  color: var(--accent);
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 42px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.2px;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 28px;
  background: var(--gradient-accent);
  border-radius: 2px;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

/* CTA nav button */
.navbar .nav-cta a {
  background: var(--gradient-accent);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 50px;
  margin-left: 8px;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(26, 204, 141, 0.35);
  transition: all 0.3s;
}

.navbar .nav-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 204, 141, 0.5);
}

.navbar .nav-cta a:before {
  display: none;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(1, 8, 160, 0.15);
  transition: 0.3s;
  border-radius: var(--radius-sm);
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: var(--primary);
}

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

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul { left: -90%; }
  .navbar .dropdown .dropdown:hover > ul { left: -100%; }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }

  .navbar ul { 

    display: block;

    position: fixed;
    height: 350px;

    top: 0;
    right: 0;
    left: 0;
    bottom: 0;

    z-index: 99999;
    width: 80vw;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: var(--radius);
    background-color: #fff;
    /* overflow-y: auto; */
    transition: 0.5s ease-in-out;
    transform: translateX(-1000px);

  }
}

.navbar-mobile {
  /* overflow: hidden; */
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: fixed;

  background: rgba(1, 3, 91, 0.97);
  transition: 0.5s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 20px;
  right: 15px;
}

.navbar-mobile ul {
  transform: translateX(0);
}

.navbar-mobile > ul > li > a:before { left: 20px; }

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--primary);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--accent);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus { margin: 15px; }

.navbar-mobile .nav-cta a {
  background: var(--gradient-accent) !important;
  color: #fff !important;
  border-radius: 50px;
  margin: 10px 20px;
  display: block;
  text-align: center;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--accent);
}

.navbar-mobile .dropdown > .dropdown-active { display: block; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: url("../img/hero-bg.jpg") center center / cover no-repeat;
  position: relative;
  padding: 120px 0 0 0;
}

#hero:before {
  content: "";
  background: var(--gradient-hero);
  opacity: 0.94;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -1px;
}

#hero h1 span {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 2px;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  transition: all 0.3s;
  color: #fff;
  background: var(--gradient-accent);
  box-shadow: 0 5px 20px rgba(26, 204, 141, 0.4);
}

#hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 204, 141, 0.55);
}

#hero .animated {
  animation: up-down 2.5s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero { background-attachment: fixed; }
}

@media (max-width: 991px) {
  #hero { padding-top: 80px; }
  #hero .animated { animation: none; }
  #hero .hero-img { text-align: center; }
  #hero .hero-img img { max-width: 55%; }
  #hero h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  #hero h2 {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 28px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img { width: 80%; }
  #hero h1 { font-size: 28px; }
}

@keyframes up-down {
  0%   { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use { animation: move-forever1 10s linear infinite; animation-delay: -2s; }
.wave2 use { animation: move-forever2 8s linear infinite;  animation-delay: -2s; }
.wave3 use { animation: move-forever3 6s linear infinite;  animation-delay: -2s; }

@keyframes move-forever1 {
  0%   { transform: translate(85px, 0%); }
  100% { transform: translate(-90px, 0%); }
}
@keyframes move-forever2 {
  0%   { transform: translate(-90px, 0%); }
  100% { transform: translate(85px, 0%); }
}
@keyframes move-forever3 {
  0%   { transform: translate(-90px, 0%); }
  100% { transform: translate(85px, 0%); }
}

/* Hero trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}

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

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-outline-hero {
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.5) !important;
  color: rgba(255,255,255,0.9) !important;
  box-shadow: none !important;
}

.btn-outline-hero:hover {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.8) !important;
  transform: translateY(-2px) !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 70px 0;
  overflow: hidden;
}

.section-bg {
  background: linear-gradient(180deg, #f5f5ff 0%, #eff0ff 100%);
}

.section-title {
  padding-bottom: 48px;
}

.section-title h2 {
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0 0 8px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 2px;
  display: inline-block;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/*--------------------------------------------------------------
# Badge pill
--------------------------------------------------------------*/
.badge-pill {
  background: rgba(26, 204, 141, 0.12);
  border: 1px solid rgba(26, 204, 141, 0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

/*--------------------------------------------------------------
# SENIAT badge
--------------------------------------------------------------*/
.seniat-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--accent-pale);
  border: 1px solid var(--accent-border);
  color: #1a6e4e;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  max-width: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

/*--------------------------------------------------------------
# Sistema / Feature cards
--------------------------------------------------------------*/
.sistema-card {
  padding: 32px;
  border: 1px solid #e0e0f8;
  border-radius: var(--radius);
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.sistema-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.sistema-card .card-icon {
  width: 58px;
  height: 58px;
  background: var(--accent-pale);
  border: 2px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.sistema-card:hover .card-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.sistema-card .card-icon i {
  font-size: 26px;
  color: var(--accent);
  line-height: 0;
  transition: 0.3s;
}

.sistema-card:hover .card-icon i { color: #fff; }

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

.sistema-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/*--------------------------------------------------------------
# Features grid
--------------------------------------------------------------*/
.features-grid .icon-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  padding: 32px 26px;
  background: #fff;
  border: 1px solid #e0e0f8;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.features-grid .icon-box:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.features-grid .icon-box .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 2px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-bottom: 20px;
  transition: 0.3s;
  flex-shrink: 0;
}

.features-grid .icon-box:hover .icon {
  background: var(--accent);
  border-color: var(--accent);
}

.features-grid .icon-box .icon i {
  font-size: 28px;
  color: var(--accent);
  transition: 0.3s;
  line-height: 0;
}

.features-grid .icon-box:hover .icon i { color: #fff; }

.features-grid .icon-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.features-grid .icon-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: var(--gradient-hero);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.counts::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.counts::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: rgba(26, 204, 141, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.counts .count-box {
  padding: 32px 24px 28px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}

.counts .count-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.counts .count-box i {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: var(--gradient-accent);
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 15px rgba(26,204,141,0.45);
}

.counts .count-box span {
  font-size: 40px;
  display: block;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-top: 6px;
}

.counts .count-box p {
  padding: 0;
  margin: 6px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 0px 0 0 0;
}

/* .about [data-aos='fade-left'] { */
/*   padding: 30px; */
/* } */

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.about .icon-box {
  margin-top: 36px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--accent-border);
  border-radius: 50px;
  transition: 0.4s;
  background: var(--accent-pale);
}

.about .icon-box .icon i {
  color: var(--accent);
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: var(--accent);
  border-color: var(--accent);
}

.about .icon-box:hover .icon i { color: #fff; }

.about .icon-box .title {
  margin-left: 88px;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 17px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover { color: var(--accent); }

.about .icon-box .description {
  margin-left: 88px;
  line-height: 1.7;
  font-size: 14px;
  color: #666;
}

.about .video-box {
  background: var(--img-url) center center no-repeat;
  background-size: contain;
  min-height: 300px;
}

/*--------------------------------------------------------------
# How it Works
--------------------------------------------------------------*/
.how-it-works .step-box {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e0e0f8;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  height: 100%;
}

.how-it-works .step-box:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.how-it-works .step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(26, 204, 141, 0.4);
}

.how-it-works .step-box h4 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.how-it-works .step-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: var(--primary);
}

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

.details .content ul li {
  display: flex;
  padding-bottom: 10px;
  align-items: flex-start;
  gap: 8px;
}

.details .content ul i {
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.details li br {
  display: block;
}

@media screen and (min-width: 750px) {
  
  .details li br {
    display: none;
  }
  
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  background: var(--gradient-cta);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(26, 204, 141, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.6;
}

.btn-cta {
  background: var(--gradient-accent);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(26, 204, 141, 0.45);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 204, 141, 0.6);
  color: #fff;
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 13px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section .faq-item {
  background: #fff;
  border: 1px solid #e0e0f8;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.faq-section .faq-item:hover {
  border-color: var(--accent-border);
}

.faq-section .faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(26,204,141,0.12);
}

.faq-section .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-section .faq-question h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
}

.faq-section .faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.faq-section .faq-item.active .faq-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(45deg);
}

.faq-section .faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.75;
}

.faq-section .faq-item.active .faq-answer { display: block; }

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/cta-bg.jpg") no-repeat center center / cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.88);
}

.testimonials .section-title h2 { color: rgba(255,255,255,0.6); }
.testimonials .section-title p   { color: #fff; }

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid rgba(26, 204, 141, 0.5);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 4px;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 13px;
  color: var(--accent-light);
  margin: 0 0 16px;
}

.testimonials .testimonial-item .stars {
  color: #FFD700;
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  font-size: 15px;
  line-height: 1.7;
}

.testimonials .swiper-pagination { margin-top: 24px; position: relative; }

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.35);
}

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

@media (min-width: 1024px) { .testimonials { background-attachment: fixed; } }
@media (min-width: 992px)  { .testimonials .testimonial-item p { width: 80%; } }

/*--------------------------------------------------------------
# Contact card
--------------------------------------------------------------*/
.contact-card {
  padding: 32px;
  border: 1px solid #e0e0f8;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(180deg, #010351 0%, #010246 100%);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 22px;
  margin: 0 0 18px;
  font-weight: 800;
}

#footer .footer-top .footer-info h3 span { color: var(--accent); }

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: rgba(255,255,255,0.7);
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

#footer .footer-top h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 6px;
  color: var(--accent-light);
  font-size: 16px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#footer .footer-top .footer-links ul li:last-child { border-bottom: none; }

#footer .footer-top .footer-links ul a {
  color: rgba(255,255,255,0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding-top: 28px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

#footer .credits {
  padding-top: 8px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs { margin-top: 64px; }
}

/*--------------------------------------------------------------
# Responsive tweaks
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-ctas { justify-content: center; }
  .cta-section h2 { font-size: 28px; }
  .section-title p { font-size: 28px; }
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn-get-started { width: 100%; text-align: center; justify-content: center; }
  .seniat-badge { padding: 14px 16px; font-size: 12px; }
  .seniat-badge img { height: 45px; }
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 24px; }
  .features-grid .icon-box { padding: 26px 20px; }
  .sistema-card { padding: 26px 20px; }
  .contact-card { padding: 24px 20px; }
  .hero-trust { justify-content: center; }
}

@media (max-width: 575px) {
  .badge-pill { font-size: 12px; padding: 5px 12px; white-space: normal; text-align: center; }
  .how-it-works .step-box { padding: 24px 14px; }
  .btn-cta { padding: 13px 28px; font-size: 14px; }
  .cta-section h2 { font-size: 22px; }
  #footer .footer-top { padding: 40px 0 20px; }
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info { margin: -20px 0 30px 0; }
}

/*--------------------------------------------------------------
# App Screenshots Carousel
--------------------------------------------------------------*/
.app-screenshots {
  padding: 80px 0;
  overflow: hidden;
}

.app-screenshots .app-screenshots-intro {
  text-align: center;
  font-size: 17px;
  color: #666;
  max-width: 680px;
  margin: -24px auto 48px;
  line-height: 1.8;
}

.app-screenshots-swiper {
  padding: 16px 8px 60px;
}

.screenshot-slide {
  padding: 8px 12px 20px;
}

.screenshot-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(1, 8, 160, 0.15);
  border: 2px solid #e0e0f8;
  transition: all 0.35s ease;
  background: #f4f4fc;
  position: relative;
  cursor: pointer;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 160, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.screenshot-overlay i {
  color: #fff;
  font-size: 34px;
  opacity: 0;
  transform: scale(0.65);
  transition: all 0.3s ease;
}

.screenshot-slide:hover .screenshot-frame {
  border-color: var(--accent);
  box-shadow: 0 14px 48px rgba(26, 204, 141, 0.28);
  transform: translateY(-6px);
}

.screenshot-slide:hover .screenshot-frame img {
  transform: scale(1.03);
}

.screenshot-slide:hover .screenshot-overlay {
  background: rgba(1, 8, 160, 0.28);
}

.screenshot-slide:hover .screenshot-overlay i {
  opacity: 1;
  transform: scale(1);
}

.screenshot-caption {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.2px;
}

.app-screenshots-swiper .swiper-button-next,
.app-screenshots-swiper .swiper-button-prev {
  color: var(--accent);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(1, 8, 160, 0.14);
  transition: all 0.3s;
  top: 42%;
}

.app-screenshots-swiper .swiper-button-next:hover,
.app-screenshots-swiper .swiper-button-prev:hover {
  background: var(--accent);
  color: #fff;
}

.app-screenshots-swiper .swiper-button-next::after,
.app-screenshots-swiper .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 800;
}

.app-screenshots-swiper .swiper-pagination {
  bottom: 10px;
}

.app-screenshots-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

.app-screenshots-swiper .swiper-pagination-bullet {
  background: rgba(1, 8, 160, 0.3);
  opacity: 1;
}

.screenshots-hint {
  color: #888;
  font-size: 13px;
  margin-top: 8px;
}

.screenshots-hint i { color: var(--accent); }

@media (max-width: 768px) {
  .app-screenshots { padding: 60px 0; }
  .app-screenshots .app-screenshots-intro { font-size: 15px; margin-bottom: 36px; }
  .app-screenshots-swiper .swiper-button-next,
  .app-screenshots-swiper .swiper-button-prev { display: none; }
}

@media (max-width: 575px) {
  .screenshot-caption { font-size: 12px; }
}

/*--------------------------------------------------------------
# Sistema Captures (Admin Panel Screenshots)
--------------------------------------------------------------*/
.sistema-capturas {
  padding: 80px 0;
}

.browser-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #e0e0f8;
  transition: all 0.35s ease;
  display: block;
  text-decoration: none;
}

.browser-frame:hover {
  box-shadow: 0 16px 50px rgba(1, 8, 160, 0.2);
  transform: translateY(-5px);
  border-color: var(--accent-border);
}

.browser-bar {
  background: #f4f4fc;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #e0e0f8;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.browser-url {
  background: #fff;
  border: 1px solid #dde;
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 11px;
  color: #999;
  margin-left: 8px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
  font-family: "Poppins", sans-serif;
}

.browser-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f0f0f8;
}

.browser-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.browser-zoom-hint {
  position: absolute;
  inset: 0;
  background: rgba(1, 8, 160, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.browser-zoom-hint i {
  color: #fff;
  font-size: 36px;
  opacity: 0;
  transform: scale(0.65);
  transition: all 0.3s ease;
}

.browser-frame:hover .browser-img-wrap img { transform: scale(1.02); }

.browser-frame:hover .browser-zoom-hint {
  background: rgba(1, 8, 160, 0.25);
}

.browser-frame:hover .browser-zoom-hint i {
  opacity: 1;
  transform: scale(1);
}

.capture-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 15px;
  color: var(--primary);
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.capture-caption span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .sistema-capturas { padding: 60px 0; }
}

@media (max-width: 767px) {
  .browser-url { display: none; }
}

@media (max-width: 575px) {
  .capture-caption { font-size: 14px; }
}

/*--------------------------------------------------------------
# Clubes Section (Client logos)
--------------------------------------------------------------*/
.clubes-section {
  padding: 70px 0;
}

.club-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 14px 18px;
  background: #fff;
  border: 1px solid #e0e0f8;
  border-radius: var(--radius);
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.club-logo-item:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.club-logo-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.club-logo-img img {
  max-height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.club-logo-item:hover .club-logo-img img {
  transform: scale(1.07);
}

.club-name {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  margin: 0 0 4px;
  letter-spacing: 0.1px;
}

.club-rif {
  font-size: 10px;
  color: #aaa;
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3px;
}

@media (max-width: 991px) {
  .clubes-section { padding: 55px 0; }
}

@media (max-width: 767px) {
  .club-logo-img { height: 68px; }
  .club-logo-img img { max-height: 68px; }
}

@media (max-width: 575px) {
  .clubes-section { padding: 50px 0; }
  .club-logo-img { height: 58px; }
  .club-logo-img img { max-height: 58px; }
  .club-name { font-size: 10px; }
}
