.elementor-23 .elementor-element.elementor-element-cc80c39 > .elementor-element-populated{margin:-260px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}.elementor-23 .elementor-element.elementor-element-dadd2a9 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){--kit-widget-spacing:0px;}.elementor-23 .elementor-element.elementor-element-1d521bc{margin-top:0px;margin-bottom:0px;}.elementor-23 .elementor-element.elementor-element-74566a4:not(.elementor-motion-effects-element-type-background), .elementor-23 .elementor-element.elementor-element-74566a4 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://www.s2clinic.com/wp-content/uploads/2025/10/porqueelegirnos-fondo.png");background-position:center center;background-repeat:no-repeat;background-size:cover;}.elementor-23 .elementor-element.elementor-element-74566a4{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:-60px;margin-bottom:0px;}.elementor-23 .elementor-element.elementor-element-74566a4 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-23 .elementor-element.elementor-element-8a9c2d2 > .elementor-background-overlay{background-image:url("https://www.s2clinic.com/wp-content/uploads/2025/10/fondo-contacto.jpg");background-position:center center;background-repeat:no-repeat;background-size:cover;opacity:0.5;}.elementor-23 .elementor-element.elementor-element-aa99594 > .elementor-element-populated{padding:0% 5% 0% 5%;}.elementor-23 .elementor-element.elementor-element-63f0fce{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-23 .elementor-element.elementor-element-f65d04b{width:40%;}.elementor-23 .elementor-element.elementor-element-aa99594{width:60%;}}/* Start custom CSS for html, class: .elementor-element-d269084 *//* ========================================
   BENEFITS BAR - Barra horizontal de beneficios
   ======================================== */

.benefits-bar-section {
  padding: 50px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Gradientes laterales para efecto fade */
.benefits-bar-section::before,
.benefits-bar-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.benefits-bar-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.benefits-bar-section::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--white) 100%);
}

.benefits-bar-wrap {
  position: relative;
}

/* Ticker container */
.benefits-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track con animación infinita */
.benefits-track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

/* Pausa al hacer hover */
.benefits-ticker:hover .benefits-track {
  animation-play-state: paused;
}

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

/* Item individual */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--accent-2);
  min-width: 350px;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.benefit-item:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 25px rgba(49, 91, 101, 0.12);
  transform: translateY(-4px);
}

/* Icono circular */
.benefit-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(49, 91, 101, 0.2);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(49, 91, 101, 0.3);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

/* Contenido */
.benefit-content {
  flex: 1;
  text-align: left;
}

.benefit-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 4px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.benefit-item:hover .benefit-content h4 {
  color: var(--brand-2);
}

.benefit-content p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-bar-section {
    padding: 40px 0;
  }
  
  .benefits-track {
    gap: 20px;
  }
  
  .benefit-item {
    min-width: 300px;
    padding: 18px 20px;
  }
  
  .benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  
  .benefit-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .benefit-content h4 {
    font-size: 15px;
  }
  
  .benefit-content p {
    font-size: 12px;
  }
  
  /* Gradientes más pequeños en móvil */
  .benefits-bar-section::before,
  .benefits-bar-section::after {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .benefit-item {
    min-width: 260px;
    padding: 16px 18px;
    gap: 12px;
  }
  
  .benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  
  .benefit-content h4 {
    font-size: 14px;
  }
  
  .benefit-content p {
    font-size: 11px;
  }
}

/* Variante con fondo de color */
.benefits-bar-section.variant-colored {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
}

.benefits-bar-section.variant-colored::before {
  background: linear-gradient(90deg, var(--brand) 0%, transparent 100%);
}

.benefits-bar-section.variant-colored::after {
  background: linear-gradient(90deg, transparent 0%, var(--brand) 100%);
}

.benefits-bar-section.variant-colored .benefit-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* Variante con más velocidad */
.benefits-ticker.speed-fast .benefits-track {
  animation-duration: 20s;
}

