.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background: #dadada;
  padding: 10px 0;
}

.ticker {
  display: inline-flex;
  gap: 30px;
  white-space: nowrap;
  animation: scrollTicker 25s linear infinite;
}

.ticker span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #2c3e50;
}

.ticker span:nth-child(2n) {
  color: #ff5a2c; /* puntitos */
}

#hero-cotizacion {
    margin-left: 10px !important;
}

/* Animación */
@keyframes scrollTicker {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-wrapper:hover .ticker {
  animation-play-state: paused;
}

.card-modelo {
  border-radius: 0px;
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Imagen */
.card-bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: top;
  transition: transform 0.6s ease;
}

/* Overlay oscuro */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
}

/* Contenido */
.card-content {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 24px;
  transition: transform 0.4s ease;
}

/* Título */
.card-content h3 {
    color: #e82147;
  margin-bottom: 10px;
  font-size: 22px;
}

/* Texto */
.card-content p {
  font-size: 14px;
  color: #555;
}

/* Lista */
.card-content ul {
  margin: 15px 0;
  padding-left: 18px;
}

.card-content li {
  margin-bottom: 6px;
  font-size: 13px;
}

/* CTA */
.card-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  text-decoration: none;
  color: #1f2d3d;
}

/* Hover */
.card-modelo:hover .card-bg {
  transform: scale(1.05);
}

.card-modelo:hover .card-content {
  transform: translateY(-10px);
}

.card-cta {
  transition: all 0.3s ease;
}

.card-cta:hover {
  letter-spacing: 1px;
}

.destacada {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Estado normal */
.card-content ul li {
  position: relative;
  color: #555;
  transition: color 0.3s ease;
}

.card-content ul li:hover {
  color: #e82147 !important; 
  transition: color 0.3s ease;
}

/* GRID */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

/* Cada bloque */
.pilar {
  padding: 40px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  background: #fff;
}
.pilard {
  border-right: 0px !important;
}
.pilarb{
  border-bottom: 0px !important;
}

/* Header */
.pilar-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #7a869a;
  font-size: 12px;
}

/* Título */
.pilar h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1f2d3d;
}

/* Texto */
.pilar p {
  font-size: 14px;
  color: #5a6b7b;
}

/* Línea */
.pilar-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 20px 0;
  transition: all 0.3s ease;
}

/* Lista */
.pilar ul {
  list-style: none;
  padding: 0;
}

.pilar li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #6b7c8f;
}

/* Bullet */
.pilar li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
  transition: all 0.3s ease;
}

/* Hover general */
.pilar:hover {
  background: #fafafa;
}

/* Línea activa */
.pilar:hover .pilar-divider {
  background: #e82147;
  width: 60px;
}

/* Bullet activo */
.pilar:hover li::before {
  color: #e82147;
}

/* Título ligeramente más fuerte */
.pilar:hover h3 {
  color: #000;
}

.vc_row.pilares,
.vc_row.pilares * {
  overflow: visible !important;
}
.vc_row.pilares.vc_row-flex {
  align-items: flex-start !important;
}
.pilares .sticky-element .wpb_wrapper {
  position: sticky;
  top: 120px;
}

/* calculadora exprés */
.calc-wrapper {
  display: flex;
  gap: 60px;
  background: #0f2747;
  padding: 60px;
  color: #fff;
  border-radius: 8px;
}

.calc-controls {
  flex: 1;
}

.calc-results {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 40px;
}

label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #b0c4de;
}

.range-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 15px 0 40px;
}

input[type="range"] {
  flex: 1;
}

.range-group span {
  width: 80px;
  text-align: right;
}

/* estado destacado */
.utilidad.destacado {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  padding: 20px;
  border-radius: 6px;
}

/* mensaje fuerte */
.utilidad.destacado .rentabilidad-msg {
  color: #22c55e;
  font-weight: 600;
}

/* botón */
.cta-wrapper a {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #e82147;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.cta-wrapper a:hover {
  transform: translateY(-2px);
}

.cta-wrapper {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

h2 {
  font-size: 48px;
  margin: 10px 0;
}

h4 {
  font-size: 20px;
}

.utilidad h3 {
  color: #e82147;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 30px 0;
}

.grid {
  display: flex;
  justify-content: space-between;
}

.desc-calc{
    margin-bottom: 80px !important;
}

/* Colores dinámicos */
.utilidad.profit {
  color: #22c55e; /* verde */
}

.utilidad.loss {
  color: #e82147; /* rojo */
}

/* Mensaje */
.rentabilidad-msg {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.9;
}

/* Animación número */
.counting {
  transition: all 0.3s ease;
}

.map-pin-puri button,
.map-pin-puri a{
    background: none !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

/* contenedor */
.social-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* caja uniforme */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  transition: all 0.3s ease;
}

/* SVG base */
.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* 🔥 NORMALIZACIÓN VISUAL REAL */
.icon-facebook svg { transform: scale(0.85); }
.icon-instagram svg { transform: scale(1.2); }
.icon-youtube svg { transform: scale(1.2); }

/* estos suelen verse más grandes */
.icon-whatsapp svg { transform: scale(1.2); }
.icon-tiktok svg { transform: scale(0.75); }

/* hover */
.social-icon:hover {
  color: #e82147;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
    .calc-wrapperm {
        flex-direction: column !important;
        padding: 5px !important;
    }

}

body {
  background: blue !important;
}

@media (max-width: 768px) {
  body {
    background: red !important;
  }
}