/* ═══════════════════════════════════════════════════════════
   MONITOREO 2001 — ANIMATIONS.CSS
   Sistema de animaciones profesional
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --verde:       #2a7a3a;
  --verde-dark:  #1a5c2e;
  --verde-light: #5dde85;
  --anim-ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --anim-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ══════════════════════════════════
   1. KEYFRAMES
══════════════════════════════════ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-80px) skewX(3deg); }
  to   { opacity: 1; transform: translateX(0) skewX(0deg); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(80px) skewX(-3deg); }
  to   { opacity: 1; transform: translateX(0) skewX(0deg); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.5) rotate(-5deg); }
  70%  { transform: scale(1.05) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42, 122, 58, 0.3); }
  50%       { box-shadow: 0 0 20px 4px rgba(42, 122, 58, 0.15); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes rotateSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes typing {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blinkCursor {
  50% { border-color: transparent; }
}
@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(4); opacity: 0; }
}
@keyframes slideBar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes numberRoll {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes wave {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  100% { transform: translateY(-100%) rotate(360deg); opacity: 0; }
}
@keyframes zoomPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
@keyframes headlineReveal {
  from { opacity: 0; transform: translateY(20px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  40%      { transform: translateY(-10px) scale(1.1); }
  70%      { transform: translateY(-4px) scale(1.05); }
}
@keyframes underlineExpand {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

/* ══════════════════════════════════
   2. SCROLL-REVEAL CLASSES
   JS agrega .m-visible cuando entra en viewport
══════════════════════════════════ */

.m-reveal {
  opacity: 0;
  transition: opacity 0.7s var(--anim-ease), transform 0.7s var(--anim-ease);
}
.m-reveal.m-from-bottom  { transform: translateY(45px); }
.m-reveal.m-from-left    { transform: translateX(-55px); }
.m-reveal.m-from-right   { transform: translateX(55px); }
.m-reveal.m-from-top     { transform: translateY(-35px); }
.m-reveal.m-scale        { transform: scale(0.88); }
.m-reveal.m-rotate       { transform: translateY(30px) rotate(-3deg); }

.m-reveal.m-visible {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0deg);
}

/* Stagger delays */
.m-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.m-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.m-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.m-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.m-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.m-stagger > *:nth-child(6) { transition-delay: 0.55s; }

/* ══════════════════════════════════
   3. HEADER — entrada al cargar
══════════════════════════════════ */

header {
  animation: fadeInDown 0.6s var(--anim-ease) both;
}
#top_line {
  animation: fadeInDown 0.5s var(--anim-ease) 0.1s both;
}

/* ══════════════════════════════════
   4. STATS BAR — números impactantes
══════════════════════════════════ */

#stats_bar {
  overflow: hidden;
}
#stats_bar .stat-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--anim-ease), transform 0.6s var(--anim-ease);
}
#stats_bar .stat-item.m-visible {
  opacity: 1;
  transform: translateY(0);
}
#stats_bar .stat-item:nth-child(1),
#stats_bar .col-sm-3:nth-child(1) .stat-item { transition-delay: 0.0s; }
#stats_bar .col-sm-3:nth-child(2) .stat-item { transition-delay: 0.1s; }
#stats_bar .col-sm-3:nth-child(3) .stat-item { transition-delay: 0.2s; }
#stats_bar .col-sm-3:nth-child(4) .stat-item { transition-delay: 0.3s; }

.stat-num {
  display: inline-block;
}
.stat-num.counting {
  animation: numberRoll 0.5s var(--anim-spring) both;
}

/* ══════════════════════════════════
   5. FEATURE BOXES — #feat_home
══════════════════════════════════ */

.box_feat {
  transition: transform 0.35s var(--anim-ease),
              box-shadow 0.35s var(--anim-ease);
  border-radius: 8px;
  padding: 20px 20px 20px 110px !important;
}
.box_feat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  background: #f9fdf9;
}
.box_feat span {
  transition: transform 0.4s var(--anim-spring),
              background-color 0.3s ease;
}
.box_feat:hover span {
  transform: scale(1.15) rotate(-5deg);
  background-color: var(--verde);
}
.box_feat:hover span img {
  filter: brightness(0) invert(1);
}

/* ══════════════════════════════════
   6. PLAN COMODATOS
══════════════════════════════════ */

.comodato-card {
  transition: transform 0.4s var(--anim-spring),
              box-shadow 0.4s ease;
}
.comodato-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35) !important;
}

/* Precio — efecto shimmer */
.precio {
  position: relative;
  overflow: hidden;
}
.precio::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 3s ease infinite;
}

/* Kit list items — stagger */
.kit-list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.kit-list.m-visible li { opacity: 1; transform: translateX(0); }
.kit-list.m-visible li:nth-child(1)  { transition-delay: 0.05s; }
.kit-list.m-visible li:nth-child(2)  { transition-delay: 0.10s; }
.kit-list.m-visible li:nth-child(3)  { transition-delay: 0.15s; }
.kit-list.m-visible li:nth-child(4)  { transition-delay: 0.20s; }
.kit-list.m-visible li:nth-child(5)  { transition-delay: 0.25s; }
.kit-list.m-visible li:nth-child(6)  { transition-delay: 0.30s; }
.kit-list.m-visible li:nth-child(7)  { transition-delay: 0.35s; }
.kit-list.m-visible li:nth-child(8)  { transition-delay: 0.40s; }
.kit-list.m-visible li:nth-child(9)  { transition-delay: 0.45s; }
.kit-list.m-visible li:nth-child(10) { transition-delay: 0.50s; }

/* ══════════════════════════════════
   7. SERVICE CARDS (home + service pages)
══════════════════════════════════ */

figure.animated {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  position: relative;
}
figure.animated::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,92,46,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
figure.animated:hover::before {
  opacity: 1;
}

/* Service item hover lift */
.col-sm-4 {
  transition: transform 0.3s var(--anim-ease);
}
#feat_home + div .col-sm-4:hover {
  transform: translateY(-6px);
}

/* ══════════════════════════════════
   8. TESTIMONIOS
══════════════════════════════════ */

.testimonio {
  transition: transform 0.35s var(--anim-ease),
              box-shadow 0.35s ease,
              border-left-color 0.3s ease;
}
.testimonio:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-left-color: var(--verde-light) !important;
}

