/* =========================================
   OPA DESIGN SYSTEM - Variables
   ========================================= */
:root {
  /* Primary Colors */
  --opa-blue: #0366AF;
  --opa-blue-dark: #085a9a;
  --opa-blue-light: #1a7ec7;
  --opa-orange: #F7941D;
  --opa-orange-dark: #e5850f;
  --opa-orange-light: #f9a940;
  --opa-orange-legacy: #FFEACB;
  --opa-orange-legacy-title: #EE771B;

  /* Secondary Colors */
  --opa-navy: #1B2A4A;
  --opa-lilac: #C8B8DB;
  --opa-lilac-light: #E2D8F5;
  --opa-cyan: #4FC3F7;

  /* Neutrals */
  --opa-white: #FFFFFF;
  --opa-gray-50: #F8F9FA;
  --opa-gray-100: #F0F1F3;
  --opa-gray-200: #E2E4E8;
  --opa-gray-300: #C5C9D0;
  --opa-gray-500: #8A8F98;
  --opa-gray-700: #4A4F57;
  --opa-gray-800: #343A40;
  --opa-gray-900: #212529;
  --opa-footer-bg: #0d293c;

  /* Typography */
  --font-display: 'Comfortaa', cursive;
  --font-heading: 'Varela Round', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* =========================================
   GLOBAL
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--opa-gray-700);
  background-color: var(--opa-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--opa-gray-900);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background-color: var(--opa-blue);
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.top-bar a:hover {
  color: var(--opa-white);
}

.top-bar .top-bar-link {
  font-size: 0.95rem;
  text-decoration: underline;
  text-decoration-color: var(--opa-white);
}

.top-bar .btn-top {
  font-size: 0.95rem;
}

