/* ============================================
   SERVICIOS PAGE - Estilos específicos
   ============================================ */

/* === HERO SERVICIOS === */
.sv-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sv-hero-bg {
  position: absolute;
  inset: 0;
}

.sv-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 56, 78, 0.85) 0%, rgba(0, 56, 78, 0.4) 60%, rgba(0,0,0,0) 100%);
}

.sv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.sv-hero-content h1 {
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: white;
  text-transform: capitalize;
  letter-spacing: 2px;
}

.sv-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Breadcrumb */
.sv-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.sv-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.sv-breadcrumb a:hover {
  color: var(--green-light);
}

.sv-breadcrumb span:last-child {
  color: white;
}

/* === FRANJA VERDE SERVICIOS === */
.sv-green-bar {
  background: var(--green-light);
  padding: 60px 105px;
}

.sv-green-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sv-green-bar-title {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  color: white;
  margin-bottom: 24px;
}

.sv-green-bar-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
}

.sv-green-bar-line {
  width: 48px;
  height: 2px;
  background: white;
}

.sv-green-bar > .sv-green-bar-inner > p {
  font-size: 20px;
  line-height: 1.6;
  color: white;
  max-width: 800px;
  margin-bottom: 40px;
}

.sv-green-bar-stats {
  display: flex;
  align-items: center;
  gap: 48px;
}

.sv-green-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sv-green-stat-number {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: white;
}

.sv-green-stat-text {
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.sv-green-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

/* === AUTOMATIZACIÓN === */
.sv-automation {
  padding: 100px 105px;
  background: var(--bg-light);
}

.sv-automation-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.sv-automation-content {
  flex: 1;
}

.sv-automation-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.sv-automation-content > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-slate);
  margin-bottom: 32px;
}

.sv-automation-image {
  flex: 0 0 45%;
  border-radius: 20px;
  overflow: hidden;
  max-height: 450px;
}

.sv-automation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-highlight-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-light);
  padding: 20px 28px;
  border-radius: 12px;
}

.sv-highlight-icon {
  font-size: 28px;
  color: var(--dark-blue);
  flex-shrink: 0;
}

.sv-highlight-box p {
  margin: 0;
  font-size: 16px;
  color: var(--dark-blue);
}

/* === LO QUE NOS HACE DIFERENTES === */
.sv-difference {
  padding: 100px 105px;
  background: white;
}

.sv-difference-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.sv-difference-header h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.sv-difference-header p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-slate);
}

/* Layout: card grande izq + 2 cards apiladas der */
.sv-diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sv-diff-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sv-diff-card-large,
.sv-diff-card-medium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: default;
}

.sv-diff-card-large {
  min-height: 580px;
}

.sv-diff-card-medium {
  flex: 1;
  min-height: 270px;
}

.sv-diff-card-img {
  position: absolute;
  inset: 0;
}

.sv-diff-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sv-diff-card-large:hover .sv-diff-card-img img,
.sv-diff-card-medium:hover .sv-diff-card-img img {
  transform: scale(1.05);
}

.sv-diff-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 56, 78, 0.9) 0%, rgba(0, 56, 78, 0.4) 40%, rgba(0,0,0,0) 70%);
}

.sv-diff-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 36px;
}

.sv-diff-card-content h3 {
  font-weight: 700;
  font-size: 26px;
  color: white;
  margin-bottom: 10px;
}

.sv-diff-card-large .sv-diff-card-content h3 {
  font-size: 32px;
}

.sv-diff-card-content p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 420px;
}

.sv-diff-card-medium .sv-diff-card-content {
  padding: 28px;
}

.sv-diff-card-medium .sv-diff-card-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.sv-diff-card-medium .sv-diff-card-content p {
  font-size: 15px;
}

.sv-disclaimer {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 24px;
  font-style: italic;
}

/* === MODELO INTEGRADO === */
.sv-model {
  padding: 100px 105px;
  background: var(--dark-blue);
}

.sv-model-header {
  margin-bottom: 48px;
}

.sv-model-header .gc-label-text {
  color: rgba(255, 255, 255, 0.7);
}

.sv-model-header .gc-label-line {
  background: var(--green-light);
}

.sv-model-header h2 {
  font-weight: 700;
  font-size: 36px;
  color: white;
}

.sv-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.sv-model-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

.sv-model-card-img {
  position: absolute;
  inset: 0;
}

.sv-model-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sv-model-card:hover .sv-model-card-img img {
  transform: scale(1.08);
}

.sv-model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0,0,0,0) 100%);
}

.sv-model-card-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.sv-model-card-bar {
  width: 48px;
  height: 4px;
  background: var(--green-light);
  border-radius: 100px;
  margin-bottom: 12px;
}

.sv-model-card-info h3 {
  font-weight: 700;
  font-size: 20px;
  color: white;
  margin: 0;
  line-height: 1.3;
}

/* Card destacada full width */
.sv-model-featured {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sv-model-featured-img {
  position: absolute;
  inset: 0;
}

.sv-model-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sv-model-featured:hover .sv-model-featured-img img {
  transform: scale(1.05);
}

.sv-model-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 56, 78, 0.92) 0%, rgba(0, 56, 78, 0.7) 50%, rgba(0,0,0,0.1) 100%);
}

