.elementor-2 .elementor-element.elementor-element-a2240a2{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-2 .elementor-element.elementor-element-a8bfbef{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2 .elementor-element.elementor-element-40031f1 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:9px;font-weight:600;color:#FFFFFF00;}body.elementor-page-2:not(.elementor-motion-effects-element-type-background), body.elementor-page-2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:radial-gradient(at center center, #199B97 0%, #1F4767 100%);}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a9506d0 */html, body {
  height: 100%;
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background-color: #f5f5f5;
  color: #1F4767;
}

.container-venta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  text-align: center;
}

.card-venta {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px 25px;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1s ease-in-out;
}

.card-venta h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.card-venta h1 span {
  color: #ffffff;
  background: linear-gradient(90deg, #199B97, #1F4767);
  padding: 5px 12px;
  border-radius: 8px;
  display: inline-block;
}

.card-venta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.info p {
  margin: 6px 0;
}

.info a {
  color: #1F4767;
  text-decoration: none;
  font-weight: bold;
}

.info a:hover {
  color: #FF0000;
}

.btn-modern-venta {
  display: inline-block;
  padding: 14px 26px;
  background: linear-gradient(135deg, #1F4767, #199B97);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(25, 155, 151, 0.4);
  animation: pulse 2s infinite;
}

.btn-modern-venta:hover {
  background: #ffffff;
  color: #1F4767;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.btn-modern-venta i {
  margin-right: 8px;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(25, 155, 151, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(25, 155, 151, 0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .card-venta {
    padding: 30px 20px;
  }

  .card-venta h1 {
    font-size: 1.5rem;
  }

  .btn-modern-venta {
    font-size: 15px;
    padding: 12px 20px;
  }
}/* End custom CSS */