.block-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ========== FORZAR ANCHO COMPLETO ========== */
.vender-page {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow-x: hidden;
}

.vender-page section {
  margin: 0 !important;
  box-sizing: border-box;
}

/* ========== SECCIÓN HERO ========== */
.vender-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
      rgba(240, 248, 255, 0.92),
      rgba(230, 242, 255, 0.95)
    ),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=85");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #1a1a1a;
  text-align: center;
  padding: 100px 20px !important;
}

.vender-hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.vender-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #1a1a1a !important;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.vender-hero h2.destacado {
  font-size: 26px;
  font-weight: 600;
  color: #f16901;
  margin: 0 0 40px 0;
  line-height: 1.4;
}

.hero-stats {
  border-radius: 0;
  padding: 30px;
  margin: 40px auto;
  max-width: 600px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.hero-stat-icon {
  font-size: 48px;
  color: #f16901;
}

.hero-stat-icon i {
  font-size: 48px;
}

.hero-stat-text {
  text-align: left;
}

.hero-stat-text strong {
  display: block;
  font-size: 30px;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-weight: 700;
}

@media (max-width: 548px) {
  .hero-stat-text strong {
    font-size: 23px;
  }
}

.hero-stat-text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.multiplica-section {
  /* background: linear-gradient(135deg, #f16901 0%, #d45801 100%); */
  color: white;
  /* padding: 40px; */
  border-radius: 0;
  margin: 40px auto;
  /* max-width: 700px; */
  /* box-shadow: 0 4px 20px rgba(241, 105, 1, 0.25); */
}

.fire-icon-hero {
  font-size: 48px;
  display: block;
  margin-bottom: 15px;
  color: #f16901;
}

.fire-icon-hero i {
  font-size: 48px;
}

.multiplica-section h3 {
  /* font-size: 24px; */
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #000000;
  letter-spacing: 0.5px;
}

.multiplica-section p {
  /* font-size: 18px; */
  margin: 0;
  line-height: 1.6;
  color: #f16901;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 40px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.badge-item {
  background: white;
  padding: 25px 20px;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.badge-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-color: #f16901;
}

.badge-icon {
  font-size: 32px;
  flex-shrink: 0;
  color: #f16901;
}

.badge-icon i {
  font-size: 32px;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  line-height: 1.3;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn-valorar {
  display: inline-block;
  padding: 18px 45px;
  background: #f16901;
  color: white !important;
  text-decoration: none;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #f16901;
  box-shadow: 0 2px 10px rgba(241, 105, 1, 0.2);
}

.btn-valorar i {
  margin-right: 8px;
}

.btn-valorar:hover {
  background: #d45801;
  border-color: #d45801;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(241, 105, 1, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 18px 45px;
  background: white;
  color: #f16901 !important;
  text-decoration: none;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #f16901;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary i {
  margin-right: 8px;
}

.btn-secondary:hover {
  background: #f16901;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(241, 105, 1, 0.3);
}

/* ========== SECCIÓN TODO LO QUE HACEMOS ========== */
.hacemos-section {
  padding: 100px 20px;
  background: white;
}

.hacemos-header {
  text-align: center;
  margin-bottom: 60px;
}

.hacemos-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
}

.subtitle-marca {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: #f16901;
  margin-top: 10px;
}

.hacemos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.hacemos-card {
  background: #f8f9fa;
  border-radius: 0;
  padding: 40px 30px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid #e0e0e0;
  border-left: 4px solid #f16901;
}

.hacemos-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hacemos-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  color: #f16901;
}

.card-icon i {
  font-size: 48px;
}

.hacemos-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hacemos-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 15px;
}

.card-highlight {
  color: #f16901 !important;
  font-weight: 700;
  font-size: 16px !important;
  margin-top: 15px;
}

.cta-section-inline {
  text-align: center;
  margin-top: 60px;
}

/* ========== SECCIÓN CONFIANZA ========== */
.confianza-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.confianza-header {
  text-align: center;
  margin-bottom: 60px;
}

.confianza-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.stat-card {
  background: linear-gradient(135deg, #f16901 0%, #d45801 100%);
  border-radius: 0;
  padding: 40px 20px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.95);
  box-shadow: 0 2px 15px rgba(241, 105, 1, 0.2);
}