/* Estrellas animadas al hacer hover */
.testimonio:hover .stars-animated span {
  display: inline-block;
  animation: iconBounce 0.5s var(--anim-spring) both;
}

/* ══════════════════════════════════
   9. CTA BUTTONS — WhatsApp y principales
══════════════════════════════════ */

/* WhatsApp flotante — pulse permanente */
#whatsapp-float {
  animation: pulse 2.2s ease infinite, floatY 4s ease-in-out infinite;
}
#whatsapp-float:hover {
  animation: none;
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37,211,102,0.7) !important;
  transition: transform 0.3s var(--anim-spring), box-shadow 0.3s ease;
}

/* Botón comodato */
.btn-comodato {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--anim-spring),
              box-shadow 0.3s ease,
              background-color 0.3s ease !important;
}
.btn-comodato::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.btn-comodato:hover::before {
  width: 300px; height: 300px; opacity: 1;
}
.btn-comodato:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* btn_quote en #get_quote */
a.btn_quote {
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--anim-ease) !important;
}
a.btn_quote:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Botones verdes genéricos */
.btn_1, a.btn_1, .btn_full, a.btn_full, a.btn_contact {
  transition: all 0.3s var(--anim-ease) !important;
}
.btn_1:hover, a.btn_1:hover, .btn_full:hover, a.btn_full:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,122,50,0.35);
}

/* ══════════════════════════════════
   10. MARCAS — entrada en fila
══════════════════════════════════ */

.marca-badge {
  transition: transform 0.3s var(--anim-spring),
              box-shadow 0.3s ease,
              color 0.3s ease;
  cursor: default;
}
.marca-badge:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 18px rgba(42,122,58,0.25);
  color: var(--verde-dark);
}

/* ══════════════════════════════════
   11. SECTION HEADINGS — línea decorativa
══════════════════════════════════ */

.section-title-anim {
  position: relative;
  display: inline-block;
}
.section-title-anim::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--verde), var(--verde-light));
  border-radius: 2px;
  transition: width 0.7s var(--anim-ease);
}
.section-title-anim.m-visible::after {
  width: 60px;
}

/* ══════════════════════════════════
   12. TEAM CARDS — about.html
══════════════════════════════════ */

.team-item {
  transition: transform 0.4s var(--anim-ease);
}
.team-item:hover {
  transform: translateY(-8px);
}
.team-item-detail {
  background: linear-gradient(135deg, rgba(26,92,46,0.92), rgba(13,58,28,0.95)) !important;
}

/* ══════════════════════════════════
   13. SIDEBAR — cat_nav links
══════════════════════════════════ */

ul#cat_nav li a {
  transition: all 0.3s var(--anim-ease) !important;
  position: relative;
  overflow: hidden;
}
ul#cat_nav li a::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 3px;
  background: var(--verde);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
ul#cat_nav li a:hover::before {
  transform: scaleY(1);
}
ul#cat_nav li a:hover {
  padding-left: 16px !important;
  color: var(--verde);
}

/* ══════════════════════════════════
   14. FOOTER — entrada suave
══════════════════════════════════ */

footer {
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--verde-dark), var(--verde-light), var(--verde-dark));
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

/* ══════════════════════════════════
   15. BG_CONTENT (parallax section)
══════════════════════════════════ */

.bg_content > div {
  transition: none;
}
.bg_content h3 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s var(--anim-ease), transform 0.8s var(--anim-ease);
}
.bg_content p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--anim-ease) 0.2s, transform 0.8s var(--anim-ease) 0.2s;
}
.bg_content a {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.bg_content.m-visible h3,
.bg_content.m-visible p,
.bg_content.m-visible a {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   16. SUBHEADER PAGES (h1 + p)
══════════════════════════════════ */

#sub_content_in h1 {
  animation: headlineReveal 0.9s var(--anim-ease) 0.3s both;
}
#sub_content_in p {
  animation: fadeInUp 0.7s var(--anim-ease) 0.6s both;
}

/* ══════════════════════════════════
   17. FORM STEPS — quotation
══════════════════════════════════ */

.form_title {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.form_title.m-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════
   18. TIPS / FAQ — accordion
══════════════════════════════════ */

.panel {
  transition: transform 0.3s var(--anim-ease), box-shadow 0.3s ease;
}
.panel:hover {
  transform: translateX(4px);
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}
.panel-heading a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.panel-heading a:hover {
  color: var(--verde) !important;
}

/* ══════════════════════════════════
   19. SHOP — product cards
══════════════════════════════════ */

.ribbon, .product-item, .grid-item {
  transition: transform 0.3s var(--anim-ease), box-shadow 0.3s ease;
}
.grid-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* ══════════════════════════════════
   20. BLOG — post cards
══════════════════════════════════ */

.post-item, article {
  transition: transform 0.3s var(--anim-ease);
}

/* ══════════════════════════════════
   21. GRADIENT CTA SECTIONS
══════════════════════════════════ */

/* Animated gradient on CTA banners */
[style*="linear-gradient(135deg,#1a5c2e"],
[style*="linear-gradient(135deg, #1a5c2e"] {
  background-size: 200% 200% !important;
  animation: gradientShift 6s ease infinite;
}

#get_quote {
  position: relative;
  overflow: hidden;
}
#get_quote::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: rotateSpin 15s linear infinite;
  pointer-events: none;
}

/* ══════════════════════════════════
   22. HOVER LINKS — nav & footer
══════════════════════════════════ */

.main-menu ul li a {
  position: relative;
}
.main-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--verde);
  transition: width 0.3s var(--anim-ease);
}
.main-menu ul li a:hover::after,
.main-menu ul li.current a::after {
  width: 100%;
}

footer ul li a {
  transition: color 0.2s ease, padding-left 0.2s ease !important;
}
footer ul li a:hover {
  padding-left: 6px;
  color: var(--verde-light) !important;
}

/* ══════════════════════════════════
   23. PROMO / QUOTE BANNER HOVER
══════════════════════════════════ */

.quote_banner a {
  transition: all 0.3s var(--anim-ease) !important;
  position: relative;
  overflow: hidden;
}
.quote_banner a:hover {
  transform: scale(1.02);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════
   24. PRELOADER — salida elegante
══════════════════════════════════ */

#preloader {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#preloader.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

/* ══════════════════════════════════
   25. SCROLL PROGRESS BAR
══════════════════════════════════ */

#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--verde), var(--verde-light));
  z-index: 999999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ══════════════════════════════════
   26. BACK TO TOP button
══════════════════════════════════ */

#toTop {
  transition: opacity 0.3s ease, transform 0.3s var(--anim-spring) !important;
}
#toTop:hover {
  transform: translateY(-4px) scale(1.1) !important;
  background-color: var(--verde) !important;
}

