/* ========================================
   GLOBAL
   ======================================== */

/* ========================================
   HEADER — Landing Page
   ======================================== */

.header{
  display:none;
}

.lp-header {
  width: 100%;
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 102;
  background: #fff;
}

.lp-header-inner {
  max-width: 1320px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.lp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.lp-logo img {
  height: 22px;
  width: auto;
  display: block;
}

.lp-header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1994FF;
  transition: opacity 0.2s ease;
}

.lp-header-phone:hover {
  opacity: 0.75;
  text-decoration: none;
}

.lp-phone-number {
  font-size: 18px;
  font-weight: 400;
  color: #1994FF;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.2px;
}

.lp-phone-number strong {
  font-weight: 600;
}

.lp-header-phone-icon {
  display: none;
  align-items: center;
  text-decoration: none;
}

.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.lp-hamburger span {

}

/* ----------------------------------------
   RESPONSIVE MOBILE
   ---------------------------------------- */
@media (max-width: 768px) {

  .lp-header-inner {
    padding: 0 20px;
  }

  /* Logo — centrado */
  .lp-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Teléfono desktop — oculto */
  .lp-header-phone {
    display: none;
  }

  /* Ícono teléfono — visible */
  .lp-header-phone-icon {
    display: flex;
  }

  /* Hamburguesa — visible */
  .lp-hamburger {
    display: flex;
  }

  /* Header — relative para que el logo absolute funcione */
  .lp-header-inner {
    position: relative;
  }
}
.dnd_area-row-1-background-layers {
  background-position: 78% center !important;
  
  @media(max-width: 1440px){
     background-position: 100% center !important;
  }
  
  @media(max-width: 900px){
     background: none !important;
  }
}

.dnd_area-row-2-background-layers {
  background-position: center 38% !important;
}

.dnd_area-row-6-background-layers {
    background-position: center 35% !important;
}

html {
  font-family: 'Montserrat', sans-serif !important;
}

.pf-make-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
}

/* ========================================
   HERO TEXT
   ======================================== */

.hero-text {
  padding-top: 40px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background-color: #E8F4FF;
  color: #1994FF;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.08;
  color: #1a1a1a;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.hero-title > span:first-child {
  font-weight: 300;
}

.hero-title-highlight {
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background-color: #FF3B3B;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  color: #444;
  margin: 0 0 20px 0;
  letter-spacing: -0.4px;
}

.hero-description {
  font-size: 20px;
  color: #323232;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 32px;
}

/* ========================================
   CTA BUTTONS
   ======================================== */

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.call-btn {
  width: 295px;
  height: 70px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  position: relative;
  transition: 1s;
  border: 1px solid #1994ff;
  background-color: #fff;
  color: #000 !important;
  
  &.last-section-blue{
    width: 330px; 
      &:hover {
      .svg-frame {
        transform: translateX(257px);
      }

      p {
        left: 85px !important;
        color: #000 !important;
        
        @media(max-width: 768px){
         left: 130px !important;  
        }
      }
    }
    
    p{
     left: 130px !important; 
    }
  }

  .svg-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72.95px;
    height: 70px;
    background: #1994ff;
    border-radius: 100px;
    transition: 1s;
    z-index: 100;
    box-shadow: 0px 10px 30px -10px rgba(0,0,0,0.15);
  }

  p {
    font-size: 19px;
    position: absolute;
    left: 85px;
    transition: 1s;
    margin: 0;
  }

  &:hover {
    .svg-frame {
      transform: translate(300%); // 🔑 CLAVE
    }

    p {
      left: 30px; // 🔑 CLAVE
    }
  }
}

/* VARIANTE ROJA */

.call-btn.call-btn-red {
  background: #ffe6e2;
  width: 285px;
  border: 1px solid #f04e30;

  &:hover {
    .svg-frame {
      transform: translateX(215px); // este sí es fijo en original
    }

    p {
      left: 20px;
    }
  }
  
  &.last-section{
    width:330px;
    &:hover {
    .svg-frame {
      transform: translateX(260px) !important;
    }

    p {
      left: 20px;
    }
  }
  }
  
  &.section2{

    p {
      left: 115px;
    }
    &:hover{
        p { 
          left: 40px !important;
        } 
      }
  }
}

.call-btn.call-btn-red .svg-frame {
  background: #f04e30;
}

.call-btn.call-btn-red p {
  color: #000;
  left: 85px;
  transition: 1s;
}

/* MOBILE */

/* ----------------------------------------
   BOTONES MOBILE — REESCRITURA COMPLETA
   Pegar al final, después del responsive
   ---------------------------------------- */