.top-bar .btn-top {
  background-color: var(--opa-orange);
  color: var(--opa-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color var(--transition-fast);
}

.top-bar .btn-top:hover {
  background-color: var(--opa-orange-dark);
}

.top-bar .btn-pagos {
  background-color: var(--opa-white);
  color: var(--opa-gray-900);
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar-opa {
  background-color: var(--opa-white);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-opa .navbar-brand img {
  height: 36px;
}

.navbar-opa .nav-link {
  font-family: var(--font-heading);
  color: var(--opa-gray-700);
  font-size: 0.95rem;
  padding: 8px 18px !important;
  transition: color var(--transition-fast);
}

.navbar-opa .nav-link:hover,
.navbar-opa .nav-link.active {
  color: var(--opa-blue);
}

.navbar-opa .btn-navbar-primary {
  background-color: var(--opa-orange);
  color: var(--opa-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 7px 18px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.navbar-opa .btn-navbar-primary:hover {
  background-color: var(--opa-orange-dark);
  color: var(--opa-white);
  transform: translateY(-1px);
}

.navbar-opa .btn-navbar-cliente {
  background-color: var(--opa-blue);
}

.navbar-opa .btn-navbar-cliente:hover {
  background-color: var(--opa-blue-dark);
}

.navbar-opa .btn-navbar-pagos {
  background-color: #FFC10E;
  color: var(--opa-gray-900);
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.navbar-opa .btn-navbar-pagos img {
  height: 24px;
  width: auto;
}

.navbar-opa .btn-navbar-pagos:hover {
  background-color: #e6ad00;
  color: var(--opa-gray-900);
}

/* =========================================
   HERO CAROUSEL
   ========================================= */
.hero-section {
  padding: 0 16px;
}

.hero-slide {
  position: relative;
  height: 460px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

/* Foto de fondo — ocupa todo el slide */
.hero-slide .hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Overlay oscuro suave solo debajo del texto izquierdo */
.hero-slide .hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 45%, transparent 70%);
  z-index: 2;
}

/* Contenido: texto izquierda, SVG derecha */
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 40px 5%;
}

.hero-text-col {
  flex: 0 0 52%;
  max-width: 52%;
  padding-right: 24px;
}

.hero-badge-col {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--opa-white);
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--opa-white);
  margin: 10px 0 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  opacity: 0.9;
}

/* SVG del producto — directo, sin fondo ni círculo */
.hero-product-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-product-badge img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero-product-badge span {
  color: var(--opa-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Botón Descubre Más — abajo a la derecha */
.hero-cta-float {
  position: absolute;
  bottom: 28px;
  right: 5%;
  z-index: 4;
}

.btn-hero {
  background-color: var(--opa-orange);
  color: var(--opa-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.btn-hero:hover {
  background-color: var(--opa-orange-dark);
  color: var(--opa-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(247, 148, 29, 0.35);
}

/* Carousel indicators — abajo a la izquierda */
#heroCarousel .carousel-indicators {
  justify-content: flex-start;
  margin-left: 5%;
  margin-bottom: 16px;
  z-index: 5;
}

#heroCarousel .carousel-indicators [data-bs-target] {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  opacity: 1;
}

#heroCarousel .carousel-indicators .active {
  background-color: var(--opa-orange);
  border-color: var(--opa-orange);
}

/* =========================================
   INTRO SECTION
   ========================================= */
.intro-section {
  padding: 50px 0 40px;
  text-align: center;
}

.intro-section p {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--opa-gray-700);
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
  padding: 0 0 50px;
}

.section-header {
  background-color: var(--opa-blue);
  border-radius: var(--radius-xl);
  padding: 18px 40px;
  margin-bottom: 30px;
}

.section-header h2 {
  font-family: var(--font-display);
  color: var(--opa-white);
  font-size: 2.5rem;
  padding: 16px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

/* Service Cards */
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

a.service-card {
  text-decoration: none;
}

a.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

a.service-card:hover::before {
  opacity: 1;
}

a.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card-blue {
  background: linear-gradient(135deg, var(--opa-blue-light) 0%, var(--opa-blue) 100%);
  color: var(--opa-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-blue h3 {
  font-family: var(--font-body);
  color: var(--opa-white);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 4px;
}

.service-card-blue p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  margin-bottom: 0;
}

.service-card-logo {
  background: var(--opa-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 180px;
  position: relative;
  overflow: hidden;
  background-image: url('/img/home1.jpg');
  background-size: cover;
  background-position: center;
}

.service-card-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 102, 175, 0.8);
}

.service-card-logo img {
  max-height: 70px;
  position: relative;
  z-index: 1;
}

.service-card-cyan {
  background: var(--opa-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background-image: url('/img/home2.jpg');
  background-size: cover;
  background-position: center;
}

.service-card-cyan::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(50, 182, 224, 0.8);
}

.service-card-cyan img {
  max-height: 90px;
  position: relative;
  z-index: 1;
}

.service-card-desc {
  background: #32B6E0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-desc p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: right;
  margin-bottom: 0;
}

.service-card-lilac {
  background: rgba(50, 0, 94, 1);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-lilac p {
  font-size: 0.98rem;
  color: var(--opa-white);
  text-align: right;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-card-movil {
  background: #7B5EA7;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
  background-image: url('/img/home3.jpg');
  background-size: cover;
  background-position: center;
}

.service-card-movil::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(50, 0, 94, 0.8);
}

.service-card-movil img {
  max-height: 70px;
  position: relative;
  z-index: 1;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 25px;
  color: var(--opa-white);
  align-self: flex-end;
  margin-top: 12px;
  transition: all var(--transition-fast);
}

.service-card:hover .card-arrow {
  transform: translate(2px, -2px);
}

.card-arrow-dark {
  color: var(--opa-white);
}

.btn-services {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--opa-white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  background: #BBBBBB;
  transition: all var(--transition-fast);
}

.btn-services:hover {
  background: #a0a0a0;
  color: var(--opa-white);
}

/* =========================================
   LEGACY / STATS SECTION
   ========================================= */
.legacy-section {
  padding: 50px 0;
}

.legacy-header {
  background-color: var(--opa-orange-legacy);
  border-radius: var(--radius-md);
  padding: 35px 40px;
  margin-bottom: 36px;
}

.legacy-header h2 {
  font-family: var(--font-display);
  color: var(--opa-orange-legacy-title);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.stat-card {
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  color: var(--opa-white);
  transition: transform var(--transition-base);
}

.stat-card-1 { background-color: #F9A825; }
.stat-card-2 { background-color: #F7941D; }
.stat-card-3 { background-color: #E07A10; }

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-body);
  font-size: 4.8rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: black;
  opacity: 0.9;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  padding: 40px 0 50px;
}

.contact-img-wrapper {
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-header {
  background-color: var(--opa-blue);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 0;
}

.contact-form-header h3 {
  font-family: var(--font-heading);
  color: var(--opa-white);
  font-size: 2.5rem;
  padding: 20px 12px;
  font-weight: 700;
  margin: 0;
}

.contact-section .form-control {
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 1.2rem;
  background: #EDEDED;
  transition: border-color var(--transition-fast);
}

.contact-section .form-control:focus {
  border-color: var(--opa-blue);
  box-shadow: 0 0 0 3px rgba(10, 103, 175, 0.1);
}

.contact-section .form-check-label {
  font-size: 1.1rem;
  color: var(--opa-gray-500);
}

.contact-section .form-check-label a {
  color: var(--opa-blue);
  font-weight: 500;
}

.contact-section .form-check-input:checked {
  background-color: var(--opa-blue);
  border-color: var(--opa-blue);
}

.btn-submit {
  background-color: var(--opa-orange);
  color: var(--opa-white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-submit:hover {
  background-color: var(--opa-orange-dark);
  color: var(--opa-white);
  transform: translateY(-1px);
}

/* =========================================
   FOOTER
   ========================================= */
.footer-section {
  background-color: var(--opa-footer-bg);
  padding: 48px 0 36px;
}

.footer-section h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--opa-white);
  margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section a {
  display: block;
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--opa-orange);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  color: var(--opa-white);
  font-size: 1.2rem;
  transition: opacity var(--transition-fast);
}

.footer-social a:hover {
  opacity: 0.7;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
  .hero-slide {
    height: 360px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-product-badge img {
    height: 60px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* =========================================
   NOSOTROS - HERO
   ========================================= */
.qs-hero-section {
  padding: 0 16px;
}

.qs-hero-slide {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.qs-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.qs-hero-bg-nosotros {
  background-image: url('/img/top-header.jpg');
}

.qs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,41,60,0.5);
}

.qs-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qs-hero-content h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--opa-white);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* =========================================
   NOSOTROS - BENTO GRID
   ========================================= */
.qs-bento-section {
  padding: 40px 0 50px;
}

.qs-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.qs-card-navy {
  background-color: var(--opa-blue);
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

.qs-card-navy p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
}

.qs-card-photo {
  overflow: hidden;
  padding: 0;
  min-height: 220px;
  flex: 1;
}

.qs-card-photo img {
  width: auto;
  height: 100%;
  object-position: top;
  display: block;
  border-radius: var(--radius-lg);
}

.qs-card-icon {
  min-height: 100px;
  padding: 20px;
}

.qs-card-icon img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.qs-card-icon-cyan { background-color: #32B6E0; }
.qs-card-icon-blue { background-color: #0366AD; }
.qs-card-icon-lavender { background-color: #E0D6F3; }

.qs-bento-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 120px;
  flex-shrink: 0;
}

.qs-card-photo-top {
  max-height: 340px;
  min-height: 200px;
  flex: 1;
}

.qs-card-photo-fill {
  flex: 1;
  min-height: 0;
}

.qs-card-lilac {
  background-color: #5E4D8A;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  max-height: 120px;
}

.qs-card-lilac p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
}

.qs-card-orange {
  background-color: var(--opa-orange);
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 0;
  max-height: 120px;
}

.qs-card-orange p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
  margin: 0;
}

.qs-card-servicios {
  background-color: #32B6E0;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  width: 250px;
  flex-shrink: 0;
  min-height: 0;
  max-height: 120px;
  text-decoration: none;
  transition: background-color var(--transition-fast);
}

.qs-card-servicios:hover {
  background-color: #1fa3cd;
}

.qs-card-servicios span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--opa-white);
}

.qs-card-servicios i {
  font-size: 1.4rem;
  color: var(--opa-white);
}

.qs-card-purple {
  background-color: #4A3B6B;
  align-items: flex-start;
  justify-content: center;
}

.qs-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qs-bullets li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.qs-bullets li::before {
  content: '*';
  position: absolute;
  left: 0;
  color: var(--opa-orange);
  font-weight: 700;
}

/* =========================================
   NOSOTROS - NUESTRA EVOLUCIÓN
   ========================================= */
.qs-evolucion-section {
  padding: 50px 0;
}

.qs-evolucion-header {
  background-color: var(--opa-orange-legacy);
  border-radius: var(--radius-md);
  padding: 35px 40px;
  margin-bottom: 30px;
}

.qs-evolucion-header h2 {
  font-family: var(--font-display);
  color: var(--opa-orange-legacy-title);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.qs-evolucion-card {
  background-color: var(--opa-orange);
  border-radius: var(--radius-lg);
  padding: 28px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.qs-evolucion-tagline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--opa-white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.qs-evolucion-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.qs-evolucion-img img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.qs-tabs-wrapper {
  background: var(--opa-white);
  border: 1px solid var(--opa-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.qs-year-tabs {
  display: flex;
  border-bottom: 1px solid var(--opa-gray-200);
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.qs-year-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--opa-gray-500);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.qs-year-tab:hover {
  color: var(--opa-blue);
}

.qs-year-tab.active {
  color: var(--opa-blue);
  border-bottom-color: var(--opa-blue);
  font-weight: 700;
}

.qs-tab-content {
  padding: 28px;
  flex: 1;
}

.qs-tab-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--opa-navy);
  margin-bottom: 12px;
}

.qs-tab-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--opa-gray-700);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* =========================================
   NOSOTROS - INTEGRADOR S.F.C.
   ========================================= */
.qs-integrador-section {
  padding: 60px 0 80px;
}

.qs-integrador-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--opa-gray-500);
  margin-bottom: 8px;
}

.qs-integrador-title {
  font-family: var(--font-body);
  font-size: 4rem;
  font-weight: 900;
  color: var(--opa-orange);
  line-height: 1.1;
  margin-bottom: 24px;
}

.qs-integrador-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--opa-gray-700);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =========================================
   CONTACTENOS - TÍTULO
   ========================================= */
.ct-titulo-section {
  padding: 50px 0 10px;
}

.ct-titulo {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--opa-orange);
  margin: 0;
}

/* =========================================
   CONTACTENOS - MAPA
   ========================================= */
.ct-mapa-section {
  padding: 50px 0 0;
}

.ct-mapa-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 550px;
  margin-bottom: 0;
}

.ct-mapa-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ct-datos-card {
  background-color: var(--opa-navy);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  gap: 40px;
  z-index: 999;
  position: relative;
  margin: -100px 50px 0;
}

.ct-datos-col {
  flex: 1;
}

.ct-datos-col h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--opa-white);
  margin-bottom: 12px;
}

.ct-datos-col p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 4px;
}