/* ══════════════════════════════════
   27. IMAGE HOVER — servicio / blog
══════════════════════════════════ */

.img-responsive {
  transition: filter 0.4s ease;
}
figure.animated:hover .img-responsive {
  filter: brightness(1.05) saturate(1.1);
}

/* ══════════════════════════════════
   28. FLOATING PARTICLES (decorative)
══════════════════════════════════ */

.m-particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(93, 222, 133, 0.4);
  pointer-events: none;
  animation: wave 6s linear infinite;
}

/* ══════════════════════════════════
   29. CONTACT PAGE — form inputs
══════════════════════════════════ */

.form-control {
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.2s ease !important;
}
.form-control:focus {
  border-color: var(--verde) !important;
  box-shadow: 0 0 0 3px rgba(42,122,58,0.12) !important;
  transform: translateY(-1px);
}

/* ══════════════════════════════════
   30. ABOUT — stats/numbers section
══════════════════════════════════ */

.m-counter {
  display: inline-block;
  transition: color 0.3s ease;
}

/* ══════════════════════════════════
   RESPONSIVE ADJUSTMENTS
══════════════════════════════════ */

@media (max-width: 767px) {
  .m-reveal.m-from-left,
  .m-reveal.m-from-right {
    transform: translateY(30px);
  }
  .box_feat:hover  { transform: none; }
  .team-item:hover { transform: none; }
}


/* ═══════════════════════════════════════════════════════════
   SERVICIOS PREMIUM — Sección rediseñada
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframes adicionales ── */
@keyframes servCardIn {
  0%   { opacity: 0; transform: translateY(60px) scale(0.94); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes servIconSpin {
  0%   { transform: rotate(0deg) scale(1); }
  40%  { transform: rotate(-12deg) scale(1.18); }
  100% { transform: rotate(0deg) scale(1); }
}
@keyframes servGlowPulse {
  0%, 100% { opacity: 0; transform: scale(0.85); }
  50%       { opacity: 1; transform: scale(1.15); }
}
@keyframes servTitleReveal {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); }
  100% { opacity: 1; clip-path: inset(0 0% 0 0); }
}
@keyframes servBarGrow {
  from { width: 0; opacity: 0; }
  to   { width: 80px; opacity: 1; }
}
@keyframes servTrustIn {
  0%   { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes servBadgePop {
  0%   { opacity: 0; transform: translateX(20px) scale(0.7); }
  60%  { transform: translateX(-4px) scale(1.07); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes servCheckIn {
  0%   { opacity: 0; transform: scale(0) rotate(-45deg); }
  70%  { transform: scale(1.2) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes servPulseDot {
  0%, 100% { r: 2; opacity: 0.7; }
  50%       { r: 3.5; opacity: 1; }
}
@keyframes decoCircleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.06; }
  50%       { transform: translateY(-30px) scale(1.05); opacity: 0.1; }
}
@keyframes trustStripIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes eyebrowSlide {
  from { opacity: 0; letter-spacing: 0.5em; }
  to   { opacity: 1; letter-spacing: 0.25em; }
}

/* ── Sección wrapper ── */
#servicios-premium {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(26,92,46,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(13,58,28,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at -5% 80%, rgba(42,122,58,0.3) 0%, transparent 55%),
    linear-gradient(160deg, #071a0e 0%, #0a2414 35%, #061510 65%, #040e08 100%);
  padding: 90px 0 70px;
  overflow: hidden;
}

/* Grid pattern futurista */
#servicios-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,122,58,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,122,58,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Decoraciones de fondo */
.serv-bg-deco { pointer-events: none; }
.serv-deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,222,133,0.18) 0%, transparent 70%);
}
.serv-deco-1 {
  width: 600px; height: 600px;
  top: -220px; left: -160px;
  animation: decoCircleFloat 9s ease-in-out infinite;
  opacity: 1;
}
.serv-deco-2 {
  width: 400px; height: 400px;
  bottom: -120px; right: -80px;
  animation: decoCircleFloat 12s ease-in-out 3s infinite;
  opacity: 1;
}
.serv-deco-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(93,222,133,0.0) 20%, rgba(93,222,133,0.7) 50%, rgba(93,222,133,0.0) 80%, transparent 100%);
  opacity: 1;
}

/* ── Header de sección ── */
.serv-header {
  margin-bottom: 55px;
  position: relative;
  z-index: 1;
}
.serv-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #5dde85;
  background: rgba(93,222,133,0.1);
  border: 1px solid rgba(93,222,133,0.35);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  opacity: 0;
  animation: eyebrowSlide 0.7s var(--anim-ease) 0.2s forwards;
  box-shadow: 0 0 18px rgba(93,222,133,0.15);
}
.serv-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  opacity: 0;
  animation: fadeInUp 0.7s var(--anim-ease) 0.35s forwards;
  text-shadow: 0 0 40px rgba(93,222,133,0.25);
}
.serv-subtitle {
  font-size: 17px;
  color: rgba(200,230,210,0.75);
  max-width: 520px;
  margin: 0 auto 20px;
  opacity: 0;
  animation: fadeInUp 0.7s var(--anim-ease) 0.5s forwards;
}
.serv-title-bar {
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, transparent, #5dde85, rgba(93,222,133,0.4), transparent);
  border-radius: 2px;
  margin: 0 auto;
  animation: servBarGrow 0.8s var(--anim-ease) 0.8s forwards;
  box-shadow: 0 0 12px rgba(93,222,133,0.5);
}

/* ── Cards row ── */
.serv-cards-row {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.serv-col {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.65s var(--anim-ease), transform 0.65s var(--anim-ease);
}
.serv-col.serv-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.serv-col:nth-child(1) { transition-delay: 0.0s; }
.serv-col:nth-child(2) { transition-delay: 0.15s; }
.serv-col:nth-child(3) { transition-delay: 0.3s; }

/* ── Card base ── */
.serv-card {
  position: relative;
  background: rgba(10,28,16,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 36px 28px 28px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35), 0 1px 0 rgba(93,222,133,0.08) inset;
  transition: transform 0.4s var(--anim-spring), box-shadow 0.4s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(93,222,133,0.12);
}
.serv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(93,222,133,0.6), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--anim-ease);
}
.serv-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 4px 20px rgba(93,222,133,0.15), 0 1px 0 rgba(93,222,133,0.15) inset;
  border-color: rgba(93,222,133,0.28);
}
.serv-card:hover::before {
  transform: scaleX(1);
}