.stat-card.animate-in {
  opacity: 1;
  transform: scale(1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(241, 105, 1, 0.3);
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.stat-icon i {
  font-size: 40px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.expertise-text {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
  background: white;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.expertise-text p {
  color: #1a1a1a;
  margin: 15px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.expertise-text i {
  color: #f16901;
  margin-right: 10px;
}

/* ========== SECCIÓN VIDEO ========== */
.video-section {
  padding: 100px 20px;
  background: #1a1a1a;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.video-container h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.video-placeholder {
  background: #2d2d2d;
  border: 2px solid #f16901;
  border-radius: 0;
  padding: 80px 40px;
  text-align: center;
}

.video-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 20px;
  color: #f16901;
}

.video-icon i {
  font-size: 64px;
}

.video-placeholder p {
  color: #f16901;
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}

.video-tagline {
  color: white !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-top: 30px !important;
}

/* ========== SECCIÓN PROCESO ========== */
.proceso-section {
  padding: 100px 20px;
  background: white;
}

.proceso-header {
  text-align: center;
  margin-bottom: 60px;
}

.proceso-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.proceso-steps {
  max-width: 900px;
  margin: 0 auto;
}

.proceso-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 0;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s ease;
  border-left: 4px solid #f16901;
  border: 1px solid #e0e0e0;
  border-left-width: 4px;
  border-left-color: #f16901;
}

.proceso-step.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.proceso-step:hover {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #f16901;
  min-width: 70px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
}

.step-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ========== SECCIÓN FAQ ========== */
.faq-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: white;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: #f16901;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: white;
}

.faq-toggle {
  font-size: 32px;
  font-weight: 300;
  color: #f16901;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px;
}

.faq-answer p {
  margin: 15px 0 0;
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

/* ========== FORMULARIO ========== */
.formulario-vender-section {
  background: white;
  padding: 100px 20px !important;
}

.formulario-vender-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 60px 50px;
  border-radius: 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.formulario-vender-wrapper h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.formulario-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.formulario-footer {
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 30px;
  font-weight: 600;
}

.wpforms-container {
  width: 100%;
}

.wpforms-field-container,
.wpforms-field-container1 {
  margin-bottom: 0;
}

.wpforms-field {
  margin-bottom: 25px;
}

.wpforms-field-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.texto_blanco {
  color: #1a1a1a !important;
}

.wpforms-required-label {
  color: #f16901;
  margin-left: 3px;
}

.wpforms-field-medium,
.wpforms-field-large,
select.wpforms-field-medium,
textarea.wpforms-field-medium,
input[type="text"].wpforms-field-medium,
input[type="email"].wpforms-field-medium,
input[type="tel"].wpforms-field-medium,
input[type="number"].wpforms-field-medium {
  width: 100%;
  height: 48px;
  padding: 12px 15px;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background: white;
  color: #1a1a1a;
  line-height: 1.5;
}

select.wpforms-field-medium {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

textarea.wpforms-field-medium {
  min-height: 120px;
  height: auto;
  resize: vertical;
  padding-top: 12px;
  line-height: 1.6;
}

.wpforms-field-medium:focus,
.wpforms-field-large:focus,
select.wpforms-field-medium:focus,
textarea.wpforms-field-medium:focus {
  border-color: #f16901;
  outline: none;
  box-shadow: 0 0 0 2px rgba(241, 105, 1, 0.1);
}

.wpforms-field-medium::placeholder,
textarea.wpforms-field-medium::placeholder {
  color: #999;
  opacity: 1;
}

.wpforms-one-half {
  width: 100%;
}

.wpforms-one-third {
  width: 100%;
}

.wpforms-one-fourth {
  width: 100%;
}

@media (min-width: 768px) {
  .wpforms-field-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .wpforms-one-half {
    grid-column: span 2;
  }

  .wpforms-one-third {
    grid-column: span 1;
  }

  .wpforms-one-fourth {
    grid-column: span 1;
  }

  #wpforms-119-field_20-container,
  #wpforms-119-field_34-container,
  #wpforms-119-field_35-container {
    grid-column: span 3;
  }

  #wpforms-119-field_33-container {
    grid-column: span 3;
  }

  #wpforms-119-field_40-container,
  #wpforms-119-field_41-container,
  #wpforms-119-field_42-container {
    grid-column: span 1;
  }
}

.wpforms-field-checkbox ul,
.wpforms-list-3-columns {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.wpforms-field-checkbox li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wpforms-field-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #f16901;
}

.wpforms-field-label-inline {
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer;
  user-select: none;
}

.wpforms-field-description {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-top: 10px;
  padding: 15px;
  background: white;
  border-radius: 0;
  border: 1px solid #e0e0e0;
}

.wpforms-field-hp {
  position: absolute !important;
  left: -9000px !important;
}

.wpforms-submit-container {
  margin-top: 35px;
  text-align: center;
}

.wpforms-submit {
  display: inline-block;
  padding: 18px 50px;
  background: #f16901;
  color: white !important;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(241, 105, 1, 0.3);
  border-radius: 0;
}

.wpforms-submit i {
  margin-right: 8px;
}

.wpforms-submit:hover {
  background: #d45801;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(241, 105, 1, 0.4);
}

.wpforms-submit:active {
  transform: translateY(0);
}

.formulario-vender-wrapper a {
  color: #f16901;
  text-decoration: none;
  transition: color 0.3s ease;
}

.formulario-vender-wrapper a:hover {
  color: #d45801;
  text-decoration: underline;
}

/* ========== TESTIMONIOS EN VIDEO ========== */
.aim-videos-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aim-container {
  max-width: 1200px;
  margin: 0 auto;
}

.aim-videos-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aim-slider-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.aim-videos-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
}