/* =========================================
   CONTACTENOS - INTRO TEXTO
   ========================================= */
.ct-intro-section {
  padding: 40px 0 20px;
  text-align: center;
}

.ct-intro-section p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--opa-gray-700);
  line-height: 1.8;
  margin: 0 auto;
}

/* =========================================
   CONTACTENOS - FORMULARIO
   ========================================= */
.ct-form-section {
  padding: 20px 0 60px;
}

.ct-form-img {
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ct-form-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ct-form-header {
  background-color: #32B6E0;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 0;
}

.ct-form-header h3 {
  font-family: var(--font-heading);
  color: var(--opa-white);
  font-size: 2.5rem;
  padding: 8px 12px;
  font-weight: 700;
  margin: 0;
}

.ct-form-section .form-control {
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 14px;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 1rem;
  background: #EDEDED;
  transition: border-color var(--transition-fast);
}

.ct-form-section .form-control:focus {
  border-color: #32B6E0;
  box-shadow: 0 0 0 3px rgba(50, 182, 224, 0.15);
}

.ct-form-section .form-check-label {
  font-size: 1rem;
  color: var(--opa-gray-500);
}

.ct-form-section .form-check-label a {
  color: #32B6E0;
  font-weight: 500;
}

.ct-form-section .form-check-input:checked {
  background-color: #32B6E0;
  border-color: #32B6E0;
}

/* =========================================
   CONTACTENOS - EQUIPO (CARRUSEL INFINITO)
   ========================================= */
.ct-equipo-section {
  padding: 50px 0 60px;
}

.ct-equipo-titulo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--opa-orange);
  margin-bottom: 36px;
}

.tw-perfiles-section {
  padding: 60px 0;
}

.tw-perfiles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.tw-perfil-tag {
  background: var(--opa-blue);
  color: var(--opa-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
}

.ct-equipo-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.ct-equipo-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollEquipo 35s linear infinite;
}

.ct-equipo-track:hover {
  animation-play-state: paused;
}

@keyframes scrollEquipo {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ct-equipo-item {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--opa-gray-200);
}

.ct-equipo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* =========================================
   SERVICIOS - HERO
   ========================================= */
.sv-hero-bg {
  background-image: url('/img/top-header.jpg');
}

/* =========================================
   SERVICIOS - BENTO GRID
   ========================================= */
.sv-bento-section {
  padding: 50px 0 30px;
}

.sv-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.sv-card-service {
  background: radial-gradient(circle at 30% 70%, #0D81B0 0%, #1170A8 40%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.sv-card-service .sv-card-logo {
  margin-bottom: 16px;
}

.sv-card-service .sv-card-logo img {
  height: 48px;
  width: auto;
}

.sv-card-service p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--opa-white);
  line-height: 1.6;
  margin: 0;
}