/* Card destacada (featured) */
.serv-card--featured {
  background: linear-gradient(165deg, rgba(26,92,46,0.95) 0%, rgba(13,58,28,0.98) 100%);
  border-color: rgba(93,222,133,0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 0 40px rgba(26,92,46,0.3), 0 1px 0 rgba(93,222,133,0.15) inset;
  color: #fff;
}
.serv-card--featured::before {
  background: linear-gradient(90deg, transparent, #5dde85, #a8f5c0, transparent);
  transform: scaleX(1);
}
.serv-card--featured .serv-card-desc { color: rgba(255,255,255,0.8); }
.serv-card--featured .serv-card-title { color: #fff; }
.serv-card--featured .serv-feat-list li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.07); }
.serv-card--featured .serv-check { color: var(--verde-light); }
.serv-card--featured .serv-card-btn {
  background: rgba(93,222,133,0.15);
  color: #5dde85;
  border-color: rgba(93,222,133,0.35);
}
.serv-card--featured .serv-card-btn:hover {
  background: #5dde85;
  color: #071a0e;
  border-color: #5dde85;
}
.serv-card--featured .serv-card-number { color: rgba(93,222,133,0.1); }
.serv-card--featured .serv-card-icon-bg {
  background: rgba(93,222,133,0.1);
}
.serv-card--featured .serv-icon {
  color: #5dde85;
}
.serv-card--featured:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 6px 30px rgba(93,222,133,0.3);
}

/* ── Número decorativo ── */
.serv-card-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(93,222,133,0.06);
  line-height: 1;
  user-select: none;
  transition: color 0.4s ease, transform 0.4s ease;
}
.serv-card:hover .serv-card-number {
  color: rgba(93,222,133,0.12);
  transform: scale(1.05) translateY(-4px);
}

/* ── Badge "Más solicitado" ── */
.serv-card-badge {
  position: absolute;
  top: 16px; left: -2px;
  background: var(--verde-light);
  color: var(--verde-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px 4px 14px;
  border-radius: 0 12px 12px 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  animation: servBadgePop 0.5s var(--anim-spring) 1.2s both;
}

/* ── Icono ── */
.serv-card-icon-wrap {
  position: relative;
  width: 72px; height: 72px;
  margin: 0 0 24px;
  flex-shrink: 0;
}
.serv-card-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: rgba(93,222,133,0.08);
  transition: background 0.3s ease, transform 0.4s var(--anim-spring);
}
.serv-card:hover .serv-card-icon-bg {
  background: rgba(93,222,133,0.15);
  transform: scale(1.08) rotate(-5deg);
}
.serv-icon {
  position: relative;
  width: 72px; height: 72px;
  padding: 14px;
  color: #5dde85;
  transition: transform 0.5s var(--anim-spring), color 0.3s ease;
  display: block;
}
.serv-card:hover .serv-icon {
  transform: scale(1.1);
  color: #a8f5c0;
}
.serv-card--featured .serv-card-icon-bg { background: rgba(93,222,133,0.1); }
.serv-card--featured:hover .serv-card-icon-bg { background: rgba(93,222,133,0.18); }

/* ── Cuerpo de card ── */
.serv-card-body {
  flex: 1;
}
.serv-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e8f5ec;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.serv-card:hover .serv-card-title { color: #5dde85; }
.serv-card-desc {
  font-size: 14px;
  color: rgba(170,210,180,0.7);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ── Feature list ── */
.serv-feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.serv-feat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(180,225,195,0.8);
  padding: 5px 0;
  border-bottom: 1px solid rgba(93,222,133,0.08);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.serv-card.serv-feat-visible .serv-feat-list li { opacity: 1; transform: translateX(0); }
.serv-card.serv-feat-visible .serv-feat-list li:nth-child(1) { transition-delay: 0.0s; }
.serv-card.serv-feat-visible .serv-feat-list li:nth-child(2) { transition-delay: 0.08s; }
.serv-card.serv-feat-visible .serv-feat-list li:nth-child(3) { transition-delay: 0.16s; }
.serv-card.serv-feat-visible .serv-feat-list li:nth-child(4) { transition-delay: 0.24s; }
.serv-feat-list li:last-child { border-bottom: none; }
.serv-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  min-width: 18px;
  background: rgba(93,222,133,0.12);
  color: #5dde85;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.3s var(--anim-spring);
}
.serv-card:hover .serv-check { background: #5dde85; color: #071a0e; }
.serv-card--featured .serv-check { background: rgba(93,222,133,0.15); color: #5dde85; }
.serv-card--featured:hover .serv-check { background: #5dde85; color: #071a0e; }

/* ── Footer de card (botón) ── */
.serv-card-footer {
  margin-top: auto;
  padding-top: 12px;
}
.serv-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5dde85;
  background: transparent;
  border: 1.5px solid rgba(93,222,133,0.3);
  border-radius: 8px;
  padding: 10px 18px;
  text-decoration: none;
  transition: all 0.3s var(--anim-ease);
  position: relative;
  overflow: hidden;
}
.serv-card-btn svg {
  width: 16px; height: 16px;
  transition: transform 0.3s var(--anim-spring);
}
.serv-card-btn:hover {
  background: #5dde85;
  color: #071a0e;
  border-color: #5dde85;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(93,222,133,0.35);
  text-decoration: none;
}
.serv-card-btn:hover svg { transform: translateX(4px); }

/* Glow decorativo */
.serv-card-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,222,133,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.serv-card:hover .serv-card-glow { opacity: 1; transform: scale(1.3); }

/* ── Trust strip ── */
.serv-trust-strip {
  margin-top: 20px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(42,122,58,0.12);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: translateY(20px);
}
.serv-trust-strip.serv-in {
  opacity: 1;
  transform: translateY(0);
}
.serv-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.serv-trust-item.serv-in { opacity: 1; transform: translateX(0); }
.serv-trust-item:nth-child(1) { transition-delay: 0.1s; }
.serv-trust-item:nth-child(2) { transition-delay: 0.2s; }
.serv-trust-item:nth-child(3) { transition-delay: 0.3s; }
.serv-trust-item:nth-child(4) { transition-delay: 0.4s; }
.serv-trust-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: background 0.3s ease, transform 0.3s var(--anim-spring);
  color: var(--verde-light);
}
.serv-trust-icon svg { width: 22px; height: 22px; }
.serv-trust-item:hover .serv-trust-icon {
  background: var(--verde);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.serv-trust-item div { line-height: 1.25; }
.serv-trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.serv-trust-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.70);
}

/* ── dot animado en el reloj SVG ── */
.serv-pulse-dot {
  animation: servGlowPulse 2s ease-in-out infinite;
  transform-origin: 32px 10px;
}

/* ═══════════════════════════════════════════════════════════
   QUIÉNES SOMOS — about.html — Mejoras de animación
   ═══════════════════════════════════════════════════════════ */

@keyframes aboutTextReveal {
  from { opacity: 0; transform: translateY(30px) skewY(1deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0deg); }
}
@keyframes aboutLineIn {
  from { width: 0; opacity: 0; }
  to   { width: 40px; opacity: 1; }
}
@keyframes aboutImgIn {
  from { opacity: 0; transform: scale(0.95) translateX(-20px); filter: blur(4px); }
  to   { opacity: 1; transform: scale(1) translateX(0); filter: blur(0); }
}
@keyframes featItemIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes aboutIconPop {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(5deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Intro image */
#intro img {
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
#intro.m-visible img {
  animation: aboutImgIn 0.9s var(--anim-ease) both;
}
#intro h2 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s var(--anim-ease), transform 0.7s var(--anim-ease);
}
#intro.m-visible h2 { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
#intro p {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
#intro.m-visible p { opacity: 1; transform: translateY(0); }
#intro.m-visible p:nth-child(2) { transition-delay: 0.35s; }
#intro.m-visible p:nth-child(3) { transition-delay: 0.5s; }

/* Quiénes somos text columns */
.col-sm-4 > h3.about-anim {
  opacity: 0;
  transform: translateX(-25px);
  transition: opacity 0.6s var(--anim-ease), transform 0.6s var(--anim-ease);
  position: relative;
  padding-bottom: 12px;
}
.col-sm-4 > h3.about-anim::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--verde), var(--verde-light));
  border-radius: 2px;
  transition: width 0.6s var(--anim-ease) 0.4s;
}
.col-sm-4 > h3.about-anim.m-visible { opacity: 1; transform: translateX(0); }
.col-sm-4 > h3.about-anim.m-visible::after { width: 40px; }