.sv-model-featured-content {
  position: relative;
  z-index: 2;
  padding: 48px 60px;
  max-width: 600px;
}

.sv-model-featured-content h3 {
  font-weight: 700;
  font-size: 32px;
  color: white;
  margin-bottom: 12px;
}

.sv-model-featured-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.sv-model-featured-content .gc-btn-primary {
  background: var(--green-light);
  color: var(--dark-blue);
}

/* === PLANES === */
.sv-plans {
  padding: 100px 105px;
  background: var(--bg-light);
}

.sv-plans-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.sv-plans-header .gc-section-label {
  justify-content: center;
}

.sv-plans-header h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.sv-plans-header p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-slate);
}

.sv-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: stretch;
}

.sv-plan-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
}

.sv-plan-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sv-plan-body ul {
  flex: 1;
}

.sv-plan-card:hover {
  transform: translateY(-6px);
}

.sv-plan-card--featured {
  box-shadow: 0 12px 48px -12px rgba(164, 181, 47, 0.35);
}

.sv-plan-recommended {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--green-primary);
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 8px;
  z-index: 5;
}

/* Imagen superior de cada plan */
.sv-plan-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.sv-plan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.sv-plan-card:hover .sv-plan-img img {
  transform: scale(1.08);
}

.sv-plan-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 56, 78, 0.85) 0%, rgba(0, 56, 78, 0.3) 50%, rgba(0,0,0,0) 100%);
}

.sv-plan-img-overlay--green {
  background: linear-gradient(to top, rgba(164, 181, 47, 0.9) 0%, rgba(164, 181, 47, 0.3) 50%, rgba(0,0,0,0) 100%);
}

.sv-plan-img-content {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  z-index: 2;
}

.sv-plan-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.sv-plan-badge--white {
  background: white;
  color: var(--dark-blue);
}

.sv-plan-img-content h3 {
  font-weight: 700;
  font-size: 28px;
  color: white;
  margin: 0;
  line-height: 1.2;
}

/* Body del plan */
.sv-plan-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
}

.sv-plan-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.sv-plan-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-slate);
  line-height: 1.4;
}

.sv-plan-body ul li i {
  color: var(--green-primary);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sv-plan-body .gc-btn {
  width: 100%;
}

/* === BENEFICIOS === */
.sv-benefits {
  padding: 100px 105px;
  background: white;
}

.sv-benefits-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.sv-benefits-image {
  flex: 0 0 45%;
  border-radius: 20px;
  overflow: hidden;
  max-height: 500px;
}

.sv-benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sv-benefits-content {
  flex: 1;
}

.sv-benefits-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.sv-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.sv-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-dark);
}

.sv-benefits-tagline {
  font-size: 20px;
  color: var(--dark-blue);
  margin-top: 8px;
}

/* === ADMINISTRACIÓN PH === */
.sv-admin {
  padding: 100px 105px;
  background: var(--bg-light);
}

.sv-admin-header {
  margin-bottom: 60px;
}

.sv-admin-header h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--text-dark);
}

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

.sv-admin-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.1);
}

.sv-admin-card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

.sv-admin-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
}

.sv-admin-card-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.sv-admin-card-overlay h3 {
  font-weight: 700;
  font-size: 26px;
  color: white;
  margin: 0;
}

.sv-admin-card-body {
  padding: 28px 24px;
}

.sv-admin-types {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sv-admin-types li {
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-slate);
}

.sv-admin-card-body h4 {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sv-admin-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sv-admin-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-slate);
}

.sv-admin-services li i {
  color: var(--green-primary);
  font-size: 14px;
}

/* === CTA FINAL === */
.sv-cta {
  background: var(--green-primary);
  padding: 80px 105px;
  text-align: center;
}

.sv-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.sv-cta-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: var(--dark-blue);
  margin-bottom: 16px;
}

.sv-cta-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0, 56, 78, 0.8);
  margin-bottom: 32px;
}

.sv-cta .gc-btn-primary {
  background: var(--dark-blue);
  color: white;
  padding: 16px 48px;
  font-size: 18px;
}

.sv-cta .gc-btn-primary:hover {
  background: #004d6b;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Fade up (default) */
.sv-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.sv-animate.sv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.sv-animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.sv-animate-left.sv-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.sv-animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.sv-animate-right.sv-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.sv-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.sv-animate-scale.sv-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger items */
.sv-stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sv-stagger-item.sv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sv-animate,
  .sv-animate-left,
  .sv-animate-right,
  .sv-animate-scale,
  .sv-stagger-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .sv-automation-wrapper {
    flex-direction: column;
  }

  .sv-automation-image {
    flex: none;
    width: 100%;
  }

  .sv-diff-layout {
    grid-template-columns: 1fr;
  }

  .sv-diff-card-large {
    min-height: 400px;
  }

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

  .sv-model {
    padding: 80px 40px;
  }

  .sv-benefits-wrapper {
    flex-direction: column;
  }

  .sv-benefits-image {
    flex: none;
    width: 100%;
    max-height: 400px;
  }
}