.benefits-ticker.speed-slow .benefits-track {
  animation-duration: 40s;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b0ab21d *//* ========================================
   SERVICES SECTION - Servicios mejorados
   ======================================== */

.services-section {
  padding: 80px 20px;

  position: relative;
}

.services-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.services-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 20px;
  line-height: 1.2;
}

.services-intro {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid de servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Tarjeta de servicio */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(49, 91, 101, 0.15);
  border-color: var(--brand);
}

/* Badge superior */
.service-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--brand);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(49, 91, 101, 0.3);
}

.service-badge.urgent {
  background: #e74c3c;
}

/* Imagen del servicio */
.service-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

/* Overlay con tag */
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.service-card:hover .service-overlay {
  transform: translateY(0);
}

.service-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Contenido */
.service-content {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 14px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--brand-2);
}

.service-description {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.6;
  margin: 0 0 auto;
  flex: 1;
}

/* Footer con botones */
.service-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

.service-btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(49, 91, 101, 0.2);
}

.service-btn-primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(49, 91, 101, 0.3);
  text-decoration: none;
  color: var(--white);
}

.service-btn-primary svg {
  transition: transform 0.3s ease;
}

.service-btn-primary:hover svg {
  transform: translateX(4px);
}

.service-btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.service-btn-ghost:hover {
  background: var(--brand);
  color: var(--white);
  text-decoration: none;
}

/* Tarjetas destacadas */
.service-card-featured {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-2) 100%);
}

.service-card-urgent {
  border-color: #e74c3c;
}

/* Animación de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }
  
  .services-header {
    margin-bottom: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-image {
    height: 200px;
  }
  
  .service-content {
    padding: 24px 20px 20px;
  }
  
  .service-footer {
    flex-direction: column;
  }
  
  .service-btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .service-image {
    height: 180px;
  }
  
  .service-title {
    font-size: 19px;
  }
  
  .service-description {
    font-size: 14px;
  }
  
  .service-btn {
    padding: 11px 18px;
    font-size: 13px;
  }
  
  .service-badge {
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    font-size: 11px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ac2cc74 *//* ========================================
   CTA BONOS SECTION - Call to Action mejorado
   ======================================== */

.cta-bonos-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

/* Patrón de fondo animado */
.cta-bonos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-bonos-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Decoración de círculos animados */
.cta-bonos-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  animation: float 15s ease-in-out infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  animation: float 18s ease-in-out infinite reverse;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 5%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

/* Contenido principal */
.cta-bonos-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Icono destacado */
.cta-bonos-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--white);
  animation: pulse 3s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}

/* Texto */
.cta-bonos-text {
  margin-bottom: 40px;
}