/* Feat list items (#about ul) */
ul.feat#about li {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.5s ease, transform 0.5s var(--anim-ease);
  padding: 14px 0;
}
ul.feat#about.anim-visible li { opacity: 1; transform: translateX(0); }
ul.feat#about.anim-visible li:nth-child(1) { transition-delay: 0.0s; }
ul.feat#about.anim-visible li:nth-child(2) { transition-delay: 0.12s; }
ul.feat#about.anim-visible li:nth-child(3) { transition-delay: 0.24s; }
ul.feat#about.anim-visible li:nth-child(4) { transition-delay: 0.36s; }

ul.feat#about li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  min-width: 36px;
  background: rgba(42,122,58,0.1);
  border-radius: 50%;
  color: var(--verde);
  font-size: 16px;
  transition: background 0.3s ease, transform 0.3s var(--anim-spring);
}
ul.feat#about li:hover i {
  background: var(--verde);
  color: #fff;
  transform: scale(1.15) rotate(-10deg);
}
ul.feat#about li h4 {
  color: #1a2e1a;
  transition: color 0.3s ease;
}
ul.feat#about li:hover h4 { color: var(--verde); }

/* ═══════════════════════════════════════════════════════════
   FORMULARIO DE CONTACTO — contacts.html
   ═══════════════════════════════════════════════════════════ */

@keyframes formSectionIn {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes formLabelFloat {
  from { transform: translateY(0) scale(1); color: #888; }
  to   { transform: translateY(-22px) scale(0.82); color: var(--verde); }
}
@keyframes inputUnderline {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Form wrapper reveal */
.form-contact-wrapper {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s var(--anim-ease), transform 0.7s var(--anim-ease);
}
.form-contact-wrapper.m-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Inputs estilo flotante */
.form-control {
  border: none !important;
  border-bottom: 2px solid #ddd !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 10px 2px !important;
  font-size: 15px;
  color: #333;
}
.form-control:focus {
  border-bottom-color: var(--verde) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Efecto underline al focus */
.form-group {
  position: relative;
}
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--anim-ease);
  pointer-events: none;
}
.form-group:focus-within::after {
  transform: scaleX(1);
}

/* Título del formulario */
h3.form-contact-title {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s var(--anim-ease), transform 0.6s var(--anim-ease);
  position: relative;
  color: var(--verde);
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
}
h3.form-contact-title::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--verde), var(--verde-light));
  border-radius: 2px;
  transition: width 0.6s var(--anim-ease) 0.3s;
}
h3.form-contact-title.m-visible { opacity: 1; transform: translateX(0); }
h3.form-contact-title.m-visible::after { width: 45px; }

/* Botón enviar */
button[type="submit"], input[type="submit"],
.btn_full, a.btn_full {
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--anim-spring) !important;
}
button[type="submit"]:hover, input[type="submit"]:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 28px rgba(26,92,46,0.35) !important;
}