.aim-video-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 9/16;
  cursor: pointer;
  background: #000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.aim-video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.aim-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aim-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(241, 105, 1, 0.9);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(241, 105, 1, 0.4);
}

.aim-play-btn svg {
  margin-left: 3px;
}

.aim-video-item:hover .aim-play-btn {
  background: #d45801;
  transform: translate(-50%, -50%) scale(1.1);
}

.aim-arrow {
  background: white;
  border: 2px solid #f16901;
  color: #f16901;
  width: 48px;
  height: 48px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.aim-arrow:hover {
  background: #f16901;
  color: white;
}

.aim-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.aim-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.aim-dots span {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aim-dots span.active {
  background: #f16901;
  width: 32px;
}

.aim-modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.aim-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aim-modal-content video {
  width: 100%;
  border-radius: 0;
}

.aim-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}

.aim-close:hover {
  color: #f16901;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .aim-videos-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .vender-hero {
    min-height: 600px;
    padding: 60px 20px !important;
    background-attachment: scroll;
  }

  .vender-hero h1 {
    font-size: 32px;
  }

  .vender-hero h2.destacado {
    font-size: 20px;
  }

  .multiplica-section h3 {
    font-size: 20px;
  }

  .multiplica-section p {
    font-size: 16px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-valorar,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hacemos-section,
  .confianza-section,
  .video-section,
  .proceso-section,
  .faq-section,
  .aim-videos-section,
  .formulario-vender-section {
    padding: 60px 20px !important;
  }

  .hacemos-header h2,
  .confianza-header h2,
  .video-container h2,
  .proceso-header h2,
  .faq-header h2,
  .aim-videos-title {
    font-size: 28px;
  }

  .subtitle-marca {
    font-size: 22px;
  }

  .hacemos-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

  .expertise-text {
    padding: 30px 20px;
  }

  .expertise-text p {
    font-size: 16px;
  }

  .video-placeholder {
    padding: 60px 30px;
  }

  .proceso-step {
    flex-direction: column;
    gap: 20px;
  }

  .step-number {
    font-size: 36px;
  }

  .step-content h3 {
    font-size: 20px;
  }

  .aim-videos-container {
    grid-template-columns: 1fr;
  }

  .aim-slider-wrap {
    gap: 15px;
  }

  .aim-arrow {
    width: 40px;
    height: 40px;
  }

  .formulario-vender-wrapper {
    padding: 40px 25px;
  }

  .formulario-vender-wrapper h2 {
    font-size: 28px;
  }

  .wpforms-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vender-hero h1 {
    font-size: 26px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hacemos-header h2,
  .confianza-header h2,
  .proceso-header h2,
  .faq-header h2,
  .aim-videos-title {
    font-size: 24px;
  }

  .subtitle-marca {
    font-size: 18px;
  }
}

/* ========== ELIMINAR PUNTOS DE LI ========== */
.wpforms-field-checkbox li::before,
#wpforms-119-field_33 li::before,
#wpforms-119-field_35 li::before {
  display: none !important;
  content: "" !important;
}

/*============ FOTO =========================*/

.equipo-foto {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.equipo-foto img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.equipo-foto:hover img {
  transform: scale(1.05);
}

.multiplica-section .equipo-foto {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 35px !important;
}

.multiplica-section .equipo-foto img {
  width: 100%;
  height: 38vw;
  display: block;
  object-fit: cover;
}