.cta-bonos-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-bonos-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-bonos-description {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-bonos-subdescription {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--accent-1);
  line-height: 1.6;
  margin: 0;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Features destacadas */
.cta-bonos-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-feature-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-feature-item svg {
  flex-shrink: 0;
}

/* Botones de acción */
.cta-bonos-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-bonos-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.cta-bonos-btn-primary {
  background: var(--white);
  color: var(--brand);
}

.cta-bonos-btn-primary:hover {
  background: var(--accent-2);
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.cta-bonos-btn-primary svg {
  transition: transform 0.3s ease;
}

.cta-bonos-btn-primary:hover svg {
  transform: translateX(5px);
}

.cta-bonos-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-bonos-btn-secondary:hover {
  background: var(--white);
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-bonos-section {
    padding: 60px 20px;
    margin: 40px 0;
  }
  
  .cta-bonos-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  
  .cta-bonos-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .cta-bonos-text {
    margin-bottom: 30px;
  }
  
  .cta-bonos-features {
    gap: 15px;
  }
  
  .cta-feature-item {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .cta-bonos-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-bonos-btn {
    width: 100%;
    justify-content: center;
  }
  
  .circle-1,
  .circle-2,
  .circle-3 {
    display: none; /* Ocultar en móvil para mejor rendimiento */
  }
}

@media (max-width: 480px) {
  .cta-bonos-icon {
    width: 70px;
    height: 70px;
  }
  
  .cta-bonos-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .cta-bonos-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .cta-feature-item {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e3b5a5d *//* ========================================
   WHY CHOOSE SECTION - 100vh fixed
   ======================================== */

.why-choose-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: url('https://www.s2clinic.com/wp-content/uploads/2025/10/porqueelegirnos-fondo.png') center center/cover no-repeat;
  background-attachment: fixed;
}

/* Overlay */
.why-choose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(49, 91, 101, 0.30) 0%, rgba(92, 134, 142, 0.22) 100%);
  z-index: 1;
}

/* Contenedor principal */
.why-choose-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

/* Header */
.why-header {
  text-align: center;
  padding: 60px 20px 30px;
  flex-shrink: 0;
}

.why-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.why-intro {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Wrapper de slides */
.slides-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Cada slide */
.why-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.why-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.why-slide.exiting {
  opacity: 0;
  transform: translateY(-50px) scale(0.95);
}

/* Número decorativo gigante */
.slide-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(180px, 25vw, 350px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  font-family: 'Arial Black', sans-serif;
  z-index: 0;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.why-slide.active .slide-number {
  animation: numberReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes numberReveal {
  0% {
    transform: translate(-50%, -50%) scale(0.6) rotate(-5deg);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.1;
  }
}

/* Caja de contenido */
.slide-box {
  position: relative;
  z-index: 1;
  max-width: 850px;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 60px) clamp(30px, 4vw, 50px);
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.why-slide.active .slide-box {
  animation: boxSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes boxSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 20px;
  line-height: 1.3;
}

.slide-text {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.7;
  margin: 0 0 24px;
}

.slide-badge {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(49, 91, 101, 0.3);
}

/* Indicadores (dots) */
.slide-dots {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
}

.dot.active {
  background: var(--white);
  height: 36px;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
}

/* Hint de scroll */
.scroll-down-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  animation: bounceDown 2s ease-in-out infinite;
  z-index: 10;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Responsive */
@media (max-width: 768px) {
  .why-choose-section {
    min-height: 500px;
  }
  
  .why-header {
    padding: 40px 20px 20px;
  }
  
  .slides-wrapper {
    padding: 15px;
  }
  
  .slide-box {
    padding: 35px 25px;
  }
  
  .slide-number {
    font-size: clamp(120px, 30vw, 200px);
  }
  
  .slide-dots {
    right: 15px;
    gap: 10px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .slide-box {
    padding: 30px 20px;
  }
  
  .slide-number {
    font-size: 100px;
    opacity: 0.04;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ea46f9b *//* ========================================
   ABOUT SECTION - Sobre Nosotros mejorado
   ======================================== */

.about-section {
  padding: 100px 20px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decoración de fondo sutil */
.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.about-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Grid de dos columnas */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Columna de imagen */
.about-image-col {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.05);
}

/* Decoración sobre la imagen */
.about-image-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.2;
}

/* Stats decorativas */
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  background: var(--accent-2);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border-left: 4px solid var(--brand);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(49, 91, 101, 0.15);
}

.stat-number {
  display: block;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

/* Columna de contenido */
.about-content-col {
  position: relative;
}

.about-content {
  position: relative;
}

/* Label superior */
.about-label {
  display: inline-block;
  background: var(--accent-2);
  color: var(--brand);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Título */
.about-title {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  line-height: 1.4;
}

/* Subtítulo */
.about-subtitle {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 24px;
  line-height: 1.2;
}

/* Descripción */
.about-description {
  margin-bottom: 32px;
}

.about-description p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--brand-2);
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-description p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  background: var(--accent-2);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--brand);
  font-weight: 500;
  color: var(--brand) !important;
}

/* Features con iconos */
.about-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 32px 0 !important;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500;
  list-style: none !important;
}

.about-features li svg {
  flex-shrink: 0;
  color: var(--brand);
}

/* Botón */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(49, 91, 101, 0.25);
}

.about-btn:hover {
  background: var(--brand-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(49, 91, 101, 0.35);
  text-decoration: none;
  color: var(--white);
}

.about-btn svg {
  transition: transform 0.3s ease;
}

.about-btn:hover svg {
  animation: phoneRing 0.6s ease-in-out;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70% { transform: rotate(-10deg); }
  20%, 40%, 60% { transform: rotate(10deg); }
  80% { transform: rotate(-5deg); }
  90% { transform: rotate(5deg); }
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image-col {
    order: 2;
  }
  
  .about-content-col {
    order: 1;
  }
  
  .about-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
  
  .about-grid {
    gap: 30px;
  }
  
  .about-stats {
    flex-direction: column;
  }
  
  .stat-item {
    padding: 16px;
  }
  
  .about-description p {
    font-size: 15px;
  }
  
  .about-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-image-decoration {
    width: 150px;
    height: 150px;
    bottom: -15px;
    right: -15px;
  }
  
  .about-label {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .about-features li {
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-3e1ecba *//* ========================================
   CONTACT SECTION - Versión final ajustada
   ======================================== */

.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  position: relative;
  overflow: hidden;
}

/* Patrón de fondo */
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.contact-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-title {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.contact-intro {
  font-size: clamp(14px, 1.8vw, 16px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Contenedor principal */
.contact-main {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Caja del formulario */
.contact-form-box {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 40px; /* ✅ Padding aumentado */
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ✅ Form row - inputs al 50% con gap */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* ✅ Gap entre columnas */
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%; /* ✅ Ancho completo dentro del 50% */
}

/* ✅ Textarea al 100% */
.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; /* ✅ 100% del contenedor */
  padding: 12px 14px;
  border: 2px solid var(--accent-2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.3s ease;
  font-family: inherit;
  background: var(--white);
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(49, 91, 101, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* ✅ Checkbox alineado horizontalmente */
.form-checkbox {
  display: flex;
  align-items: center; /* ✅ Centrado vertical */
  gap: 10px;
  margin-top: 4px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--brand);
  flex-shrink: 0;
  margin: 0; /* ✅ Sin márgenes */
}

.form-checkbox label {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.4;
  margin: 0; /* ✅ Sin márgenes */
}

.form-checkbox a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

/* ✅ Botón más grande y centrado */
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--brand);
  color: var(--white);
  padding: 18px 50px; /* ✅ Más grande */
  border: none;
  border-radius: 50px;
  font-size: 16px; /* ✅ Texto más grande */
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(49, 91, 101, 0.3);
  font-family: inherit;
  margin: 16px auto 0; /* ✅ Centrado con margen auto */
  width: auto; /* ✅ Ancho automático */
}

.form-submit:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(49, 91, 101, 0.4);
}

.form-submit svg {
  transition: transform 0.3s ease;
}

.form-submit:hover svg {
  transform: rotate(45deg);
}

/* Info cards */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 850px;
  margin: 0 auto;
}

.info-card-inline {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.info-card-inline:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.info-icon-small {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(49, 91, 101, 0.3);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-content p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
  line-height: 1.3;
}

.info-content a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--brand-2);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }
  
  .contact-header {
    margin-bottom: 30px;
  }
  
  .contact-form-box {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .form-submit {
    width: 100%; /* ✅ Ancho completo en móvil */
    padding: 16px 40px;
  }
  
  .info-card-inline {
    flex-direction: row;
    text-align: left;
  }
  
  .info-content {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .contact-form-box {
    padding: 28px 20px;
  }
  
  .contact-form {
    gap: 14px;
  }
  
  .form-field label {
    font-size: 12px;
  }
  
  .info-icon-small {
    width: 44px;
    height: 44px;
  }
  
  .info-icon-small svg {
    width: 20px;
    height: 20px;
  }
}
/* ========================================
   QUITAR BR de Contact Form 7
   ======================================== */

/* Ocultar todos los BR dentro del formulario */
.contact-form br,
.contact-form-box br,
.wpcf7 br,
.wpcf7-form br {
  display: none !important;
}

/* Resetear espaciado de Contact Form 7 */
.wpcf7-form p {
  margin: 0 !important;
}

/* Quitar margen de los inputs de CF7 */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Forzar que los inputs ocupen todo el ancho */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100% !important;
  box-sizing: border-box;
  margin: 0 !important;
}

/* Fix para los labels de CF7 */
.wpcf7-form label {
  display: block;
  margin-bottom: 6px;
}
.info-icon-small p {
    margin: 0 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0873a4a *//* ========================================
   FAQ SECTION - Preguntas frecuentes mejoradas
   ======================================== */

.faq-section {
  padding: 80px 20px;
  position: relative;
}

/* Decoración sutil */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, var(--accent-2) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, var(--accent-2) 0%, transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.faq-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 16px;
  line-height: 1.2;
}

.faq-intro {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.6;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item del FAQ */
.faq-item {
  background: var(--white);
  border: 2px solid var(--accent-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  border-color: var(--accent-1);
  box-shadow: 0 4px 20px rgba(49, 91, 101, 0.08);
}

.faq-item.active {
  border-color: var(--brand);
  box-shadow: 0 6px 30px rgba(49, 91, 101, 0.12);
}

/* Botón pregunta */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--accent-2);
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: var(--white);
}

/* Número */
.faq-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent-1);
  color: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-number {
  background: var(--white);
  color: var(--brand);
  transform: scale(1.1);
}

/* Texto de pregunta */
.faq-question-text {
  flex: 1;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
  color: var(--white);
}

/* Icono de flecha */
.faq-icon {
  flex-shrink: 0;
  color: var(--brand);
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  color: var(--white);
  transform: rotate(180deg);
}

/* Respuesta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 24px 76px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.7;
  font-size: 15px;
}

.faq-answer-content p {
  margin: 0;
}

/* CTA final */
.faq-cta {
  margin-top: 50px;
  text-align: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--white) 100%);
  border-radius: var(--radius);
  border: 2px solid var(--accent-1);
}

.faq-cta-text {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 20px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(49, 91, 101, 0.2);
}

.faq-cta-btn:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(49, 91, 101, 0.3);
  text-decoration: none;
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }
  
  .faq-header {
    margin-bottom: 40px;
  }
  
  .faq-question {
    padding: 18px 20px;
    gap: 12px;
  }
  
  .faq-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .faq-answer-content {
    padding: 0 20px 20px 64px;
    font-size: 14px;
  }
  
  .faq-cta {
    padding: 28px 20px;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    flex-wrap: wrap;
  }
  
  .faq-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  
  .faq-question-text {
    flex-basis: calc(100% - 72px);
  }
  
  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d870f14 *//* ========================================
   CTA FINAL SECTION - Llamada a la acción final
   ======================================== */

.cta-final-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  position: relative;
  overflow: hidden;
}

/* Decoración de fondo */
.cta-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.decoration-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -80px;
  animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 10%;
  animation: float 22s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.cta-final-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Contenido */
.cta-final-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
}

/* Badge superior */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

/* Título */
.cta-final-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Texto */
.cta-final-text {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features */
.cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-feature-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.cta-feature-item svg {
  flex-shrink: 0;
}

/* Botones */
.cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.cta-final-btn-primary {
  background: var(--white);
  color: var(--brand);
}

.cta-final-btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: var(--brand);
}

.cta-final-btn-primary svg {
  transition: transform 0.3s ease;
}

.cta-final-btn-primary:hover svg {
  transform: translateX(5px);
}

.cta-final-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-final-btn-secondary:hover {
  background: var(--white);
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* Garantía de confianza */
.cta-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.cta-trust svg {
  color: var(--accent-1);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-final-section {
    padding: 60px 20px;
  }
  
  .cta-final-content {
    padding: 40px 30px;
  }
  
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-feature-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-final-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-final-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-final-content {
    padding: 32px 24px;
  }
  
  .cta-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .cta-feature-item {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .cta-final-btn {
    padding: 16px 32px;
    font-size: 15px;
  }
  
  .shape-1,
  .shape-2,
  .shape-3 {
    display: none; /* Ocultar en móvil */
  }
}/* End custom CSS */