/* Anim fields stagger al cargar sección */
.form-group {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.form-fields-visible .form-group { opacity: 1; transform: translateY(0); }
.form-fields-visible .form-group:nth-child(1) { transition-delay: 0.05s; }
.form-fields-visible .form-group:nth-child(2) { transition-delay: 0.12s; }
.form-fields-visible .form-group:nth-child(3) { transition-delay: 0.19s; }
.form-fields-visible .form-group:nth-child(4) { transition-delay: 0.26s; }
.form-fields-visible .form-group:nth-child(5) { transition-delay: 0.33s; }
.form-fields-visible .form-group:nth-child(6) { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════════════════
   COMODATOS — Mejoras adicionales de animación
   ═══════════════════════════════════════════════════════════ */

@keyframes comodatoCardIn {
  0%   { opacity: 0; transform: translateY(50px) rotateX(8deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); }
}
@keyframes priceReveal {
  0%   { opacity: 0; transform: scale(0.6) translateY(20px); filter: blur(8px); }
  60%  { transform: scale(1.06) translateY(-4px); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes comodatoGlowBorder {
  0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 0 rgba(93,222,133,0); }
  50%       { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 25px 4px rgba(93,222,133,0.15); }
}

#comodatos {
  perspective: 1000px;
}
#comodatos .comodato-card.m-visible {
  animation: comodatoCardIn 0.8s var(--anim-spring) both;
}
#comodatos .comodato-card {
  animation: comodatoGlowBorder 4s ease-in-out 2s infinite;
}
.precio {
  animation-name: priceReveal !important;
  animation-duration: 0.9s !important;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  animation-fill-mode: both !important;
  animation-delay: 0.3s !important;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  .serv-col { margin-bottom: 24px; }
  .serv-card { min-height: auto; }
  .serv-deco-1 { width: 250px; height: 250px; top: -100px; left: -80px; }
}
@media (max-width: 767px) {
  #servicios-premium { padding: 60px 0 40px; }
  .serv-trust-item { margin-bottom: 16px; }
  .serv-card:hover { transform: translateY(-4px); }
  .serv-card-number { font-size: 50px; }
}


/* ═══════════════════════════════════════════════════════════
   LOGO — Estilos y animaciones profesionales
   ═══════════════════════════════════════════════════════════ */

/* Header logo */
#logo a {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.25s ease, transform 0.3s var(--anim-spring);
}
#logo a:hover {
  opacity: 0.85;
  transform: scale(1.03);
}
#logo img {
  display: block;
  width: 160px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Header shrink — logo más pequeño al hacer scroll */
header.sticky #logo img,
header.scrolled #logo img {
  width: 160px;
  transition: width 0.3s ease;
}

/* Mobile menu logo */
#header_menu img {
  display: block;
  width: 155px;
  height: auto;
  margin-bottom: 4px;
}

/* Footer logo */
footer #logo-footer-wrap a {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.25s ease;
}
footer #logo-footer-wrap a:hover { opacity: 0.8; }
footer img[src*="logo-footer"] {
  display: block;
  width: 210px;
  height: auto;
  margin-bottom: 16px;
}

/* Logo entrada al cargar */
#logo img {
  animation: logoEntrance 0.6s var(--anim-spring) 0.1s both;
}
@keyframes logoEntrance {
  from { opacity: 0; transform: translateX(-15px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* OG/favicon meta — sin estilo pero importante tenerlo en cuenta */
/* El logo en footer se ajusta al color blanco vía logo-footer.png */


/* ═══════════════════════════════════════════════════════════
   BRANDS SECTION — Logo strip animado profesional
   ═══════════════════════════════════════════════════════════ */

@keyframes brandsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes brandCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes brandHeaderIn {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes brandShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Section wrapper ── */
.brands-section {
  position: relative;
  background: #0d1a0f;
  padding: 64px 0 52px;
  overflow: hidden;
}
.brands-bg-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--verde-light) 30%,
    var(--verde) 50%,
    var(--verde-light) 70%,
    transparent 100%);
  background-size: 200% 100%;
  animation: brandShimmer 4s linear infinite;
}
.brands-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent, rgba(93,222,133,0.3), transparent);
}

/* Radial glow in center */
.brands-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(42,122,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Header ── */
.brands-header {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--anim-ease), transform 0.7s var(--anim-ease);
}
.brands-header.brands-visible {
  opacity: 1;
  transform: translateY(0);
}
.brands-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--verde-light);
  background: rgba(93,222,133,0.1);
  border: 1px solid rgba(93,222,133,0.2);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.brands-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 0.03em;
}
.brands-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto;
}

/* ── Scrolling track ── */
.brands-track-wrapper {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg,
    transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: brandsScroll 28s linear infinite;
}
.brands-track:hover {
  animation-play-state: paused;
}

/* ── Individual brand card ── */
.brand-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 36px;
  margin: 0 4px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: default;
  transition: background 0.35s ease,
              border-color 0.35s ease,
              transform 0.35s var(--anim-spring),
              box-shadow 0.35s ease;
  min-width: 160px;
  position: relative;
  overflow: hidden;
}
.brand-logo-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--verde), var(--verde-light));
  transform: scaleX(0);
  transition: transform 0.35s var(--anim-ease);
}
.brand-logo-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(93,222,133,0.25);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 0 20px rgba(93,222,133,0.08);
}
.brand-logo-card:hover::before {
  transform: scaleX(1);
}

/* ── Logo image inside card ── */
.brand-logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.brand-img {
  max-height: 48px;
  width: auto;
  max-width: 140px;
  display: block;
  object-fit: contain;
  transition: filter 0.35s ease, transform 0.35s var(--anim-spring), opacity 0.3s ease;
}

/* Dark logos (AJAX white, DSC red, Hikvision, GADNIC) — shown on dark bg */
.brand-dark {
  filter: brightness(1) saturate(1);
  opacity: 0.85;
}
.brand-logo-card:hover .brand-dark {
  filter: brightness(1.2) saturate(1.1);
  opacity: 1;
  transform: scale(1.05);
}

/* Light logos (IMOU orange, Dahua) — shown on dark bg, keep colors */
.brand-light {
  filter: brightness(1) saturate(1);
  opacity: 0.85;
}
.brand-logo-card:hover .brand-light {
  filter: brightness(1.15) saturate(1.2);
  opacity: 1;
  transform: scale(1.05);
}

/* ── Brand name tag ── */
.brand-name-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}
.brand-logo-card:hover .brand-name-tag {
  color: var(--verde-light);
}

/* ── Trust strip mini logos ── */
.trust-brand-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 2px;
}
.trust-brand-img {
  height: 16px;
  width: auto;
  max-width: 50px;
  object-fit: contain;
  display: inline-block;
  opacity: 1;
  filter: brightness(0) invert(1); /* white version for the trust strip */
}
.trust-brand-img.brand-light {
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* ── Service page brand pills ── */
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,122,58,0.08);
  border: 1px solid rgba(42,122,58,0.2);
  border-radius: 8px;
  padding: 6px 12px;
  margin: 4px 4px 4px 0;
  transition: background 0.3s ease, transform 0.3s var(--anim-spring), box-shadow 0.3s ease;
  text-decoration: none;
  vertical-align: middle;
}
.brand-pill:hover {
  background: rgba(42,122,58,0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42,122,58,0.15);
}
.brand-pill img {
  height: 20px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  display: inline-block;
}
.brand-pill-text {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--verde-dark);
}