.sv-card-link {
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  position: relative;
  z-index: 0;
}

.sv-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 1;
  pointer-events: none;
}

.sv-card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sv-card-link:hover::after {
  opacity: 1;
}

.sv-card-link p,
.sv-card-link .sv-card-logo {
  position: relative;
  z-index: 2;
}

.sv-card-photo {
  position: relative;
  min-height: 200px;
}

.sv-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sv-card-central {
  min-height: 320px;
}

.sv-card-central-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.sv-card-central-logo img {
  height: 60px;
  width: auto;
  opacity: 0.9;
}

.sv-card-tall {
  position: relative;
}

.sv-card-deco {
  flex: 1;
  min-height: 20px;
  background: radial-gradient(circle at 30% 70%, #0D81B0 0%, #1170A8 40%);
  border-radius: var(--radius-lg);
  margin-top: 16px;
}

.sv-card-deco-block {
  background: radial-gradient(circle at 30% 70%, #0D81B0 0%, #1170A8 40%);
  min-height: 80px;
}

/* =========================================
   SERVICIOS - CTA BANNER
   ========================================= */
.sv-cta-section {
  padding: 20px 0 30px;
}

.sv-cta-banner {
  background: linear-gradient(135deg, #32B6E0 0%, #4FC3F7 100%);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  text-align: center;
}

.sv-cta-banner h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-white);
  margin: 0;
}

/* =========================================
   SERVICIOS - FORMULARIO
   ========================================= */
.sv-form-img {
  height: 100%;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sv-form-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   INTEGRADOR - INTRO
   ========================================= */
.ig-intro-section {
  padding: 40px 0 20px;
  text-align: center;
}

.ig-intro-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--opa-gray-700);
  margin-bottom: 20px;
}

.ig-intro-banner {
  background: var(--opa-orange-legacy);
  border-radius: var(--radius-xl);
  padding: 20px 40px;
}

.ig-intro-banner p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--opa-orange-legacy-title);
  margin: 0;
}

/* =========================================
   INTEGRADOR - BENTO GRID
   ========================================= */
.ig-bento-section {
  padding: 30px 0;
}

.ig-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ig-bento-photo {
  position: relative;
  min-height: 180px;
}

.ig-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-bento-tags {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}

.ig-tag {
  background: var(--opa-white);
  color: #7C7C7C;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  width: fit-content;
}

.ig-bento-logo {
  background: radial-gradient(circle at 30% 70%, #0D81B0 0%, #1170A8 40%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 24px;
  flex: 1;
}

.ig-bento-logo img {
  height: 72px;
  width: auto;
}

.ig-bento-feature {
  background: #32B6E0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-bento-feature h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--opa-white);
  margin: 0;
}

.ig-bento-gestion {
  background: #C3E6ED;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  justify-content: center;
}

.ig-bento-gestion h4 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: #0366AD;
  margin: 0;
}

.ig-bento-gestion img {
  height: auto;
  width: auto;
}

.ig-bento-photo-r {
  height: 100%;
}

.ig-bento-photo-r img,
.ig-bento-photo-br img {
  height: 100%;
}

.ig-bento-photo-br {
  min-height: 200px;
}

.ig-bento-overlay-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
}

.ig-bento-overlay-text h4 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--opa-white);
  margin: 0 0 6px;
}

.ig-bento-overlay-text p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--opa-white);
  margin: 0;
  line-height: 1.5;
}

/* =========================================
   INTEGRADOR - QUÉ ES
   ========================================= */
.ig-about-section {
  padding: 50px 0;
}

.ig-about-label {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--opa-gray-500);
  margin-bottom: 4px;
}

.ig-about-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin-bottom: 20px;
  line-height: 1.2;
}

.ig-about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ig-about-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ig-about-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ig-about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-about-text p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--opa-gray-700);
  line-height: 1.7;
  text-align: justify;
}

/* =========================================
   INTEGRADOR - ¿CÓMO FUNCIONA?
   ========================================= */
.ig-how-section {
  padding: 40px 0;
  text-align: center;
}

.ig-how-label {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--opa-gray-500);
  margin-bottom: 4px;
}

.ig-how-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin-bottom: 8px;
}

.ig-how-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--opa-gray-700);
  margin-bottom: 4px;
}

.ig-features-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.ig-feature-item {
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  width: 160px;
  text-align: center;
}

.ig-feature-icon {
  margin: 0 auto 20px;
}

.ig-feature-icon img {
  height: 60px;
  width: auto;
}

.ig-feature-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--opa-blue);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.ig-how-footer {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--opa-gray-700);
  line-height: 1.7;
}

/* =========================================
   INTEGRADOR - BENEFICIOS
   ========================================= */
.ig-benefits-section {
  padding: 40px 0;
}

.ig-benefits-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin-bottom: 30px;
}

.ig-benefits-img {
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-benefits-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ig-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ig-benefits-list li {
  font-family: var(--font-body);
  font-size: 1.5rem;
  padding: 14px 20px;
  position: relative;
  padding-left: 36px;
}

.ig-benefits-list li p {
  background-color: #E0E0E0;
  margin: 0;
  padding: 5px 20px;
  border-radius: 22px;
}

.ig-benefits-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--opa-gray-300);
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================================
   INTEGRADOR - MÓDULOS
   ========================================= */
.ig-modulos-section {
  padding: 40px 0;
}

.ig-modulo-row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.ig-modulo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 220px;
}

.ig-modulo-header h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin: 0;
  line-height: 1.2;
}

.ig-modulo-icon {
  flex-shrink: 0;
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  width: 150px;
  height: 120px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-modulo-icon img {
  height: 80px;
  width: auto;
}

.ig-modulo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  flex: 1;
}

.ig-modulo-grid span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--opa-gray-700);
  padding: 10px 14px;
  background: var(--opa-white);
  border: 1px solid var(--opa-gray-200);
  text-align: center;
}

.ig-sep-modulo{
  margin: 10px auto 30px;
  width: 100%;
  height: 4px;
  background-color: #32B6E0;
}