@media (max-width: 768px) {

  /* Reset completo del botón en mobile */
  .call-btn {
    width: 100% !important;
    max-width: 330px !important;
    height: 64px !important;
    border-radius: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: relative !important;
    overflow: hidden !important;
    gap: 0 !important;
  }

  /* SVG frame — fijo, no se mueve */
  .call-btn .svg-frame {
    width: 64px !important;
    height: 64px !important;
    flex-shrink: 0 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Texto — posición fija, no se mueve */
  .call-btn p {
    position: absolute !important;
    left: 28% !important;
    font-size: 20px !important;
    transition: none !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  /* Deshabilitar TODO el hover en mobile */
  .call-btn:hover .svg-frame,
  .call-btn.call-btn-red:hover .svg-frame,
  .call-btn.call-btn-red.last-section:hover .svg-frame{
    transform: none !important;
    transition: none !important;
  }

  .call-btn:hover p,
  .call-btn.call-btn-red:hover p {
    left: 28% !important;
    transform: none !important;
    transition: none !important;
  }
  

  /* Variante roja — mismas reglas */
  .call-btn.call-btn-red {
    width: 100% !important;
    max-width: 330px !important;
    height: 64px !important;
    border-radius: 32px !important;
  }

  .call-btn.call-btn-red .svg-frame, .call-btn.call-btn-red.last-section .svg-frame {
    transform: none !important;
    transition: none !important;
  }

  .call-btn.call-btn-red p {
    position: absolute !important;
    left: 28% !important;
    font-size: 20px !important;
    transition: none !important;
    
  }
  
  .call-btn.call-btn-red.section2 p{
   left: 130px !important; 
   
  }
  .call-btn.call-btn-red.section2{ 
   &:hover{
    p{
       left: 130px !important; 
      }
    }
  }

  /* Contenedores de botones — centrados y en columna */
  .hero-cta-buttons,
  .pf-buttons,
  .pf-solution-cta {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
  }
}

@media (max-width: 375px) {
  .call-btn,
  .call-btn.call-btn-red {
    max-width: 290px !important;
    height: 58px !important;
    border-radius: 29px !important;
  }

  .call-btn .svg-frame,
  .call-btn.call-btn-red .svg-frame {
    width: 58px !important;
    height: 58px !important;
  }

  .call-btn p,
  .call-btn.call-btn-red p {
    font-size: 15px !important;
  }
  .call-btn.call-btn-red.section2 p {
    left: 116px !important;
  }
}

.hero-guarantee {
  font-size: 16px;
  color: #323232;
  line-height: 1.6;
}

/* ========================================
   STATS
   ======================================== */

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  margin: 24px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-number {
  font-size: 24px;
  color: #1a1a1a;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #888;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background-color: #e5e5e5;
}

/* ========================================
   PARTNERS
   ======================================== */

.hero-partners {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  
  img{
    margin-inline: auto;
    margin-top: 2rem;
  }
}

.partner-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* HERO STATS — desktop vs mobile */
.hero-stats-mobile {
  display: none;
}

.hero-stats-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-stats-desktop {
    display: none;
  }

  .hero-stats-mobile {
    display: block;
    width: 100%;
    margin-inline: 5%;
  }

  .hero-stats-mobile svg {
    width: 100%;
    height: auto;
  }
}

/* ========================================
   FORM CARD
   ======================================== */

.hero-form-wrapper {
  position: sticky;
  top: 100px;
}

.hero-form-card {
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
  position: relative;
  overflow: hidden;
  background-color: #ffffffcf;
}

.form-header {
  padding: 48px 48px 32px 48px;
  position: relative;
  z-index: 2;
}

.form-tit {
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.form-tit strong {
  font-weight: 700;
}

.form-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.form-subtitle em {
  text-decoration: underline;
  font-style: italic;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ========================================
   FORM INPUTS
   ======================================== */

.hero-form {
  padding: 0 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

#heroAuditForm {
  background-color: transparent;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #1a1a1a;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #1994ff;
  box-shadow: 0 0 0 4px rgba(25, 148, 255, 0.08);
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ========================================
   SECTION CIRCLE BUTTON
   ======================================== */

.section-circle-button {
  position: relative;
  width: max-content;
  margin-inline: auto;
}

.section-circle-button::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 64px;
  left: 0px;
  top: calc(50% - 32px);
  background: rgba(25, 148, 255, 0.1);
  border-radius: 64px;
  z-index: 1;
  transition: all .3s ease-in-out;
}

.section-circle-button button,
.section-circle-button a {
  align-items: center;
    background: transparent;
    border: none;
    border-radius: 64px;
    color: #1994FF;
    cursor: pointer;
    display: inline-flex !important;
    font-family: Montserrat, sans-serif !important;
    font-size: 20px;
    font-weight: 400;
    gap: 14px;
    padding: 18px 32px !important;
    position: relative;
    text-decoration: none;
    z-index: 2;
  
  @media(max-width: 768px){
   font-size: 16px !important; 
  }
}

.section-circle-button button span:first-child,
.section-circle-button a span:first-child {
  white-space: nowrap;
}

.section-circle-button button span{
 margin-top: 27px; 
}

.section-circle-button button span:last-child,
.section-circle-button a span:last-child {
  background-image: none !important;
  width: 30px !important;
  height: 1px;
  background: #007BE7;
  margin-top: 27px; 
  transition: all .3s ease-in-out;
  display: block;
}

.section-circle-button:hover::before {
  width: 100%;
  background: #1994FF;
}

.section-circle-button:hover button,
.section-circle-button:hover a {
  color: #FFFFFF !important;
}

.section-circle-button:hover button span:last-child,
.section-circle-button:hover a span:last-child {
  background: #FFFFFF;
}

/* ========================================
   SECTION 2 — THE PROBLEM
   ======================================== */

.pf-problem {
  padding: 0;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}

.pf-problem .pf-make-container {
  position: relative;
  z-index: 1;
}

.pf-problem-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.pf-problem-left {
  flex: 1;
}

.pf-problem-right{
  margin-top: 7rem; 
}

.pf-tag {
  color: #1994FF;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

/* Título — primera línea light, segunda bold+underline */
.pf-problem-left h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.15;
  color: #111;
  margin-bottom: 32px;
}

.pf-problem-left h1 span {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #111;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  display: inline-block;
}

.pf-stat-box {
  background: linear-gradient(to right, #1994ff1c 0%, transparent 100%);
  padding: 48px 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.pf-stat-box h2 {
  font-size: 85px;
  font-variation-settings: "wght" 500;
  color: #1994FF;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
}

.pf-stat-box div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pf-stat-box p {
  margin: 0;
  font-size: 21px;
  line-height: 1.5;
  color: #333;
}

.pf-stat-box p strong {
  font-variation-settings: "wght" 400;
  text-decoration: underline;
  text-decoration-color: #333;
  text-underline-offset: 2px;
}

.pf-stat-source {
  font-size: 16px !important;
  color: #888 !important;
  font-style: italic;
}

.pf-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pf-problem-cta-sub {
  font-size: 16px;
  color: #323232;
  margin: 0;
  text-align: center;
}


@media (max-width: 1100px) {
  .pf-problem-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .pf-problem-right {
    padding-top: 0;
    margin-top: 0;
  }
  .pf-problem-right img {
    width: 240px;
    height: 240px;
  }
  .pf-buttons {
    justify-content: center;
  }
  .pf-problem-cta-sub {
    text-align: center;
  }
  .pf-stat-box {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .pf-problem-left h1 {
    font-size: 36px;
  }
  .pf-stat-box h2 {
    font-size: 40px;
  }
}

/* MOCKUPS */
.pf-mockups {
  position: relative;
  height: 550px;
  margin-bottom: 40px;
}

.pf-mockups img {
  position: absolute;
  bottom: 0;
  height: auto;
  width: clamp(90px, 14vw, 243px);
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.15));
}

.pf-mockups img:nth-child(1) { transform: translateX(-260%) scale(0.65); z-index: 1; }
.pf-mockups img:nth-child(2) { transform: translateX(-200%) scale(0.75); z-index: 2; }
.pf-mockups img:nth-child(3) { transform: translateX(-130%) scale(0.85); z-index: 3; }
.pf-mockups img:nth-child(4) { transform: translateX(-50%)  scale(0.90); z-index: 5; }
.pf-mockups img:nth-child(5) { transform: translateX(30%)   scale(0.85); z-index: 3; }
.pf-mockups img:nth-child(6) { transform: translateX(100%)  scale(0.75); z-index: 2; }
.pf-mockups img:nth-child(7) { transform: translateX(160%)  scale(0.65); z-index: 1; }

/* ========================================
   SECTION 3 — 5 MISTAKES
   ======================================== */

.pf-mistakes {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}


.pf-mistakes .pf-make-container {
  position: relative;
  z-index: 1;
}

/* TAG */
.pf-mistakes-tag {
  text-align: left;
  color: #1994FF;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

/* TÍTULO — izquierda */
.pf-mistakes-heading {
  text-align: left;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #111;
}

.pf-mistakes-heading strong {
  font-weight: 500;
}

/* SUBTÍTULO */
.pf-mistakes-sub {
  text-align: left;
    font-size: 20px;
    color: #99948C;
    margin-block: 24px;
}

/* GRID */
.pf-mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* CARD — sin padding global, estructura flex */
.pf-mistake-card {
  border-radius: 16px;
  border: 1px solid #e8ecf0;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* BODY — el área blanca con padding */
.pf-mistake-card-body {
  padding: 28px 28px 20px 28px;
  flex: 1;
}

/* H3 — ícono + título, weight normal */
.pf-mistake-card h3 {
  font-size: 28px;
  font-weight: 400;
  color: #111;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.pf-mistake-num{
 color:  #1994FF;
  font-weight: 500;
}

.pf-mistake-card h3 img {
  flex-shrink: 0;
  width: 40px !important;
  height: auto !important;
}

/* COLS */
.pf-card-cols {
  display: flex;
  gap: 24px;
  margin: 0;
    margin-top: 16px;
}

.pf-card-cols > div {
  flex: 1;
}

.pf-col-problem img,
.pf-col-costs img{
  margin-top: 10px; 
  height: 24px !important;
}

/* "THE PROBLEM" — gris claro */
.pf-card-cols span {
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  display: flex;
  gap: 7px;
}

/* "WHAT IT COSTS YOU" — negro bold */
.pf-col-costs {
  color: #111 !important;
}

.pf-card-cols p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  margin-left: 30px;
}

/* FOOTER — ocupa todo el ancho, pegado al fondo */
.pf-card-footer {
  background: #1994FF1F;
  padding: 16px 28px;
  line-height: 1.65;
  display: flex;
  margin-top: 20px;
  gap:8px;
}

.pf-card-footer strong,
.pf-card-footer b {
  font-style: normal;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.pf-footer-icon{
 margin-top: 4px;
 min-width: 17px;
}

/* FULL WIDTH */
.pf-mistake-card.full {
  grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pf-mistakes-heading { font-size: 36px; }
  .pf-mistakes-grid { grid-template-columns: 1fr; }
  .pf-mistake-card.full { grid-column: span 1; }
  .pf-card-cols { flex-direction: column; gap: 16px; }
}
/* ========================================
   SECTION 4 — PRICING (FIXES)
   ======================================== */

.pf-pricing {
  padding: 80px 0;
}

/* Título — izquierda, más grande */
.pf-pricing-title {
  text-align: left;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #111;
}

.pf-pricing-title strong {
  font-weight: 500;
}

/* Grid — cards más anchas, se estiran */
.pf-pricing-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* CARD BASE */
.pf-price-card {
  border-radius: 20px;
  padding: 36px 24px;
  width: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #eef0f4;
  background: #fff;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  max-width: 340px;
}

.pf-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

/* CARD FEATURED */
.pf-price-card.featured {
  background: #1994FF;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 16px 50px rgba(25, 118, 210, 0.25);
  border: none;
  z-index: 2;
}

.pf-price-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

/* BADGE — dentro de la card, no flotando */
.pf-badge {
    display: inline-block;
    background: #FBBF24;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 7px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
    position: static;
    top: auto;

}

/* H3 */
.pf-price-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.pf-price-card.featured h3 {
  color: #fff;
}

/* DESC */
.pf-desc {
  font-size: 16px;
  margin-block: 12px;
  line-height: 1.5;
}

.pf-price-card.featured .pf-desc {
  color: rgba(255,255,255,0.75);
}

/* PRECIO — grande */
.pf-price {
  font-size: 44px;
  font-weight: 500;
  color: #111;
  margin-block: 24px;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pf-price span {
  font-size: 20px;
  font-weight: 400;
  color: #aaa;
}

.pf-price-card.featured .pf-price {
  color: #fff;
}

.pf-price-card.featured .pf-price span {
  color: rgba(255,255,255,0.7);
}

/* FEATURES — más espaciado */
.pf-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-features li {
  font-size: 15px;
  color: #555;
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
  margin: 0;
}

.pf-features li::before {
  content: "";
  width: 11px;
  height: 11px;
  background: #1994FF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

.pf-price-card.featured .pf-features li {
  color: rgba(255,255,255,0.9);
}

.pf-price-card.featured .pf-features li::before {
  background: #FBBF24;
}

/* BOTÓN — section-circle-button estilo línea */
.pf-price-card .section-circle-button {
  margin-inline: 0;
  margin-top: auto;
}

.pf-price-card .section-circle-button::before {
  background: rgba(25, 148, 255, 0.1);
}

.pf-price-card .section-circle-button a {
  color: #1994FF;
    font-size: 19px;
    font-weight: 400;
    padding: 16px 24px !important;
    border: none;
    border-radius: 0;
}

.pf-price-card .section-circle-button a span:last-child {
  background: #1994FF;
}

.pf-price-card .section-circle-button:hover a {
  color: #1994FF !important;
}

.pf-price-card.featured .section-circle-button::before {
  background: rgba(255,255,255,0.15);
}

.pf-price-card.featured .section-circle-button a {
  color: #fff;
}

.pf-price-card.featured .section-circle-button:hover a {
  color: #fff !important;
}

.pf-price-card.featured .section-circle-button a span:last-child {
  background: #fff;
}
/* ----------------------------------------
   PRICING — fix entre 1180px y 900px
   ---------------------------------------- */
@media (max-width: 1180px) {
  .pf-pricing-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .pf-price-card {
    max-width: 280px;
    width: calc(33% - 16px);
    min-width: 240px;
  }

  .pf-price-card.featured {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .pf-price-card {
    max-width: 300px;
    width: 100%;
    min-width: unset;
  }

  .pf-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pf-price-card.featured {
    transform: none;
  }
  .pf-pricing-title {
    font-size: 36px;
  }
}

/* ========================================
   SECTION 5 — THE SOLUTION
   ======================================== */

.pf-solution {
  padding: 80px 0;
}

.pf-solution-tag {
  color: #1994FF;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.pf-solution-title {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.15;
  color: #111;
  margin-bottom: 16px;
}

.pf-solution-title strong {
  font-weight: 500;
  display: block;
}

.pf-solution-sub {
 font-size: 20px;
    color: #323232;
    margin-top: 32px;
}

.pf-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 56px;
}

.pf-solution-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 60px 40px 0;
}

.pf-solution-item.full {
  grid-column: span 2;
  padding-right: 0;
}

/* Ítems de la derecha — sin padding derecho extra */
.pf-solution-grid .pf-solution-item:nth-child(even) {
  padding-right: 0;
  border-left: none;
}

.pf-icon {
      align-items: center;
    display: flex;
    flex-shrink: 0;
    height: 34px;
    justify-content: center;
    width: 41px;
}

.pf-icon img {
  width: 44px !important;
  height: auto !important;
  object-fit: contain;
}

/* NÚMERO — grande y light como en el diseño */
.pf-num {
      color: #1994ff;
    flex-shrink: 0;
    font-size: 36px;
    font-weight: 300;
    line-height: .85;
    margin-top: 2px;
    min-width: 24px;
}

.pf-solution-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.pf-solution-item p {
  font-size: 18px;
  color: #323232;
  line-height: 1.65;
  margin: 0;
}

/* DIVIDER — span 2 columnas */
.pf-divider {
  grid-column: span 2;
  height: 1px;
  background: #e8ecf0;
  margin: 0;
}

.pf-solution-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pf-solution-title { font-size: 36px; }
  .pf-solution-grid { grid-template-columns: 1fr; }
  .pf-divider { display: none; }
  .pf-solution-item,
  .pf-solution-item.full,
  .pf-solution-grid .pf-solution-item:nth-child(even) {
    padding: 24px 0;
    padding-left: 0;
    grid-column: span 1;
  }
  .pf-num { font-size: 48px; }
}

/* ========================================
   SECTION 6 — RESULTS / TESTIMONIALS
   ======================================== */

.pf-results {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pf-results .pf-make-container {
  position: relative;
  z-index: 1;
}

/* TAG */
.pf-results-tag {
  color: #1994FF;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

/* TÍTULO */
.pf-results-title {
  font-size: 48px;
  font-weight: 300;
  color: #111;
  line-height: 1.15;
  margin-bottom: 48px;
}

.pf-results-title strong {
  display: block;
}

/* AVATARS */
.sc-avatars {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 48px;
  container-type: inline-size;
}

.sc-avatars__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.sc-avatars{
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    container-type: inline-size;
    height: 260px;
  }
  
  .sc-avatar{
    position: absolute;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,.18), 0 6px 12px rgba(0,0,0,.12);
    width: var(--s);
    height: var(--s);
  }
  
  @container (min-width: 0px){
    .sc-avatars{
      --b: calc(100cqw * 0.1411111111);
      height: calc(100cqw * 0.2888888889);
    }
  }
  
  .sc-avatar.a1,
  .sc-avatar.a7{
    --s: calc(var(--b) * 1.00);
  }
  
  .sc-avatar.a2,
  .sc-avatar.a6{
    --s: calc(var(--b) * 1.0787401575);
  }
  
  .sc-avatar.a3,
  .sc-avatar.a5{
    --s: calc(var(--b) * 1.2362204724);
  }
  
  .sc-avatar.a4{
    --s: calc(var(--b) * 1.7480314961);
  }
  
  .sc-avatar.a1{ left: 1%; top: 20%; z-index: 1; }
  .sc-avatar.a2{ left: 12%; top: 17%; z-index: 2; }
  .sc-avatar.a3{ left: 24%; top: 10%; z-index: 3; }
  .sc-avatar.a4{ left: 38%; top: 0%; z-index: 5; }
  .sc-avatar.a5{ left: 59%; top: 10%; z-index: 3; }
  .sc-avatar.a6{ left: 73%; top: 17%; z-index: 2; }
  .sc-avatar.a7{ left: 87%; top: 20%; z-index: 1; }
  
  @supports not (container-type: inline-size){
    .sc-avatars{
      height: clamp(190px, 28vw, 260px);
    }
  
    .sc-avatars{
      --b: clamp(60px, 9.5vw, 127px);
    }
  }
  
  @media (max-width: 820px){
    .sc-avatars{
      height: clamp(170px, 34vw, 230px);
    }
  
    .sc-avatars{
      --b: clamp(54px, 13.5vw, 110px);
    }
  }
  
  @media (max-width: 520px){
    .sc-avatars{
      height: clamp(150px, 40vw, 200px);
      max-width: 520px;
    }
  
    .sc-avatars{
      margin-left: -6px;
      --b: clamp(48px, 14vw, 96px);
    }
  }

.sc-avatar.a1, .sc-avatar.a7 { --s: calc(var(--b) * 1.00); }
.sc-avatar.a2, .sc-avatar.a6 { --s: calc(var(--b) * 1.0787401575); }
.sc-avatar.a3, .sc-avatar.a5 { --s: calc(var(--b) * 1.2362204724); }
.sc-avatar.a4                 { --s: calc(var(--b) * 1.7480314961); }

.sc-avatar.a1 { left: 1%;  top: 20%; z-index: 1; }
.sc-avatar.a2 { left: 12%; top: 17%; z-index: 2; }
.sc-avatar.a3 { left: 24%; top: 10%; z-index: 3; }
.sc-avatar.a4 { left: 38%; top: 0%;  z-index: 5; }
.sc-avatar.a5 { left: 59%; top: 10%; z-index: 3; }
.sc-avatar.a6 { left: 73%; top: 17%; z-index: 2; }
.sc-avatar.a7 { left: 87%; top: 20%; z-index: 1; }

@supports not (container-type: inline-size) {
  .sc-avatars { height: clamp(190px, 28vw, 260px); --b: clamp(60px, 9.5vw, 127px); }
}

/* STAT CARDS */
.pf-results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 48px 0;
}

.pf-stat-card {
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #eef0f4;
  background: #fff;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pf-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.09);
}

/* Span contiene ícono + industria */
.pf-stat-card span {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.pf-stat-card span img {
  height: 32px !important;
  height: auto !important;
  display: block;
}

/* Texto de industria dentro del span */
.pf-stat-card span br + * ,
.pf-stat-card span {
  font-size: 13px;
    font-weight: 500;
    color: #99948C;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Número grande */
.pf-stat-card h3 {
  font-size: 52px;
  font-weight: 500;
  color: #1994FF;
  margin: 0 0 4px 0;
  line-height: 1;
}

/* Descripción */
.pf-stat-card p {
  font-size: 16px;
    color: #777;
    line-height: 1.5;
    margin: 16px 0 16px 0;
}

/* FOOTER — nombre + logo */
.pf-stat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.pf-stat-card-footer strong {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

/* Logo empresa */
.pf-stat-card-footer img {
  height: 32px !important;
  width: auto !important;
  max-width: 80px !important;
  object-fit: contain;
  display: block;
}

/* TESTIMONIALS */
.pf-testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.pf-testimonial {
  padding: 32px 36px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #eef0f4;
  background: #F9F9F9;
}

/* Texto — NO italic, color oscuro */
.pf-testimonial p {
      color: #323232;
    font-size: 22px;
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: normal;
}

/* Autor — azul bold */
.pf-testimonial span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: #1994FF;
  margin-top: 0;
}

/* CLIENTS */
.our-clients {
  margin-top: 60px;
}

.our-clients .clients-frame {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
}

.our-clients .clients-frame .client {
  width: 100%;
  margin: 0;
  border-radius: 32px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
  aspect-ratio: 1;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
  box-sizing: border-box;
}

.our-clients .clients-frame .client img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.our-clients .clients-frame .client:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pf-results-stats { grid-template-columns: repeat(2, 1fr); }
  .our-clients .clients-frame { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .pf-results-title { font-size: 34px; }
  .our-clients .clients-frame { grid-template-columns: repeat(3, 1fr); }
  .pf-testimonial { padding: 24px; }
}

@media (max-width: 600px) {
  .pf-results-stats { grid-template-columns: repeat(1, 1fr); }
  .our-clients .clients-frame { grid-template-columns: repeat(2, 1fr); }
  .pf-results-title { font-size: 28px; }
}

@media (max-width: 820px) {
  .sc-avatars {
    height: clamp(170px, 34vw, 230px);
    --b: clamp(54px, 13.5vw, 110px);
  }
}

@media (max-width: 520px) {
  .sc-avatars {
    height: clamp(150px, 40vw, 200px);
    max-width: 520px;
    margin-left: -6px;
    --b: clamp(48px, 14vw, 96px);
  }
}

/* ========================================
   SECTION 7 — PROCESS / HOW IT WORKS
   ======================================== */

.pf-process {
  padding: 80px 0;
}

.pf-process-tag {
 color: #1994FF;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.pf-process-title {
  font-size: 44px;
  font-weight: 300;
  color: #111;
  line-height: 1.15;
  margin-bottom: 48px;
}


/* GRID 4 COLUMNAS */
.pf-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.pf-process-card {
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #eef0f4;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pf-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}

/* ÍCONO */
.pf-process-icon {
  align-items: center;
  display: flex;
  margin-bottom: 4px;
  width: 100%;
}

.pf-process-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* NÚMERO */
.pf-process-num {
 font-size: 36px;
    font-weight: 500;
    color: #1994FF;
    line-height: 1;
}

/* TÍTULO */
.pf-process-card h3 {
  font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

/* DESCRIPCIÓN */
.pf-process-card p {
      font-size: 16px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

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

@media (max-width: 600px) {
  .pf-process-grid {
    grid-template-columns: 1fr;
  }
  .pf-process-title {
    font-size: 32px;
  }
}
/* ========================================
   SECTION 8 — FAQ v2
   ======================================== */

.pf-faq {
  padding: 80px 0;
}

.pf-faq-tag {
  color: #1994FF;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

.pf-faq-title {
  font-size: 44px;
  font-weight: 300;
  color: #111;
  line-height: 1.15;
  margin-bottom: 48px;
}

/* LIST */
.pf-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ITEM */
.pf-faq-item {
  border-radius: 16px;
  border: 1px solid #eef0f4;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.pf-faq-item.is-open {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}

/* HEADER — toda la fila clickeable */
.pf-faq-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 16px 24px !important;
  cursor: pointer;
  user-select: none;
}

/* Neutralizar cualquier p o br que HubSpot meta dentro */
.pf-faq-header p,
.pf-faq-header br {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ÍCONO izquierda */
.pf-faq-icon {
  flex-shrink: 0 !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
}

.pf-faq-icon svg {
  display: block !important;
}

/* PREGUNTA — ocupa todo el espacio del medio */
.pf-faq-question {
  flex: 1 !important;
  font-size: 24px !important;
  color: #111 !important;
  line-height: 1.4 !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* PLUS — siempre a la derecha */
.pf-faq-plus {
  flex-shrink: 0 !important;
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  line-height: 0 !important;
}

.pf-faq-plus svg {
  display: block !important;
}

.pf-faq-item.is-open .pf-faq-plus {
  transform: rotate(45deg) !important;
}

/* BODY — oculto por defecto */
.pf-faq-body {
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  padding: 0 24px !important;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.3s ease !important;
}

.pf-faq-item.is-open .pf-faq-body {
  max-height: 500px !important;
  opacity: 1 !important;
  padding: 0 24px 24px 72px !important;
}

.pf-faq-body p {
  font-size: 15px !important;
  color: #555 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pf-faq-title { font-size: 32px; }
  .pf-faq-item.is-open .pf-faq-body { padding: 0 20px 20px 20px !important; }
  .pf-faq-question { font-size: 14px !important; }
}

/* ========================================
   SECTION 9 — FINAL CTA (FIXES)
   ======================================== */

.pf-final-cta {
  padding-block: 40px;
  position: relative;
  overflow: hidden;
}

.pf-final-cta .pf-make-container {
  position: relative;
  z-index: 1;
}

.pf-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.pf-cta-tag {
  color: #1994FF;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.pf-cta-title {
  font-size: 52px;
  font-weight: 300;
  color: #111;
  line-height: 1.15;
  margin-bottom: 16px;
}

/* bold = 500, no más */
.pf-cta-title strong {
  font-weight: 500;
  display: block;
}

.pf-cta-sub {
  font-size: 18px;
  color: #666;
  margin-bottom: 36px;
  line-height: 1.6;
}

/* CARD — sombra muy sutil, casi imperceptible */
.pf-cta-card {
  max-width: 470px;
  width: 100%;
  border-radius: 20px;
  padding: 8px 0px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  border: 1px solid #eef0f4;
  background: #fff;
  margin-bottom: 36px;
}

.pf-cta-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
      border-radius: 36px;
    padding: 24px 24px;
}

.pf-cta-field {
  width: 100%;
}

input[type='text'], input[type='email'], input[type='password'], input[type='tel'], input[type='number'], input[type='url'],select, textarea {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 1.0);
    border: 1px solid #D2E9FC;
    border-radius: 16px;
    color: #1e1e1e;
    font-size: 16px;
    padding: 12px 12px;
}

/* Inputs — borde muy sutil */
.pf-cta-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  background: #fafafa;
}

.pf-cta-input:focus {
  outline: none;
  border-color: #1994FF;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(25, 148, 255, 0.08);
}

.pf-cta-input::placeholder {
  color: #bbb;
}


/* TELÉFONO */
.pf-cta-phone {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.pf-cta-phone-label {
  font-size: 20px;
}

.pf-cta-phone-number, .pf-cta-phone-number:hover, .pf-cta-phone-number:focus {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 500;
  color: #1994FF;
  text-decoration: none;
  transition: opacity 0.2s ease;
}


/* STATS */
.pf-cta-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pf-cta-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #111;
}

/* 15+ Years, 600+ — weight 500 */
.pf-cta-stat strong {
  font-size: 32px;
  font-weight: 500;
  color: #111;
}

.pf-cta-stat span {
  font-size: 14px;
  color: #555;
}

.pf-cta-stat-divider {
  width: 1px;
  height: 28px;
  background: #ddd;
}

@media (max-width: 768px) {
  .pf-final-cta { padding: 70px 0; }
  .pf-cta-title { font-size: 36px; }
  .pf-cta-card { padding: 24px 20px; }
  .pf-cta-phone-number { font-size: 20px; }
  .pf-cta-stat-divider { display: none; }
  .pf-cta-stats { gap: 16px; display:none;}
}

/* ========================================
   SECTION 10 — FINAL CTA
   ======================================== */
.proof-title {
  font-size: 64px;
  margin-bottom: 20px;
  text-align:center;
  font-weight: 300;

  @media (max-width: 1600px) {
    font-size: 48px;
  }

  strong {
    font-weight: 500;
  }
}

.proof-subtitle {
  font-size: 20px;
  margin: 0 auto 40px;
  font-weight: 300;
  color: #212121;
  text-align: center;

  @media (max-width:900px) {
    font-size: 16px !important; 
    text-align: center;
  }
}

.proof-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 70px;

  img{
    width: 100%;
    height: 100%;
    max-width: 453px;

  }
}

/* CARDS */

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 10px;
}

.proof-card {
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;

    .proof-card__head{
      display: flex;
      align-items: start;
      gap: 15px;

      p{
        font-size: 24px;

        @media(max-width: 1600px){
          font-size: 22px;
        }
    

        strong{
          font-weight: 500;
        }
      }

      img{
        margin-top: 10px;
      }
      
    }
}

.card-icon img {
  width: 36px;
  margin-bottom: 20px;
}

.card-icon{
  font-size: 24px;
  font-weight: 300;
  font-family: 'Montserrat'; 

  span{
    font-size: 24px;

  }
}

.tiny-text{
  margin-top: 20px;
   font-size: 15px;
  text-align: center;
}

.card-text {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.4;
  font-family: 'Montserrat'; 
}

strong{
 font-weight: 600; 
}

.proof-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-top: auto;

  img {
    width: 100% !important;
    object-fit: cover;
    cursor: pointer;

    @media(max-width: 900px){
      height: 180px;
        max-width: 300px;
        object-fit: contain;
        margin-inline: auto;
        display: flex;
    }
  }

  .play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: grid;
    place-items: center;

    &::before {
      content: '';
      margin-left: 4px;
      border-style: solid;
      border-width: 8px 0 8px 12px;
      border-color: transparent transparent transparent #1994ff;
    }
  }
}

.proof-cta {
  display: flex;
  justify-content: center;
  gap: 25px;

  @media (max-width:900px) {
    a{
      font-size: 20px;
      margin-bottom: 15px;
      margin-inline: auto;
    }
    gap: 10px;
    display: block;
    
  }
  
  .section-circle-button {
  position: relative;
  width: max-content;
  margin: 64px 0;

  &::before {
    position: absolute;
    content: "";
    width: 64px;
    height: 64px;
    left: 0px;
    top: calc(50% - 64px/2);
    background: rgba(25, 148, 255, 0.1);
    border-radius: 64px;
    z-index: 1;
    transition: all .3s ease-in-out;
  }

  a {
    position: relative;
    z-index: 2;
    padding-left: 32px !important;
    padding-right: 32px !important;
    display: flex !important;
    gap: 14px;

    span {
      background-image: none !important;
      width: 30px !important;
      height: 1px;
      background: #007BE7;
      margin-top: 14px !important;
    }

    &:hover {
      text-decoration: none !important;
    }
  }

  &:hover {
    &::before {
      width: 100%;
      background: #1994FF;
    }

    a {
      color: #FFFFFF !important;

      span {
        background: #FFFFFF;
      }

      &:hover {
        color: #FFFFFF !important;

        span {
          background: #FFFFFF;
        }
      }
    }
  }

}

  .section-circle-button{
    a{
      font-size: 20px;
      font-weight: 500;
    }
    @media (max-width:900px) {
      margin-inline: auto;
    }
  }
}

.btn-primary {
  display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    width: 290px;
    height: 64px !important;
    font-size: 20px;
    text-decoration: none !important;
    background-color: #1994ff;
    color: #ffffff;
    padding: 6px 24px;
    border-radius: 100px;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-top: 46px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus{
  text-decoration: none;
  background-color: #55b0ff;
  color: #fff;
  font-weight: 600;
  font-family: "Mulish", sans-serif;
}

.btn-secondary {
  background: #e9f4ff;
  color: #1994ff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  justify-self: center;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .proof-cards {
    grid-template-columns: 1fr;
  }

  .proof-title {
    font-size: 24px;
  }
}


@media (max-width: 900px) {
  .schedule-blog-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   RESPONSIVE — SOLO AGREGAR AL FINAL
   ======================================== */

/* ----------------------------------------
   1280px — MacBook 13" / Laptops medianas
   ---------------------------------------- */
@media (max-width: 1280px) {

  /* GLOBAL */
  .pf-make-container,
  .hero-container {
    padding: 0 36px;
  }

  /* HERO */
  .hero-content {
    grid-template-columns: 1fr 400px;
    gap: 48px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  /* PROBLEM */
  .pf-problem-left h1 {
    font-size: 40px;
  }

  .pf-stat-box h2 {
    font-size: 64px;
  }

  .pf-stat-box p {
    font-size: 18px;
  }

  /* MISTAKES */
  .pf-mistakes-heading {
    font-size: 44px;
  }

  .pf-mistake-card h3 {
    font-size: 22px;
  }

  /* PRICING */
  .pf-pricing-title {
    font-size: 44px;
  }

  /* SOLUTION */
  .pf-solution-title {
    font-size: 44px;
  }

  .pf-solution-item h4 {
    font-size: 20px;
  }

  /* RESULTS */
  .pf-results-title {
    font-size: 40px;
  }

  .pf-stat-card h3 {
    font-size: 44px;
  }

  .pf-testimonial p {
    font-size: 18px;
  }

  /* PROCESS */
  .pf-process-title {
    font-size: 38px;
  }

  /* FAQ */
  .pf-faq-title {
    font-size: 38px;
  }

  .pf-faq-question {
    font-size: 20px !important;
  }

  /* CTA */
  .pf-cta-title {
    font-size: 44px;
  }

  /* PROOF */
  .proof-title {
    font-size: 44px;
  }

  .card-text {
    font-size: 20px;
  }
}



/* ----------------------------------------
   1024px — Tablets landscape / Laptops pequeñas
   ---------------------------------------- */
@media (max-width: 1024px) {

  /* GLOBAL */
  .pf-make-container,
  .hero-container {
    padding: 0 12px;
  }

  /* HERO — una sola columna */
  .hero-content {
    display: flex;
    flex-direction: column;
    width:100%;
    gap: 40px;
  }
  
  .hero-description{
   text-align: center; 
    max-width: none;
  }
  
  .hero-cta-buttons{
    justify-content: center;
  }

  .hero-text {
    padding-top: 0;
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 22px;
    text-align: center;
  }

  .hero-form-wrapper {
    position: relative;
    top: 0;
    width: 100%;
  }

  .hero-form-card {
    max-width: 560px;
    margin: 0 auto;
  }

  /* PROBLEM */
  .pf-problem-top {
    flex-direction: column;
    gap: 40px;
  }

  .pf-problem-right {
    display: none; /* La imagen circular queda fuera en tablet */
  }

  .pf-problem-left h1 {
    font-size: 36px;
  }

  .pf-stat-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
  }

  .pf-stat-box h2 {
    font-size: 56px;
  }

  .pf-buttons {
    flex-wrap: wrap;
  }

  /* MOCKUPS */
  .pf-mockups {
    height: 310px;
  }

  /* MISTAKES */
  .pf-mistakes-heading {
    font-size: 38px;
  }

  /* PRICING */
  .pf-pricing-title {
    font-size: 30px;
     text-align: start;
  }

  /* SOLUTION */
  .pf-solution-title {
    font-size: 38px;
  }

  /* RESULTS */
  .pf-results-title {
    font-size: 36px;
  }

  .pf-results-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .our-clients .clients-frame {
    grid-template-columns: repeat(4, 1fr);
  }

  /* PROCESS */
  .pf-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FAQ */
  .pf-faq-question {
    font-size: 18px !important;
  }

  /* CTA */
  .pf-cta-title {
    font-size: 40px;
  }

  /* PROOF */
  .proof-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-title {
    font-size: 36px;
  }
}

@media (max-width: 1100px) {

  /* PROBLEM — título izquierda */
  .pf-problem-left h1 {
    text-align: left;
  }

  /* STAT BOX — posición relativa para la imagen superpuesta */
  .pf-stat-box {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px 28px 24px;
    min-height: 280px;
    overflow: visible !important;
  }

  /* Número grande arriba */
  .pf-stat-box h2 {
    font-size: 64px !important;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
  }

  /* Imagen circular — superpuesta en esquina derecha del stat box */
  .pf-problem-right {
    display: block !important;
    position: absolute;
    top: 380px;
    padding-top: 0;
    z-index: 2;
  }

  .pf-problem-right img {
    width: 240px !important;
    object-fit: cover;
  }

  /* Texto del stat box — ancho limitado para no solapar la imagen */
  .pf-stat-box div {
    width: 100%;
  }

  /* Espaciado extra debajo del stat box para compensar la imagen que sobresale */
  .pf-stat-box {
    margin-bottom: 175px;
  }

  /* Botones — centrados */
  .pf-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
/* ----------------------------------------
   768px — Tablets portrait
   ---------------------------------------- */
@media (max-width: 768px) {
  

  /* HERO */
  .hero-section {
    padding: 48px 0 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 24px;
  }


  .hero-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .call-btn,
  .call-btn.call-btn-red {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-divider {
    display: none;
  }

  .form-header {
    padding: 32px 28px 24px;
  }

  .hero-form {
    padding: 0 28px 32px;
  }

  .form-tit {
    font-size: 24px;
    text-align:center;
  }

  /* PROBLEM */
  .pf-problem-left h1 {
    font-size: 30px;
  }
  
  .pf-problem-right{
    top: 375px; 
    
  }

  .pf-stat-box h2 {
    font-size: 44px;
  }

  .pf-stat-box p {
    font-size: 16px;
  }

  .pf-description {
    font-size: 16px;
  }

  .pf-buttons {
    justify-content: center;
  }

  /* MOCKUPS */
  .pf-mockups {
    height: 265px;
  }

  /* MISTAKES */
  .pf-mistakes-heading {
    font-size: 30px;
  }

  .pf-mistakes-sub {
    font-size: 16px;
    margin-top: 1rem;
  }

  .pf-mistakes-grid {
    grid-template-columns: 1fr;
  }

  .pf-mistake-card.full {
    grid-column: span 1;
  }

  .pf-card-cols {
    flex-direction: column;
    gap: 16px;
  }

  .pf-mistake-card h3 {
    font-size: 20px;
  }

  /* PRICING */
  .pf-pricing-title {
    font-size: 30px;
    text-align: start;
  }

  .pf-pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pf-price-card {
    max-width: 100%;
    width: 100%;
  }

  /* SOLUTION */
  .pf-solution-title {
    font-size: 30px;
  }

  .pf-solution-grid {
    grid-template-columns: 1fr;
  }

  .pf-divider {
    display: none;
  }

  .pf-solution-item,
  .pf-solution-item.full,
  .pf-solution-grid .pf-solution-item:nth-child(even) {
    padding: 24px 0;
    padding-left: 0;
    grid-column: span 1;
    border-bottom: 1px solid #d8d8d8;
  }

  .pf-solution-item h4 {
    font-size: 20px;
  }

  .pf-solution-item p {
    font-size: 16px;
  }

  /* RESULTS */
  .pf-results-title {
    font-size: 30px;
  }

  .pf-results-stats {
    grid-template-columns: repeat(1, 1fr);
  }

  .pf-testimonial {
    padding: 24px;
  }

  .pf-testimonial p {
    font-size: 16px;
  }

  .pf-testimonial span {
    font-size: 15px;
  }

  .our-clients .clients-frame {
    grid-template-columns: repeat(3, 1fr);
  }

  /* PROCESS */
  .pf-process-title {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .pf-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pf-process-card h3 {
    font-size: 17px;
  }

  /* FAQ */
  
  .pf-faq-icon {
    width: 28px !important;
  }
  
  .pf-faq-title {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .pf-faq-question {
    font-size: 16px !important;
  }

  .pf-faq-item.is-open .pf-faq-body {
    padding: 0 20px 20px 20px !important;
  }
  
  .pf-faq-plus {
    width: 40px;
  }

  /* CTA */
  .pf-final-cta {
    padding-block: 48px;
  }

  .pf-cta-title {
    font-size: 32px;
  }

  .pf-cta-sub {
    font-size: 16px;
  }

  .pf-cta-phone-label {
    font-size: 16px;
  }

  .pf-cta-phone-number {
    font-size: 24px !important;
  }

  .pf-cta-stat strong {
    font-size: 24px;
  }

  .pf-cta-stat-divider {
    display: none;
  }

  /* PROOF */
  .proof-title {
    font-size: 28px;
  }

  .proof-subtitle {
    font-size: 16px;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .proof-badges img {
    max-width: 280px;
  }
}

/* ----------------------------------------
   480px — Móvil grande
   ---------------------------------------- */
@media (max-width: 480px) {

  /* HERO */
  .hero-title {
    font-size: 34px;
  }

  /* PROBLEM */
  .pf-problem-left h1 {
    font-size: 26px;
  }
  
  .pf-problem-right{
    top: 375px; 
    
    @media(max-width: 395px){
      top: 385px
    }
  }

  .pf-stat-box {
    padding: 20px;
  }

  .pf-stat-box h2 {
    font-size: 36px;
  }

  /* MISTAKES */
  .pf-mistakes-heading {
    font-size: 26px;
  }

  .pf-mistake-card-body {
    padding: 20px 16px 16px;
  }

  .pf-card-footer {
    padding: 14px 16px;
  }

  /* PRICING */
  .pf-pricing-title {
    font-size: 26px;
  }

  .pf-price {
    font-size: 36px;
  }

  /* SOLUTION */
  .pf-solution-title {
    font-size: 26px;
  }

  .pf-solution-sub {
    font-size: 16px;
  }

  /* RESULTS */
  .pf-results-title {
    font-size: 26px;
  }

  .pf-results-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pf-stat-card h3 {
    font-size: 36px;
  }

  .our-clients .clients-frame {
    grid-template-columns: repeat(2, 1fr);
  }

  /* PROCESS */
  .pf-process-grid {
    grid-template-columns: 1fr;
  }

  .pf-process-title {
    font-size: 26px;
  }

  /* FAQ */
  .pf-faq-title {
    font-size: 26px;
  }

  .pf-faq-question {
    font-size: 15px !important;
  }

  /* CTA */
  .pf-cta-title {
    font-size: 26px;
  }

  .pf-cta-phone-number {
    font-size: 20px !important;
  }

  /* PROOF */
  .proof-title {
    font-size: 24px;
  }

  .card-text {
    font-size: 18px;
  }

  .proof-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* ----------------------------------------
   375px — Móvil estándar
   ---------------------------------------- */
@media (max-width: 375px) {

  /* HERO */
  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .form-tit {
    font-size: 20px;
  }

  /* PROBLEM */
  .pf-problem-left h1 {
    font-size: 22px;
  }

  .pf-stat-box h2 {
    font-size: 30px;
  }

  /* MISTAKES */
  .pf-mistakes-heading {
    font-size: 22px;
  }

  /* PRICING */
  .pf-pricing-title {
    font-size: 22px;
  }

  /* SOLUTION */
  .pf-solution-title {
    font-size: 22px;
  }

  /* RESULTS */
  .pf-results-title {
    font-size: 22px;
  }

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

  /* PROCESS */
  .pf-process-title {
    font-size: 22px;
  }

  /* FAQ */
  .pf-faq-title {
    font-size: 22px;
  }

  .pf-faq-question {
    font-size: 13px !important;
  }

  /* CTA */
  .pf-cta-title {
    font-size: 22px;
  }

  /* PROOF */
  .proof-title {
    font-size: 20px;
  }
}

/* ----------------------------------------
   FIXES MOBILE — BOTONES Y DETALLES
   ---------------------------------------- */

@media (max-width: 768px) {

  /* Botones centrados en secciones que los usan centrados */
  .pf-buttons,
  .pf-solution-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* STAT BOX — stack vertical */
  .pf-stat-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* SOLUTION — número más chico */
  .pf-num {
    font-size: 28px !important;
    min-width: 20px !important;
  }

  /* PRICING — una por fila, sin escala */
  .pf-price-card.featured {
    transform: none !important;
  }

  .pf-price-card.featured:hover {
    transform: translateY(-4px) !important;
  }

  /* PROCESS — 1 columna */
  .pf-process-grid {
    grid-template-columns: 1fr !important;
  }

  /* FAQ — body padding ajustado */
  .pf-faq-item.is-open .pf-faq-body {
    padding: 0 16px 20px 16px !important;
  }

  .pf-faq-header {
    padding: 16px !important;
  }

  /* FORM en hero — padding ajustado */
  .form-header {
    padding: 24px 20px 16px !important;
  }

  .hero-form {
    padding: 0 20px 24px !important;
  }

  /* CLIENTS — 2 columnas fijas */
  .our-clients .clients-frame {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }

  /* TESTIMONIALS — sin padding excesivo */
  .pf-testimonial {
    padding: 20px 16px !important;
  }

  .pf-testimonial p {
    font-size: 15px !important;
  }

  /* CTA FINAL — form más compacto */
  .pf-cta-card {
    padding: 8px 0 !important;
  }

  .pf-cta-form {
    padding: 16px !important;
    gap: 12px !important;
  }
}