/* ── About page brand logo strip ── */
.about-brands-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  padding: 20px;
  background: #f8faf8;
  border-radius: 12px;
  border: 1px solid rgba(42,122,58,0.1);
}
.about-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s var(--anim-spring);
}
.about-brand-item.brand-in { opacity: 1; transform: translateY(0); }
.about-brand-item:nth-child(1) { transition-delay: 0.05s; }
.about-brand-item:nth-child(2) { transition-delay: 0.12s; }
.about-brand-item:nth-child(3) { transition-delay: 0.19s; }
.about-brand-item:nth-child(4) { transition-delay: 0.26s; }
.about-brand-item:nth-child(5) { transition-delay: 0.33s; }
.about-brand-item:nth-child(6) { transition-delay: 0.40s; }
.about-brand-item img {
  height: 32px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.35s ease, transform 0.35s var(--anim-spring);
}
.about-brand-item:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}
.about-brand-item span {
  font-size: 10px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .brands-section { padding: 44px 0 36px; }
  .brand-logo-card { padding: 16px 24px; min-width: 130px; }
  .brands-track { animation-duration: 20s; }
  .about-brands-row { gap: 14px; }
}

/* Brand pills on white bg — dark logos need to be visible */
.brand-dark-pill {
  /* dark logos already show fine on white */
}
/* Brand pill images - consistent sizing on light backgrounds */
.brand-pill img {
  height: 18px;
  width: auto;
  max-width: 55px;
  object-fit: contain;
}
/* For dark logos (AJAX white) on white bg — invert to dark */
.brand-pill img[alt="AJAX"],
.brand-pill img.brand-dark-pill[alt="AJAX"] {
  filter: invert(1);
}
/* For Hikvision gray on white */
.brand-pill img[alt="Hikvision"] {
  filter: brightness(0.3);
}
/* GADNIC teal on white stays as-is */
.brand-pill img[alt="GADNIC"] {
  filter: brightness(0.6);
}


/* ═══════════════════════════════════════════════════════════
   FLOATING SOCIAL SIDEBAR — escritorio, lado derecho
   ═══════════════════════════════════════════════════════════ */
#social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ss-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 8px 0 0 8px;
  text-decoration: none;
  overflow: hidden;
  transition: width 0.35s var(--anim-ease), box-shadow 0.3s ease;
  position: relative;
  margin-bottom: 3px;
}
.ss-btn:hover { width: 140px; box-shadow: -4px 0 16px rgba(0,0,0,.2); }
.ss-btn .ss-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  order: 2;
}
.ss-btn .ss-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
  padding: 0 10px 0 14px;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
  order: 1;
}
.ss-btn:hover .ss-label { opacity: 1; }
.ss-fb  { background: #1877f2; }
.ss-ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.ss-wa  { background: #25d366; }
@media (max-width: 767px) { #social-sidebar { display: none; } }

/* ═══════════════════════════════════════════════════════════
   STAT COUNTER — stats_bar animado
   ═══════════════════════════════════════════════════════════ */
@keyframes countUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--anim-ease), transform 0.55s var(--anim-ease);
}
.stat-item.stat-in { opacity: 1; transform: translateY(0); }
.stat-item .stat-num { position: relative; }

/* ═══════════════════════════════════════════════════════════
   SECTION REVEAL — animación genérica "reveal on scroll"
   ═══════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s var(--anim-ease), transform 0.65s var(--anim-ease);
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s var(--anim-ease), transform 0.65s var(--anim-ease);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s var(--anim-ease), transform 0.65s var(--anim-ease);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* Stagger delays for siblings */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIO CARDS — hover lift + stagger
   ═══════════════════════════════════════════════════════════ */
.testimonio {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s var(--anim-ease),
              transform 0.55s var(--anim-ease),
              box-shadow 0.3s ease;
}
.testimonio.t-in { opacity: 1; transform: translateY(0); }
.testimonio:hover {
  box-shadow: 0 8px 30px rgba(42,122,58,.12);
  transform: translateY(-4px) !important;
}

/* ═══════════════════════════════════════════════════════════
   FAQ / ACCORDION — animated open/close indicator
   ═══════════════════════════════════════════════════════════ */
.accordion-toggle .indicator {
  transition: transform 0.3s var(--anim-ease), color 0.2s;
}
.accordion-toggle[aria-expanded="true"] .indicator,
.accordion-toggle:not(.collapsed) .indicator {
  transform: rotate(45deg);
  color: var(--verde);
}
.panel {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--anim-ease), transform 0.5s var(--anim-ease);
}
.panel.panel-in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGE — service strip sections
   ═══════════════════════════════════════════════════════════ */
.row.strip { overflow: hidden; }
.row.strip .col-md-8, .row.strip .col-md-4 {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s var(--anim-ease), transform 0.6s var(--anim-ease);
}
.row.strip.strip-in .col-md-8 { opacity: 1; transform: translateY(0); }
.row.strip.strip-in .col-md-4 { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION — pulse button
   ═══════════════════════════════════════════════════════════ */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,.8), 0 0 0 8px rgba(37,211,102,.1); }
}
.cta-wa-btn {
  animation: ctaPulse 2.5s infinite;
}
.cta-wa-btn:hover {
  animation: none;
  box-shadow: 0 6px 30px rgba(37,211,102,.7) !important;
  transform: translateY(-2px) scale(1.03);
}

/* ═══════════════════════════════════════════════════════════
   TIPS PAGE — tip boxes hover
   ═══════════════════════════════════════════════════════════ */
.box_style_4 {
  transition: transform 0.35s var(--anim-spring), box-shadow 0.35s ease;
}
.box_style_4:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,.1);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM — focus glow
   ═══════════════════════════════════════════════════════════ */