/* Carrusel módulos adicionales */
.ig-modulo-carousel-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ig-modulo-carousel {
  display: flex;
  transition: transform 0.4s ease;
}

.ig-modulo-carousel-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  flex: 0 0 100%;
}

.ig-modulo-carousel-page span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--opa-gray-700);
  padding: 10px 14px;
  background: var(--opa-white);
  border: 1px solid var(--opa-gray-200);
  text-align: center;
}

.ig-modulo-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.ig-modulo-dots {
  display: flex;
  gap: 6px;
}

.ig-modulo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--opa-gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.ig-modulo-dot.active {
  background: var(--opa-blue);
}

.ig-modulo-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--opa-blue);
  color: var(--opa-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition-fast);
}

.ig-modulo-btn:hover {
  background: var(--opa-blue-dark);
}

/* =========================================
   EASYCLOUD - BENTO GRID
   ========================================= */
.ec-bento-section {
  padding: 10px 0 30px;
}

.ec-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ec-bento-photo {
  position: relative;
  min-height: 120px;
}

.ec-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ec-bento-photo-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--opa-white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.ec-bento-logo {
  background: linear-gradient(90deg, #FFD183 0%, #FFAB00 30%, #FA880F 70%, #FFA600 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 87px 24px;
  height: 100%;
}

.ec-bento-logo img {
  height: 100px;
  width: auto;
}

.ec-bento-computer {
  background: #F7B014;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ec-bento-computer img {
  height: 48px;
  width: auto;
}

.ec-bento-icon-card {
  background: #FBCF83;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.ec-bento-icon-card img {
  height: 36px;
  width: auto;
}

.ec-bento-tag {
  background: #E8621B;
  padding: 14px 18px;
  display: flex;
  align-items: center;
}

.ec-bento-tag span {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1.9rem;
  font-weight: 700;
  color: var(--opa-white);
  padding: 15px 0;
}

.ec-bento-map {
  position: relative;
  max-height: 120px;
}

.ec-bento-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ec-bento-map-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.ec-bento-map-label img {
  height: 16px;
  width: auto;
}

.ec-bento-map-label span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--opa-gray-800);
}

.ec-bento-costos {
  background: var(--opa-orange);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ec-bento-costos img {
  height: 65px;
  width: auto;
}

.ec-bento-costos span {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--opa-white);
}

.ec-bento-photo-tall {
  min-height: 100%;
}

.ec-bento-photo-match {
  height: 100%;
  overflow: hidden;
}

.ec-bento-overlay-text {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 14px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ec-bento-overlay-text span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--opa-orange);
}

.ec-bento-overlay-text small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--opa-white);
}

/* =========================================
   EASYCLOUD - CARACTERÍSTICAS
   ========================================= */
.ec-caract-section {
  padding: 40px 0 30px;
}

.ec-caract-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 0;
  line-height: 1.2;
}

.ec-caract-text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--opa-gray-700);
  line-height: 1.7;
  text-align: justify;
}

.ec-caract-grid {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ec-caract-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  border-left: 4px solid var(--opa-orange);
}

.ec-caract-card p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #0366B0;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* =========================================
   EASYCLOUD - INFRAESTRUCTURA
   ========================================= */
.ec-infra-section {
  padding: 40px 0;
}

.ec-infra-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ec-infra-text p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--opa-gray-700);
  line-height: 1.7;
  text-align: justify;
}

/* =========================================
   EASYCLOUD - BENEFICIOS
   ========================================= */
.ec-benefits-section {
  padding: 30px 0 40px;
}

.ec-benefits-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 30px;
}

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

.ec-benefit-item {
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  margin-top: 25px;
}

.ec-benefit-icon {
  width: 80px;
  margin: -50px auto 10px;
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  padding: 20px;
  border-radius: 50%;
}

.ec-benefit-icon img {
  height: 40px;
  width: auto;
}

.ec-benefit-item p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--opa-blue);
  margin: 15px;
  line-height: 1.4;
  font-weight: 500;
  background: var(--opa-white);
  padding: 15px;
}

.ec-benefit-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--opa-blue);
  margin: 0 0 8px;
}

.ec-benefits-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.ec-benefits-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* =========================================
   OPA DOC - BENTO GRID
   ========================================= */
.od-bento-section {
  padding: 10px 0 30px;
}

.od-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.od-bento-photo {
  position: relative;
  min-height: 180px;
}

.od-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.od-bento-photo-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.od-bento-photo-badge img {
  height: 16px;
  width: auto;
}

.od-bento-photo-badge span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--opa-gray-800);
}

.od-bento-logo {
  background: linear-gradient(90deg, #FFD183 0%, #FFAB00 30%, #FA880F 70%, #FFA600 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.od-bento-logo img {
  height: 72px;
  width: auto;
}

.od-bento-desc {
  background: #ED8018;
  padding: 24px;
  position: relative;
  height: 100%;
}

.od-bento-desc p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--opa-white);
  line-height: 1.6;
  margin: 0;
}

.od-bento-desc-icon {
  position: absolute;
  top: 16px;
  right: 16px;
}

.od-bento-desc-icon img {
  height: 60px;
  width: auto;
}

.od-bento-label {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.od-bento-label h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--opa-white);
  margin: 0;
}

.od-bento-label-purple {
  background: #5E4894;
}

.od-bento-label-orange {
  background: #FF9E24;
}

/* =========================================
   CRÉDITOS DIGITALES - INTRO BANNER
   ========================================= */
.cd-intro-banner {
  background: #3285C6;
  border-radius: var(--radius-xl);
  padding: 20px 40px;
}

.cd-intro-banner p {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #FFFFFF;
  margin: 0;
}

/* =========================================
   CRÉDITOS DIGITALES - BENTO GRID
   ========================================= */
.cd-bento-section {
  padding: 10px 0 30px;
}

.cd-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cd-bento-photo {
  position: relative;
  min-height: 150px;
}

.cd-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cd-bento-desembolso {
  background: #0366AF;
}