@media (max-width: 991px) {
  .sv-green-bar {
    padding: 40px;
  }

  .sv-green-bar-stats {
    gap: 24px;
  }

  .sv-green-stat-number {
    font-size: 36px;
  }

  .sv-hero-content {
    padding: 0 40px;
  }

  .sv-hero-content h1 {
    font-size: 48px;
  }

  .sv-automation,
  .sv-difference,
  .sv-plans,
  .sv-benefits,
  .sv-admin {
    padding: 60px 40px;
  }

  .sv-model {
    padding: 60px 40px;
  }

  .sv-model-grid {
    grid-template-columns: 1fr;
  }

  .sv-model-card {
    height: 280px;
  }

  .sv-model-featured {
    height: auto;
    flex-direction: column;
  }

  .sv-model-featured-img {
    position: relative;
    height: 250px;
  }

  .sv-model-featured-content {
    padding: 30px;
    background: var(--dark-blue);
  }

  .sv-plans-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .sv-admin-grid {
    grid-template-columns: 1fr;
  }

  .sv-cta {
    padding: 60px 40px;
  }
}

@media (max-width: 576px) {
  .sv-green-bar {
    padding: 32px 20px;
  }

  .sv-green-bar-stats {
    flex-direction: column;
    gap: 20px;
  }

  .sv-green-stat-divider {
    width: 60px;
    height: 1px;
  }

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

  .sv-hero {
    min-height: 400px;
  }

  .sv-hero-content {
    padding: 0 20px;
  }

  .sv-hero-content h1 {
    font-size: 36px;
  }

  .sv-hero-content h1 br {
    display: none;
  }

  .sv-automation,
  .sv-difference,
  .sv-plans,
  .sv-benefits,
  .sv-admin {
    padding: 48px 20px;
  }

  .sv-model {
    padding: 48px 20px;
  }

  .sv-model-featured-content h3 {
    font-size: 24px;
  }

  .sv-diff-layout {
    grid-template-columns: 1fr;
  }

  .sv-diff-card-large {
    min-height: 350px;
  }

  .sv-diff-card-medium {
    min-height: 280px;
  }

  .sv-model-grid {
    grid-template-columns: 1fr;
  }

  .sv-model-item--full {
    grid-column: auto;
  }

  .sv-cta {
    padding: 48px 20px;
  }

  .sv-cta-content h2 {
    font-size: 28px;
  }

  .sv-automation-content h2,
  .sv-difference-header h2,
  .sv-model-content h2,
  .sv-plans-header h2,
  .sv-benefits-content h2,
  .sv-admin-header h2 {
    font-size: 28px;
  }

  .sv-green-bar-title {
    font-size: 28px;
  }

  .sv-hero-content h1 {
    font-size: 28px;
  }

  .sv-model-featured-content {
    padding: 24px 20px;
  }

  .sv-model-featured-content h3 {
    font-size: 22px;
  }

  .sv-diff-card-content {
    padding: 24px;
  }

  .sv-diff-card-large .sv-diff-card-content h3 {
    font-size: 24px;
  }
}

/* === SERVICIOS COMPLEMENTARIOS === */
.sv-complementarios {
  padding: 100px 60px;
  background: #f8f9fa;
}
.sv-complementarios-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.sv-complementarios-header .gc-section-label {
  justify-content: center;
}
.sv-complementarios-header h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text-dark);
  margin: 16px 0 0;
}
.sv-complementarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.sv-comp-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.sv-comp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.sv-comp-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.sv-comp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-comp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,56,78,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.sv-comp-card-overlay h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0;
}
.sv-comp-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sv-comp-tagline {
  color: var(--green-primary);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.4;
}
.sv-comp-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.sv-comp-bullets li {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 4px;
}
.sv-comp-bullets li i {
  color: var(--green-primary);
  margin-right: 8px;
}
.sv-comp-ideal {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid #eaeaea;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}
.sv-comp-ideal strong {
  color: var(--text-dark);
}

/* === CENTRO DE MONITOREO === */
.sv-monitoreo {
  padding: 100px 60px;
  background: #fff;
}
.sv-monitoreo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.sv-monitoreo-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}
.sv-monitoreo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-monitoreo-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,56,78,0.4) 0%, rgba(0,56,78,0.7) 100%);
}
.sv-monitoreo-image-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--green-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
.sv-monitoreo-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-dark);
  margin: 16px 0 20px;
}
.sv-monitoreo-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.sv-monitoreo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.sv-monitoreo-features li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}
.sv-monitoreo-features li i {
  color: var(--green-primary);
  margin-right: 10px;
}

@media (max-width: 991px) {
  .sv-complementarios { padding: 60px 24px; }
  .sv-complementarios-grid { grid-template-columns: 1fr; gap: 20px; }
  .sv-monitoreo { padding: 60px 24px; }
  .sv-monitoreo-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .sv-monitoreo-image { height: 320px; }
}