.form-control {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus {
  border-color: var(--verde) !important;
  box-shadow: 0 0 0 3px rgba(42,122,58,.12) !important;
  outline: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE FIXES
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .brands-title { font-size: 20px; }
  .brands-sub { font-size: 13px; }
}


/* ═══════════════════════════════════════════════════════════
   PLAN COMODATO — Sección premium redesign v8
   ═══════════════════════════════════════════════════════════ */

/* Keyframes */
@keyframes comoShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes comoPricePop {
  0%   { opacity:0; transform: scale(.7) translateY(20px); }
  60%  { transform: scale(1.05) translateY(-4px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
@keyframes comoBadgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(93,222,133,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(93,222,133,0); }
}
@keyframes comoGlow {
  0%,100% { box-shadow: 0 0 30px rgba(93,222,133,.1), inset 0 0 30px rgba(93,222,133,.03); }
  50%      { box-shadow: 0 0 50px rgba(93,222,133,.2), inset 0 0 50px rgba(93,222,133,.06); }
}
@keyframes comoKitSlide {
  from { opacity:0; transform: translateX(-20px); }
  to   { opacity:1; transform: translateX(0); }
}

/* Section wrapper */
#comodatos {
  background: linear-gradient(160deg, #071a0c 0%, #0d2e15 45%, #0a2010 100%);
  position: relative;
  overflow: hidden;
  padding: 0 0 0;
}
#comodatos::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,122,58,.15) 0%, transparent 70%);
  pointer-events: none;
}
#comodatos::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(93,222,133,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.como-header {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}
.como-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--verde-light);
  background: rgba(93,222,133,.1);
  border: 1px solid rgba(93,222,133,.25);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.como-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #ffffff 0%, #5dde85 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: comoShimmer 5s linear infinite;
}
.como-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.como-subtitle strong { color: var(--verde-light); -webkit-text-fill-color: var(--verde-light); }

/* Body */
.como-body { position: relative; z-index: 2; padding-bottom: 0; }
.como-row { display: flex; flex-wrap: wrap; gap: 0; align-items: stretch; margin-bottom: 0; }

/* ── Price card ── */
.como-col-price { padding: 0 12px 30px; }
.como-price-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(93,222,133,.25);
  border-radius: 20px;
  padding: 32px 28px 28px;
  text-align: center;
  height: 100%;
  position: relative;
  animation: comoGlow 4s ease-in-out infinite;
  transition: transform .35s var(--anim-spring);
}
.como-price-card:hover { transform: translateY(-6px); }
.como-badge-top {
  display: inline-block;
  background: linear-gradient(90deg, var(--verde), var(--verde-light));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
  animation: comoBadgePulse 2.5s infinite;
}
.como-label-abono {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.como-precio {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin-bottom: 4px;
}
.como-peso {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
  margin-right: 2px;
}
.como-monto {
  font-family: 'Oswald', sans-serif;
  font-size: 68px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  animation: comoPricePop 0.8s var(--anim-spring) both;
}
.como-mes {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,.6);
  align-self: flex-end;
  margin-bottom: 10px;
  margin-left: 4px;
}
.como-divisor {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,222,133,.4), transparent);
  margin: 18px 0;
}
.como-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.como-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.como-includes li i {
  color: var(--verde-light);
  font-size: 16px;
  flex-shrink: 0;
}
.como-includes li strong { color: #fff; }
.como-cta-btn {
  display: block;
  background: linear-gradient(135deg, #25d366, #1aad50);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  text-align: center;
  transition: transform .3s var(--anim-spring), box-shadow .3s ease;
  box-shadow: 0 6px 25px rgba(37,211,102,.35);
}
.como-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(37,211,102,.55);
}
.como-call {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 12px;
  margin-bottom: 0;
}
.como-call a { color: var(--verde-light) !important; font-weight: 700; }

/* ── Kit card ── */
.como-col-kit { padding: 0 12px 30px; }
.como-kit-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  transition: border-color .3s ease;
}
.como-kit-card:hover { border-color: rgba(93,222,133,.25); }
.como-kit-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.como-kit-logo {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.como-kit-header h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--verde-light);
  margin: 0 0 3px;
  text-transform: uppercase;
}
.como-kit-header p {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.como-kit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.como-kit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .45s var(--anim-ease), transform .45s var(--anim-ease),
              background .25s ease;
  border-radius: 8px;
}
.como-kit-item:last-child { border-bottom: none; }
.como-kit-item.kit-in { opacity: 1; transform: translateX(0); }
.como-kit-item:hover { background: rgba(255,255,255,.04); padding-left: 8px; padding-right: 8px; }
.como-kit-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(93,222,133,.1);
  border: 1px solid rgba(93,222,133,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.como-kit-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--verde-light);
}
.como-kit-text {
  flex: 1;
  min-width: 0;
}
.como-kit-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.como-kit-text span {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  line-height: 1.3;
  display: block;
  margin-top: 2px;
}
.como-kit-qty {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--verde-light);
  background: rgba(93,222,133,.1);
  border: 1px solid rgba(93,222,133,.2);
  border-radius: 6px;
  padding: 3px 8px;
  min-width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.como-kit-footer {
  background: rgba(93,222,133,.08);
  border: 1px solid rgba(93,222,133,.15);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--verde-light);
  text-align: center;
}

/* ── Why card ── */
.como-col-why { padding: 0 12px 30px; }
.como-why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}
.como-why-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--verde-light);
  text-transform: uppercase;
  margin: 0 0 4px;
}
.como-why-sub {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.como-why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.como-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s ease;
  border-radius: 8px;
}
.como-why-list li:last-child { border-bottom: none; }
.como-why-list li:hover { background: rgba(255,255,255,.04); padding-left: 8px; }
.como-why-icon {
  font-size: 20px;
  min-width: 28px;
  text-align: center;
  margin-top: 1px;
}
.como-why-list strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.como-why-list small {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
  display: block;
}
.como-visita-btn {
  display: block;
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff !important;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none !important;
  text-align: center;
  transition: border-color .3s ease, background .3s ease, transform .3s var(--anim-spring);
}
.como-visita-btn:hover {
  border-color: var(--verde-light);
  background: rgba(93,222,133,.08);
  transform: translateY(-2px);
}

/* ── Guarantee strip ── */
.como-guarantee-strip {
  background: rgba(0,0,0,.35);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.como-g-item {
  font-size: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  display: block;
  padding: 4px 0;
}

/* Responsive */
@media (max-width: 991px) {
  .como-monto { font-size: 54px; }
  .como-col-price, .como-col-kit, .como-col-why { padding-bottom: 16px; }
}
@media (max-width: 767px) {
  .como-header { padding: 40px 0 24px; }
  .como-title { font-size: 28px; }
  .como-monto { font-size: 58px; }
  .como-guarantee-strip .col-xs-6 { margin-bottom: 4px; }
}