.cd-bento-photo-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--opa-white);
}

.cd-bento-photo-label-lg {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--opa-white);
}

.cd-bento-logo {
  background: linear-gradient(135deg, #2534A3 0%, #2537EE 50%, #1C3AA3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
}

.cd-bento-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.cd-bento-icon-ctrl {
  background: #9ED4E3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 10px;
  height: 100%;
}

.cd-bento-icon-ctrl img {
  height: 90px;
  width: auto;
}

.cd-ctrl-label {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #0366AD;
}

.cd-bento-label-digi {
  background: #2537EE;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-bento-label-digi span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--opa-white);
}

.cd-bento-icon-small {
  background: #9ED4E3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex: 1;
}

.cd-bento-icon-small img {
  height: 90px;
  width: auto;
}

.cd-bento-icon-blue {
  background: #2537EE;
}

.cd-bento-celular {
  position: relative;
  overflow: hidden;
}

.cd-bento-celular::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #9ED4E3;
  z-index: 0;
}

.cd-bento-celular::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #2537EE;
  z-index: 0;
}

.cd-bento-celular img {
  width: 100%;
  height: 455px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.cd-bento-seguridad {
  background: linear-gradient(135deg, #2534A3 0%, #2537EE 50%, #1C3AA3 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cd-bento-seguridad img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.cd-bento-seguridad span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--opa-white);
}

/* =========================================
   CRÉDITOS DIGITALES - PROCESO
   ========================================= */
.cd-proceso-section {
  padding: 40px 0;
}

.cd-proceso-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cd-proceso-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--opa-gray-700);
  margin-bottom: 24px;
}

.cd-proceso-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.cd-proceso-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   CRÉDITOS DIGITALES - ¿POR QUÉ ELEGIR?
   ========================================= */
.cd-porques-section {
  padding: 30px 0 40px;
}

.cd-porques-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 24px;
}

.cd-porque-card {
  background: #103E5E;
  border-radius: var(--radius-lg);
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.cd-porque-card-rounded{
  border-top-right-radius: 150px;
}

.cd-porque-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--opa-white);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* =========================================
   BRE-B - INTRO BANNER
   ========================================= */
.bb-intro-banner {
  background: #32005E;
  border-radius: var(--radius-xl);
  padding: 20px 40px;
}

.bb-intro-banner p {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--opa-white);
  margin: 0;
}

/* =========================================
   BRE-B - BENTO GRID
   ========================================= */
.bb-bento-section {
  padding: 10px 0 30px;
}

.bb-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.bb-bento-photo {
  position: relative;
  min-height: 140px;
}

.bb-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bb-bento-logo {
  background: linear-gradient(90deg, #00C2FF 0%, #00FF6D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.bb-bento-logo img {
  height: 72px;
  width: auto;
}

.bb-bento-label-purple {
  background: #32005E;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-bento-label-purple span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--opa-white);
}

.bb-bento-label-cyan {
  background: #00C2FF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-bento-label-cyan span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--opa-white);
}

.bb-bento-icon-cyan {
  background: #00C2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bb-bento-icon-cyan img {
  height: 44px;
  width: auto;
}

.bb-bento-icon-purple {
  background: #32005E;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bb-bento-icon-purple img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.bb-bento-overlay-text {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}

.bb-bento-overlay-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--opa-white);
  margin: 0;
}

/* =========================================
   BRE-B - DESCRIPCIÓN
   ========================================= */
.bb-about-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 8px;
}

.bb-about-subtitle {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--opa-gray-700);
  margin-bottom: 20px;
}

/* =========================================
   BRE-B - CÓMO FUNCIONA
   ========================================= */
.bb-how-section {
  padding: 40px 0;
}

.bb-how-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 20px;
}

.bb-how-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.bb-how-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   OPA MÓVIL - INTRO
   ========================================= */
.om-intro-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin: 0;
}

/* =========================================
   OPA MÓVIL - BENTO GRID
   ========================================= */
.om-bento-section {
  padding: 10px 0 30px;
}

.om-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.om-bento-photo {
  position: relative;
  min-height: 120px;
}

.om-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.om-bento-logo {
  background: linear-gradient(90deg, #483299 0%, #5F479C 50%, #493299 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px;
}

.om-bento-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.om-bento-icon-lavender {
  background: #E0D6EA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.om-bento-icon-lavender img {
  height: 36px;
  width: auto;
}

.om-bento-icon-purple {
  background: #5E4894;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.om-bento-icon-purple img {
  height: 36px;
  width: auto;
}

.om-bento-overlay-text {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 1;
}

.om-bento-overlay-text p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--opa-white);
  margin: 0;
  line-height: 1.4;
}

.om-bento-icons-trio {
  background: #E0D6EA;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.om-bento-icons-trio img {
  height: 80px;
  width: auto;
}

.om-bento-label-purple {
  background: #5E4894;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.om-bento-label-purple span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--opa-white);
}

.om-bento-celular {
  background: #E0D6EA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.om-bento-celular img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================================
   OPA MÓVIL - LO QUE PUEDES HACER
   ========================================= */
.om-hacer-section {
  padding: 40px 0;
}

.om-hacer-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-blue);
  margin-bottom: 24px;
}

.om-hacer-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex: 1;
}

.om-hacer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.om-hacer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.om-hacer-item {
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
  border-left: 4px solid var(--opa-orange);
}

.om-hacer-item p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: #0366B0;
  margin: 0;
  line-height: 1.5;
}

.om-hacer-footer {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--opa-gray-700);
  text-align: center;
  margin-top: 24px;
  line-height: 1.6;
}

/* =========================================
   OPA MÓVIL - VENTAJAS
   ========================================= */
.om-ventajas-section {
  padding: 30px 0 40px;
}

.om-ventajas-card {
  background-color: #FFE8C9;
  border-radius: var(--radius-xl);
  padding: 32px 40px;
}

.om-ventajas-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin-bottom: 20px;
}

.om-ventajas-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.om-ventaja-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.om-ventaja-item img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.om-ventaja-item span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--opa-gray-700);
}

/* =========================================
   TRABAJA CON NOSOTROS - FORMULARIO
   ========================================= */
.tw-input-group {
  display: flex;
  align-items: stretch;
}

.tw-input-group label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--opa-white);
  background: #0D293C;
  padding: 12px 16px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.tw-input-group .form-control {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* =========================================
   OPA WEB - BENTO GRID
   ========================================= */
.ow-bento-section {
  padding: 10px 0 30px;
}

.ow-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ow-bento-photo {
  position: relative;
  min-height: 140px;
}

.ow-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ow-bento-logo {
  background: linear-gradient(135deg, #2DB2D1 0%, #47E0E0 30%, #33B5DF 60%, #3DE0E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.ow-bento-logo img {
  height: 125px;
  width: auto;
}

.ow-bento-label {
  background: #32B6E0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ow-bento-label span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-white);
  padding: 10px;
}

.ow-bento-gestion {
  background: #32B6E0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ow-bento-gestion h4 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-white);
  margin: 0;
}

.ow-bento-gestion img {
  height: 90px;
  width: auto;
}

.ow-bento-servicios {
  position: relative;
  min-height: 180px;
}

.ow-bento-servicios > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ow-bento-servicios-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.ow-bento-servicios-text p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--opa-white);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* =========================================
   OPA WEB - CON OPA WEB
   ========================================= */
.ow-conopa-section {
  padding: 20px 0 40px;
}

.ow-conopa-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 16px;
}

.ow-services-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ow-service-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 170px;
}

.ow-service-item {
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  flex: 1;
}

.ow-service-icon {
  margin-bottom: 4px;
}

.ow-service-icon img {
  height: 40px;
  width: auto;
}

.ow-service-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--opa-blue);
  margin: 0;
}

.ow-service-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--opa-blue);
  text-decoration: none;
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-sm);
  padding: 6px 16px;
  width: 100%;
  text-align: center;
  transition: all var(--transition-fast);
}

.ow-service-link:hover {
  color: var(--opa-orange);
}

/* =========================================
   SERVICIOS EN LÍNEA
   ========================================= */
.sl-quees-section {
  padding: 20px 0 40px;
}

.sl-quees-card {
  background: linear-gradient(135deg, #2DB2D1 0%, #47E0E0 50%, #33B5DF 100%);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  height: 100%;
}

.sl-quees-card h3 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--opa-white);
  margin-bottom: 12px;
}

.sl-quees-card p {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--opa-white);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.sl-quees-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.sl-quees-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sl-benefits-img {
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-xl);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-benefits-img img {
  width: 85%;
  height: auto;
  display: block;
}

.sl-modulos-section {
  padding: 40px 0;
}

.sl-modulos-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin-bottom: 24px;
}

.sl-modulos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sl-modulos-grid span {
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-left: 4px solid var(--opa-orange);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--opa-blue);
}

.sl-contacto-section {
  padding: 30px 0 60px;
}

/* =========================================
   WEB SAAS
   ========================================= */
.ws-main-section {
  padding: 0 0 40px;
}

.ws-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 100%;
}

.ws-main-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ws-main-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.ws-main-text p {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--opa-white);
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 500;
}

.ws-feature-tag {
  background: #32B6E0;
  border-radius: var(--radius-pill);
  padding: 25px 20px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--opa-white);
  text-align: center;
}

/* =========================================
   ALOJAMIENTO WEB
   ========================================= */
.aw-imgs-section {
  padding: 0 0 20px;
}

.aw-img-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.aw-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aw-desc-section {
  padding: 10px 0 40px;
}

.aw-desc-card {
  background: linear-gradient(135deg, #2DB2D1 0%, #47E0E0 50%, #33B5DF 100%);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}

.aw-desc-card p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--opa-white);
  line-height: 1.7;
  margin-bottom: 8px;
}

.aw-desc-card p:last-child {
  margin-bottom: 0;
}

.aw-como-section {
  padding: 0 0 40px;
}

.aw-como-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 12px;
}

.aw-ventajas-section {
  padding: 0 0 40px;
}

.aw-ventajas-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange-legacy-title);
  margin-bottom: 24px;
  text-align: center;
}

.aw-ventajas-card {
  background: #32B6E0;
  border-radius: var(--radius-xl);
  padding: 55px 36px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  height: 100%;
  justify-content: center;
}

.aw-ventaja-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.aw-ventaja-item img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.aw-ventaja-item span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--opa-white);
  line-height: 1.8;
}

/* =========================================
   SITIO WEB
   ========================================= */
.sw-quees-section {
  padding: 0 0 30px;
}

.sw-quees-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.sw-quees-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sw-quees-card {
  background: #32B6E0;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  height: 100%;
}

.sw-quees-card h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--opa-white);
  margin-bottom: 12px;
}

.sw-quees-card p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--opa-white);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.sw-cards-section {
  padding: 0 0 40px;
}

.sw-card {
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}

.sw-card-dark {
  background: #103E5E;
}

.sw-card-blue {
  background: #247CBA;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sw-card-blue .sw-card-list {
  gap: 24px;
  margin-top: 20px;
}

.sw-card h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--opa-white);
  margin-bottom: 12px;
}

.sw-card-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.sw-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.sw-card-item img {
  height: 24px;
  width: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.sw-card-item span {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--opa-white);
  line-height: 1.5;
}

.sw-card-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.sw-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sw-card-cyan {
  background: #32B6E0;
}

/* =========================================
   MÓDULO PSE
   ========================================= */
.pse-hero-section {
  padding: 40px 0 20px;
}

.pse-hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange);
  line-height: 1.2;
}

.pse-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.pse-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   FIRMA ELECTRÓNICA - BENTO
   ========================================= */
.fe-bento-section {
  padding: 10px 0 30px;
}

.fe-bento-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.fe-bento-logo {
  background: #E0D6F3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
}

.fe-bento-logo img {
  height: 48px;
  width: auto;
}

.fe-bento-huella {
  background-image: url('/img/fe-huella.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 180px;
}

.fe-bento-huella img {
  height: 60px;
  width: auto;
}

.fe-bento-label-purple {
  background: #5E4894;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fe-bento-label-purple span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--opa-white);
}

.fe-bento-photo {
  position: relative;
  min-height: 120px;
}

.fe-bento-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fe-bento-simplifica {
  background: #5E4894;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.fe-bento-simplifica p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--opa-white);
  margin: 0;
  line-height: 1.6;
}

.fe-about-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex: 1;
}

.fe-about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   FIRMA ELECTRÓNICA - CÓMO FUNCIONA
   ========================================= */
.fe-como-section {
  padding: 0 0 40px;
}

.fe-como-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin-bottom: 20px;
}

.fe-como-card {
  background: #E0D6F3;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fe-como-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fe-como-item img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.fe-como-item span {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--opa-gray-800);
}

.fe-como-footer {
  font-family: var(--font-body);
  font-size: 1.9rem;
  color: var(--opa-gray-700);
  text-align: center;
  margin-top: 35px;
  line-height: 1.6;
}

/* =========================================
   FIRMA ELECTRÓNICA - BENEFICIOS
   ========================================= */
.fe-benefits-section {
  padding: 0 0 40px;
}

.fe-benefits-header {
  background: #32005E;
  border-radius: var(--radius-xl);
  padding: 20px 28px;
}

.fe-benefits-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--opa-white);
  margin: 0;
  text-align: center;
}

.fe-benefits-list {
  list-style: none;
  padding: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #E0D6F3;
  border-radius: var(--radius-xl);
}

.fe-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fe-benefits-list li img {
  height: 20px;
  width: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.fe-benefits-list li span {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--opa-gray-700);
  line-height: 1.5;
}

.fe-benefits-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.fe-benefits-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   CLIENTE OPA
   ========================================= */
.co-links-section {
  padding: 0 0 40px;
}

.co-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.co-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.co-card {
  background: #32B6E0;
  border-radius: var(--radius-xl);
  padding: 20px 24px;
}

.co-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--opa-white);
  margin-bottom: 10px;
}

.co-card-btn {
  background: #0366AF;
  color: var(--opa-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.co-card-btn:hover {
  background: var(--opa-blue-dark);
  color: var(--opa-white);
}

/* =========================================
   EMPLEADOS OPA - CARDS
   ========================================= */
.ys-cards-section {
  padding: 0 0 40px;
}

.ys-card {
  background: linear-gradient(90deg, #EBEBEB 0%, #CBE7FA 100%);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.ys-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--opa-blue);
  margin-bottom: 12px;
}

.ys-card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ys-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ys-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.ys-card-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--opa-white);
  background: #0366AF;
  border-radius: var(--radius-sm);
  padding: 8px 20px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.ys-card-btn:hover {
  background: var(--opa-blue);
  color: var(--opa-white);
  border-color: var(--opa-blue);
}

/* =========================================
   EMPLEADOS OPA - LINKS
   ========================================= */
.ys-links-section {
  padding: 0 0 60px;
}

.ys-link-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ys-link-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ys-link-banner span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--opa-white);
}

.ys-link-banner i {
  font-size: 2rem;
  color: var(--opa-white);
}

.ys-link-orange {
  background: var(--opa-orange);
}

.ys-link-blue {
  background: var(--opa-blue);
}

.ys-link-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.ys-link-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 767.98px) {
  .ec-benefits-grid,
  .ec-benefits-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-section {
    padding: 0 10px;
  }

  .hero-slide {
    height: 280px;
    border-radius: var(--radius-lg);
  }

  .hero-title {
    font-size: 1.1rem;
  }

  .hero-text-col {
    flex: 0 0 62%;
    max-width: 62%;
  }

  .hero-badge-col {
    flex: 0 0 38%;
    max-width: 38%;
  }

  .hero-product-badge img {
    height: 44px;
  }

  .hero-product-badge span {
    font-size: 0.75rem;
  }

  .section-header {
    padding: 14px 24px;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .contact-img-wrapper {
    min-height: 240px;
  }
}

/* ==========================================
   DIRECTORIO DE CONTACTO
   ========================================== */
.ct-directorio-section {
  padding: 60px 0;
}

.ct-directorio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.ct-directorio-card {
  width: calc(25% - 12px);
  background: #3574A5;
  border-radius: var(--radius-xl);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-directorio-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--opa-white);
  margin: 0 0 8px;
}

.ct-directorio-card a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--opa-white);
  text-decoration: underline;
}

.ct-directorio-card span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--opa-white);
}

@media (max-width: 991px) {
  .ct-directorio-card {
    width: calc(50% - 8px);
  }
}

@media (max-width: 575px) {
  .ct-directorio-card {
    width: 100%;
  }
}

/* ==========================================
   POLÍTICA DE DATOS
   ========================================== */
.pd-content-section {
  padding: 60px 0;
}

.pd-block {
  margin-bottom: 40px;
}

.pd-block h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--opa-orange);
  margin-bottom: 16px;
}

.pd-block p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--opa-gray-700);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: justify;
}

.pd-block a {
  color: var(--opa-blue);
  text-decoration: underline;
}

.pd-definitions,
.pd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-definitions li,
.pd-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--opa-gray-700);
  line-height: 1.8;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.pd-definitions li::before,
.pd-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--opa-orange);
  border-radius: 50%;
}

.pd-update {
  font-style: italic;
  color: var(--opa-gray-500) !important;
  margin-top: 20px;
}

/* =========================================
   POPUP PROMOCIONAL
   ========================================= */
.popup-dialog {
  max-width: 520px;
}

.popup-content {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  border-radius: 12px;
}

.popup-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.popup-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

#promoPopup .modal-backdrop {
  backdrop-filter: blur(4px);
}

@media (max-width: 575.98px) {
  .popup-dialog {
    max-width: 90%;
    margin: auto;
  }
}
