/* Solución general para prevenir overflow horizontal */
body, html {
  overflow-x: hidden;
  max-width: 100%;
}

/* Asegurar que todos los containers respeten el ancho */
* {
  box-sizing: border-box;
}

/* Específicamente para el rango problemático */
@media only screen and (min-width: 900px) and (max-width: 1024px) {
  
  body, html {
    overflow-x: hidden !important;
    width: 100% !important;
  }
  
  /* Estos son los culpables más comunes: */
  
  /* Las imágenes de portfolio que se salen */
  .span6.widget-span.widget-type-cell.cell_17250388112063-padding.cell_17250388112063-vertical-alignment.dnd-column {
    transform: translateX(0%) !important; /* Era 12%, lo cual puede salirse */
  }
  
  .span6.widget-span.widget-type-cell.cell_17250457327782-padding.cell_17250457327782-vertical-alignment.dnd-column {
    transform: translateX(0%) !important; /* Era -12% */
  }
  
  /* Asegurar que todos los row-fluid no se salgan */
  .row-fluid {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Los containers principales */
  .dnd-section, .row-fluid-wrapper {
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin-block: 0px !important;
  }
  
  #hs_cos_wrapper_widget_1776880152757, #hs_cos_wrapper_widget_1773257682674, #hs_cos_wrapper_widget_1773257682674_ img, #hs_cos_wrapper_widget_1725032228280, #hs_cos_wrapper_module_17250358616773, #hs_cos_wrapper_module_17250463151477, #hs_cos_wrapper_widget_1725045326018, #hs_cos_wrapper_widget_1725047189304{
   margin-block: 0px !important; 
  }
}

header {
  display: none;
}

.pf-make{
 padding-block: 50px; 
}

.pf-make{
  position:relative;
  text-align:center;
  max-width:1320px;
  margin-inline:auto;
}

.pf-header h1{
 font-size: 62px !important;
    font-weight: 300 !important;
    margin: 0;
    font-family: 'Montserrat' !important;
    color: #000 !important;
    text-transform: none !important;
}

.pf-header h1 span{font-weight:500; !important}
.pf-header p{
  margin:20px 0 0;
  font-size:20px;
  font-weight: 300;
  font-family: 'Montserrat';
  
  strong{
    font-weight:500;
  }
}

.pf-make-container{
  max-width:1320px;
  margin:0 auto;
}

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

@media (max-width:1440px){
  
    .pf-mockups{
       height: 430px;
    }
  }
  
  @media (max-width:1270px){
  
  .pf-mockups{
     height: 380px;
  }
  
  }

  @media(max-width:1024px){
    .pf-mockups{
      height: 310px;
    }
  }

  @media(max-width:868px){
    .pf-mockups{
      height: 290px;
    }
  }

  @media(max-width:660px){
    .pf-mockups{
      height: 265px;
    }
  }

   @media(max-width:450px){
    .pf-mockups{
      height: 195px;
    }
  }

/* TODAS LAS IMAGENES */
.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));
}

/* IZQUIERDA */

.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;
}

/* CENTRO */

.pf-mockups img:nth-child(4){
  transform:translateX(-50%) scale(0.90);
  z-index:5;
}

/* DERECHA */

.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;
}

.pf-trust {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
  gap: 28px;
}

.pf-trust-left {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 20px;
  flex-shrink: 0;
}

.pf-trust-left h2 {
  font-size: 58px;
  font-family: 'Montserrat';
  font-weight: 500;
  margin: 0;
}

.pf-trust-left p {
  font-size: 18px;
  font-family: 'Montserrat';
  margin: 0;
  color: #6b7280;
}

.pf-trust-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pf-trust-cta::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #ff5a36;
  transition: all .3s ease-in-out;
  z-index: 1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.pf-trust-cta:hover::before {
  width: 355px;
}

.pf-trust-cta a {
  position: relative;
  z-index: 2;
  height: 64px;
  min-width: 355px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #f26b52;
  font-family: 'Montserrat';
  font-size: 16px;
  font-weight: 500;
  padding-left: 22px;
}

.pf-trust-cta a:hover {
  color: #fff !important;
}

.pf-trust-cta-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-trust-cta-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.pf-trust-cta-text {
  position: relative;
  z-index: 2;
  margin-left: 14px;
  white-space: nowrap;
  line-height: 1;
}

.pf-trust-right img {
  max-height: 60px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .pf-trust {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .pf-trust-left {
    padding-left: 0;
    justify-content: center;
  }

  .pf-trust-cta:hover::before {
    width: 320px;
  }

  .pf-trust-cta a {
    min-width: 320px;
  }
}

@media (max-width: 767px) {
  .pf-trust {
    gap: 20px;
  }

  .pf-trust-left {
    flex-direction: column;
    gap: 8px;
  }

  .pf-trust-left h2 {
    font-size: 48px;
  }

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

  .pf-trust-cta,
  .pf-trust-cta a {
    width: 100%;
    max-width: 320px;
    min-width: unset;
  }

  .pf-trust-cta:hover::before {
    width: 100%;
  }
}

@media (max-width:1270px){

.pf-header h1{
  font-size:48px !important;
}

.pf-header p{
  font-size:18px !important;
}
}

@media (max-width:900px){

.pf-hero{
  padding:0 16px 70px !important;
}

.pf-header{
  margin-bottom:40px !important;
}

.pf-header h1{
  font-size:36px !important;
  line-height:1.2;
}

.pf-header p{
  font-size:16px !important;
}
  
  .pf-trust{
  flex-direction:column;
  gap:20px;
  text-align:center;
}

.pf-trust-left{
  justify-content:center;
}

.pf-trust-left h2{
  font-size:48px;
}

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

.pf-trust-right{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.pf-trust-right img{
  max-height:40px;
  width: 397px !important; 
}
}


/* MOBILE */

@media (max-width:900px){

/* hacemos las pantallas un poco más chicas */
.pf-mockups img{
  width:clamp(70px, 18vw, 200px);
}

/* comprimimos el abanico */

.pf-mockups img:nth-child(1){
  transform:translateX(-260%);
}

.pf-mockups img:nth-child(2){
  transform:translateX(-190%);
}

.pf-mockups img:nth-child(3){
  transform:translateX(-115%);
}

.pf-mockups img:nth-child(4){
  transform:translateX(-50%);
}

.pf-mockups img:nth-child(5){
  transform:translateX(15%);
}

.pf-mockups img:nth-child(6){
  transform:translateX(90%);
}

.pf-mockups img:nth-child(7){
  transform:translateX(165%);
}

.pf-make-title{
  font-size:38px;
}

}

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

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


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

.dnd_area-row-1-padding{  
    background: radial-gradient(ellipse 631px 357px at center 290px, #fff 0, #fff 74%, hsla(0, 0%, 84%, 0) 262%), url(https://4773320.fs1.hubspotusercontent-na1.net/hubfs/4773320/lines.png) !important;
    background-position: center 95% !important;
    background-repeat: no-repeat !important;
    padding-inline: 0;
    padding-top:60px !important;
}


.row-fluid-wrapper.row-depth-1.row-number-1.dnd_area-row-0-max-width-section-centering.dnd_area-row-0-background-color.dnd_area-row-0-background-layers.dnd-section.dnd_area-row-0-padding.dnd_area-row-0-hidden {
  position: fixed;
  width: 100%;
  z-index: 900;
  
  .row-fluid {
    @media (max-width: 900px) {
      display: flex !important;
      flex-direction: row !important;
      justify-content: space-between;
      
      .span6.widget-span.widget-type-cell.dnd-column {
        align-self: center;
        width: 100%;
      }
      
      .row-fluid-wrapper.row-depth-1.row-number-3.dnd-row {
        .row-fluid {
          display: flex;
          justify-content: right;
        }
      }
      
      .phone-header {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
      }
    }
  }
}

.portfolio {
   font-weight: 700;
   font-variation-settings: "wght" 700;
   border-bottom: 1px solid black;
}

.portfolio:hover {
  border-bottom: 1px solid #303030;
}



.dnd_area-row-4-padding {
  padding: 20px !important;
}

.row-number-12{
 display: block !important; 
}



.row-number-16,
.row-number-27,
.row-number-46,
.row-number-54,
.row-number-60 {
  font-weight: 400;
}

.item {
    margin-top: 30px;
    width: 100%;
    background: #f9f9f9;
    margin-bottom: 20px;
    position: relative;
    padding-top: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.item h6 {   
    font-family: Mulish;
    font-variation-settings: "wght" 700;
    font-size: 18px;
}

.item p {
    border-top: 1px solid #e3e3e3;
    font-variation-settings: "wght" 300;
    font-size: 18px;
    width: 100%;
    text-align: center;
}

.item .img-item {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 0;
    left: 50%;
}


@media (max-width: 1000px) {
  .for-phone .logo .logo-img-phone {
    width: 50px;
  }

  .for-phone {
    .container-fluid {

      // padding: 0 15px;

      .burger-menu {
        order: 1;
      }

      .headphone {
        display: block;
      }
    }
  }
}

@media (max-width: 1000px) {
  header {
    .menu-holder {
      width: 100%;
    }
  }

  .banner {
    display: none;
  }

  .for-phone {
    display: flex;

    .container-fluid {
      .logo {
        .logo-img-scroll {
          display: none;
        }
      }
    }
  }
}

@media (max-width: 480px) {
  .for-phone .container-fluid .burger-menu-content {
    // background: #f9f9f9 url("../images/home/hero-mobile.svg") 0 90% no-repeat;

    .decorative-burger-menu {
      margin: 24% calc(-50vw + 82%) 0px;
    }
  }
}

/* Buttons */
.socials {
  display: flex;
  gap: 10px;
}

.socials-m, .logo-frame-m {
  display: none;
}
/* blue btn */
.lineTitleProject {
  display: flex;
  width: 72px;
  border-top: 1px solid #333;
  margin-bottom: 10px;
}

.actions {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  padding-top: 0.5rem;
}

.actions .portfolio-circle-button a {
  position: relative;
  color: #1994ff !important;
  display: flex;
  align-items: center;
  padding: 10px;
  text-decoration: none !important;
  overflow: hidden; /* Prevent overflow of the expanding circle */
  height: 40px; /* Set height to match the circle's initial size */
  width: 100%;
  gap: 1rem;
  z-index: 20;
  
  @media (max-width: 1024px) and (min-width: 768px) {
    width: 124%;
  }
}

.actions .portfolio-circle-button a:hover {
  text-decoration: none !important;
}


.actions .portfolio-circle-button a:hover .circleButton {
  width: 8rem;
  border-radius: 18px;
}

.demo p {
  position: relative;
  z-index: 1; /* Ensure text stays on top of the circle */
  margin-bottom: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.lineButton {
  display: flex;
  background-color: #1994ff !important;
  width: 30px !important;
  height: 1px;
}

.cell_17250358616762-padding {
 @media(max-width:900px){
   display: none !important;
   padding: 0 !important;
  }
}

/* white btn */

.lineTitleProjectW {
  display: flex;
  width: 72px;
  border-top: 1px solid #fff;
  margin-bottom: 10px;
}

.actions .portfolio-circle-buttonW a {
  color: #fff !important;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  padding: 10px;
  text-decoration: none !important;
  z-index: 20;
  gap: 1rem;
  
  @media (max-width: 1024px) and (min-width: 768px) {
    width: 138%;
  }
}

.lineButtonW {
  display: flex;
  background-color: #fff !important;
  width: 30px !important;
  height: 1px;
}

/* Pinyerd */
/* .row-number-6 {
  background: linear-gradient(1turn, #fafafa, #f5f5f5);
} */

.headerPinyerd {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.row-number-12{
 @media(max-width: 900px){
   padding:0;
  }
}
.row-number-17{
 padding: 0; 
}

.row-number-12, .row-number-17, .row-number-21, .row-number-29, .row-number-33, .row-number-37, .row-number-44, .row-number-49, .row-number-42{
    width: 100%;
    @media(max-width: 600px){
      padding: 0;
    }
}

#hs_cos_wrapper_widget_1773257682674, #hs_cos_wrapper_widget_1773257682674_, .row-number-10,{
 display: flex;
  padding: 0;
  margin: 0;
  height: fit-content;
}


#hs_cos_wrapper_widget_1773257682674 #hs_cos_wrapper_widget_1773257682674_ img{
 margin-bottom: -1px; 
}

.cell_17250468648213-padding, .cell_17250399193092-padding, .cell_17250447928042-padding, .cell_17250463151472-padding, #hs_cos_wrapper_module_17250399193102, #hs_cos_wrapper_module_1725046864822, .cell_17250322173873-padding{
  @media(max-width: 900px){
    padding: 0 !important;
  }
  
}

#hs_cos_wrapper_module_17250399193094{
 @media(max-width: 900px){
   width: 80%;
  }
}

.hero-badges {
  display: none !important;
}

.portfolio-circle-button, .portfolio-circle-buttonW {
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
}

.portfolio-circle-button:before {
    position: absolute;
    content: "";
    width: 64px;
    height: 64px;
    background: #1993ff33;
    border-radius: 64px;
    z-index: 1;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-circle-buttonW:hover:before {
  width: 11rem;
}

.portfolio-circle-buttonW:before {
    position: absolute;
    content: "";
    width: 64px;
    height: 64px;
    background: #ffffff33;
    border-radius: 64px;
    z-index: 1;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.portfolio-circle-button:hover:before {
  width: 11rem;
}

.portfolio-circle-button a:hover {
  color: #fff !important;
  z-index: 20;
}

@media only screen and (max-width: 900px) { 
  
  
  .dnd-section .row-fluid {
    display: flex !important;
    flex-direction: column !important;
  }

  .dnd-section .span6 {
    width: 100% !important;
  }

  .dnd-section img.hs-image-widget {
    height: auto !important;
  }
  
   #hs_cos_wrapper_widget_1776880129242{
    padding: 0 !important; 
    }
  
  #hs_cos_wrapper_widget_1773257717604{
   display: none !important; 
  }
  
  .row-number-12{
     max-height:none;
  }
 
  [class*="dnd-row"] {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .cell_17250322173874-padding {
    display: block !important;
    width: 100% !important;
  }

  .row-number-14 {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .text-wrap {
    display: none !important;
  }
  .reg-menu-list li {
    margin-left: 0 !important;
  }
  
  .burger-menu-content p {
    font-weight: 500 !important;
  }
  
  #nav-phone {
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 2rem;
  }
   
  
  .socials {
    display: none;
  }
  
  .socials-m, .logo-frame-m {
    display: flex;
  }
  
  .demo {
   display: none;
  }
  
  .socialsM {
    gap: 1rem;
    display: flex;
  }
  
  .socialsM svg {
    width: 27px;
    height: 27px;
  }
  
  .dnd_area-row-7-background-layers {
    background-position: right center !important;
  }
  
  .dnd_area-row-14-padding {
    background-position: left center !important;
  }
  
  .info, .sections, .copyright-links {
    flex-direction: column !important;
  }
  
  .callUsNowM, .scheduleCallM {
    display: none !important;
  }
  
  .content-info div ul li a {
    text-align: center !important;
  }
  
  .location img {
    display: none !important;
  }
  
  .services, .quick-links, .links, .sections, .copyright, .copyright p, .cta-actions {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    gap: 30px;
  }
  
  .copyright {
    margin-top: 4rem !important;
  }
  
  .copyright p {
    gap: 3px !important;
  }
  
  .copyright p span {
    color: transparent;
    height: 0px;
  }
  
  .ourServiceUl , .quick-links ul {
    margin: 0 !important;
  }
  
  .ourServiceUl li, .quick-links ul li {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  
  .ourServiceUl li a p, .quick-service ul li a {
    margin-top: 10px;
    margin-bottom: auto;
  }
  
  .line {
    margin-top: 10px !important;
    margin-bottom: 3rem !important;
  }
}

.burger-menu {
    width: 28px;
    height: 8px;
    border-radius: 2px;
    position: relative;
    transition: all ease-in-out 500ms;
    display: block;
    z-index: 1000;
    right: 15px;
    padding: 10px 0;
    padding-right: 30px;
    cursor: pointer;

    @media (max-width: 600px) {
        right: 0;
    }

    @media (max-width: 390px) {
        right: 2px;
    }
}


.logoM {
    z-index: 201;
}

.reg-menu-list, .dd ul {
  list-style-type: none;
  padding-left: 0;
}

.reg-menu-list li a {
  color: #303030;
}

/* Hide the dropdown menu by default */
.dd ul {
    visibility: hidden;
    opacity: 0;
    height: 0;
    left: 0;
    margin: 0;
    list-style: none;
    z-index: 100; /* Ensure it appears above other content */
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
}

/* Display the dropdown menu when its parent <li> with class 'dd' has the 'active' class */
.dd.active > ul {
    visibility: visible;
    opacity: 1;
    height: auto; /* Adjust height based on content */
}

/* Style dropdown links */
.dd ul li {
  margin: 0px !important;
}

li:last-of-type a:hover {
  border-radius: 0px 0px 20px 20px;
}

.dd ul li a {
    padding: 10px;
    display: block;
    text-decoration: none;
    color: #303030; /* Link color */
}

/* Highlight color on hover */
.dd ul li a:hover {
    background: #ddd;
}

.burger-menu::before,
.burger-menu::after {
    height: 2px;
    width: 28px;
    background: #303030;
    display: block;
    position: absolute;
    content: "";
    transition: all ease-in-out 500ms;
}

.burger-menu::before {
    top: 6px;
}

.burger-menu::after {
    bottom: 0px;
}

.burger-x::before {
    transform: rotate(45deg);
    top: 6px;
}

.burger-x::after {
    transform: rotate(-45deg);
    bottom: 12px;
}

.burger-regular::before {
    opacity: 1;
    transform: rotate(0deg);
}

.burger-regular::after {
    opacity: 1;
    transform: rotate(0deg);
}

.burger-menu-content {
    transform: scaleY(0);
    height: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f9f9f9;
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 120px 30px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.25s ease-in-out;
    transform-origin: top;
}

.burger-menu-content.show-menu {
    transform: scaleY(1);
    height: 100vh;
}

.decorative-burger-menu {
    width: 100vw;
    margin: 2% calc(-50vw + 50%) 0;
    -webkit-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
}

@media only screen and (min-width: 900px) and (max-width: 960px) {
  .row-fluid-wrapper.row-depth-1.row-number-1.dnd-section {
    display: none;
  }

  .dnd_area-row-1-hidden {
   padding-top: 75px !important;
   margin-top: 0 !important;
   display: flex !important;
  }
}

.info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.services ul, .quick-links ul, .social ul {
  list-style-type: none;
  padding-left: 0;
}

.services ul li {
  margin-left: 0 !important;
}

.sections {
  display: flex;
  gap: 1rem;
}

.sections a:hover, .copyright a:hover {
  text-decoration: none;
  color: #1994ff;
}

.services h3, .quick-links h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 39.01px;
  text-align: left;
}

.ourServiceUl li a {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin-left: 0 !important;
}

.ourServiceUl li a, .quick-links ul li a {
  color: #303030;
}

.ourServiceUl li a:hover, .quick-links ul li a:hover  {
  text-decoration: none;
  color: #1994ff;
}

.ourServiceUl li a p {
    margin-top: 4px;
    margin-bottom: auto;
}

.testingCarrousel img:last-child {
  display: block;  /* Ensure it's displayed */
  max-height: 50px;  /* Adjust this to fit your design */
  width: auto;
}

.address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 2rem;
}

.address p {
  margin-bottom: 0;
  text-align: center;
}

.copyright-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.social ul {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  margin-bottom: 0;
}

.social ul li:hover, .social ul li a:hover {
  fill: #1994ff;
}

.social ul li:hover {
  a {
    svg {
      path {
        fill: #1994FF !important;
        transition: fill 0.5s ease;
      }
    }
  }
}

.line {
  width: 100% !important;
  background: none;
  border-bottom: 0.5px solid #d3d3d3 !important;
  margin: 50px auto;
}

.copyright {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 1rem;
}

.copyright p {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.copyright span a:hover  {
  text-decoration: none;
  color: #1994ff !important;
}

.sections a {
  color: #303030;
}

.cta-section {
  background-image: url('../images/cta-btn-bg-img.png');
  background-position: 50% 35%;
  background-repeat: no-repeat;
  background-size: cover;

  .cta-actions {
    padding: 50px 0;
        display: flex;
        justify-content: space-between;
        max-width: 675px;
        width: 90%;
        margin: 0 auto;
  }

  /* BOTÓN BASE */

.call-btn {
  width: 290px;
  height: 70px;
  background: #f4f4f4;
  border-radius: 35px;
  display: flex;
  align-items: center;
  position: relative;
  transition: 1s;
  border: 1px solid #1994ff;

  .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: 20px;
    color: #1994ff;
    position: absolute;
    left: 100px;
    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: 330px;
  border: 1px solid #f04e30;

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

    p {
      left: 20px;
    }
  }
}

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

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

/* MOBILE */

@media (max-width: 600px) {
  .call-btn {
    width: 250px;
    height: 50px;
    border-radius: 24px;

    .svg-frame {
      width: 50px;
      height: 50px;
    }

    p {
      font-size: 14px;
      left: 80px;
    }

    &:hover {
      .svg-frame {
        transform: translate(200px); // 🔑 distinto en mobile
      }

      p {
        left: 40px;
      }
    }
  }

  .call-btn.call-btn-red {
    width: 250px;
    
    p {
      font-size: 14px;
      left: 60px;
    }

    &:hover {
      .svg-frame {
        transform: translateX(200px);
      }

      p {
        left: 30px;
      }
    }
  }
}

}
@media only screen and (min-width: 900px) and (max-width: 1024px) {
  .dnd_area-row-3-padding .row-fluid, .dnd_area-row-7-background-layers .row-fluid, .dnd_area-row-12-background-layers .row-fluid,
  .dnd_area-row-17-background-layers .row-fluid {
    display: flex;
    flex-direction: column !important;
    
  }
  
  .dnd_area-row-5-background-layers .row-fluid, .dnd_area-row-10-background-layers .row-fluid, .dnd_area-row-14-background-layers .row-fluid,
  .dnd_area-row-19-background-layers .row-fluid {
    display: flex;
    flex-direction: column-reverse !important;
  }
  
  .span6.widget-span.widget-type-cell.cell_17250322173873-hidden.cell_17250322173873-padding.dnd-column.cell_17250322173873-vertical-alignment,
  .span6.widget-span.widget-type-cell.cell_17250322173874-padding.dnd-column.cell_17250322173874-vertical-alignment,
  .span6.widget-span.widget-type-cell.cell_17250358616763-padding.cell_17250358616763-vertical-alignment.dnd-column,
  .row-fluid-wrapper.row-depth-1.row-number-14.dnd-row,
  .span6.widget-span.widget-type-cell.cell_17250358616762-padding.cell_17250358616762-vertical-alignment.cell_17250358616762-hidden.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250388112062-padding.cell_17250388112062-vertical-alignment.cell_17250388112062-hidden.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250388112063-padding.cell_17250388112063-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_1725039919309-vertical-alignment.cell_1725039919309-padding.dnd-column, 
  .span6.widget-span.widget-type-cell.cell_17250399193092-vertical-alignment.cell_17250399193092-hidden.cell_17250399193092-padding.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250447928042-hidden.cell_17250447928042-vertical-alignment.cell_17250447928042-padding.dnd-column, 
  .span6.widget-span.widget-type-cell.cell_17250447928043-padding.cell_17250447928043-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250457327782-padding.cell_17250457327782-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250457327783-hidden.cell_17250457327783-padding.cell_17250457327783-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250463151472-vertical-alignment.cell_17250463151472-hidden.cell_17250463151472-padding.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250463151473-padding.cell_17250463151473-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250468648212-padding.cell_17250468648212-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250468648213-hidden.cell_17250468648213-padding.dnd-column.cell_17250468648213-vertical-alignment {
    width: 100% !important;
    margin-top: 24px !impotant;
  }
  
  .dnd_area-row-7-background-layers {
    background-image: url("https://4773320.fs1.hubspotusercontent-na1.net/hubfs/4773320/Portfolio%20Alpha/JAKE%20KAY.png") !important;
  }

  .dnd_area-row-14-background-layers {
    background-image: url("https://4773320.fs1.hubspotusercontent-na1.net/hubfs/4773320/Portfolio%20Alpha/Multi%20Unit%20X-1.png") !important;
  }
  
  .span6.widget-span.widget-type-cell.cell_17250388112063-padding.cell_17250388112063-vertical-alignment.dnd-column {
    height: 430px;
    background-position: top -104px left;
    transform: translateX(12%);
    background-image: url("https://4773320.fs1.hubspotusercontent-na1.net/hubfs/4773320/Portfolio%20Alpha/Jake%20Kayimg.png") !important;
    @media(max-width: 1024px){
      background-image: none !important;
    }
  }
  
  .span6.widget-span.widget-type-cell.cell_17250457327782-padding.cell_17250457327782-vertical-alignment.dnd-column {
    height: 430px;
    background-position: top -104px right;
    transform: translateX(-12%);
    background-image: url("https://4773320.fs1.hubspotusercontent-na1.net/hubfs/4773320/Portfolio%20Alpha/Images.png") !important;
  }
  
  .span6.widget-span.widget-type-cell.cell_17250322173874-padding.dnd-column.cell_17250322173874-vertical-alignment,
  .span6.widget-span.widget-type-cell.cell_17250358616762-padding.cell_17250358616762-vertical-alignment.cell_17250358616762-hidden.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250399193092-vertical-alignment.cell_17250399193092-hidden.cell_17250399193092-padding.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250447928043-padding.cell_17250447928043-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250457327783-hidden.cell_17250457327783-padding.cell_17250457327783-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250463151473-padding.cell_17250463151473-vertical-alignment.dnd-column,
  .span6.widget-span.widget-type-cell.cell_17250468648213-hidden.cell_17250468648213-padding.dnd-column.cell_17250468648213-vertical-alignment {
    margin: 0px !important;
  }
  
  #hs_cos_wrapper_widget_1725032228280,
  #hs_cos_wrapper_module_17250358616773,
  #hs_cos_wrapper_module_17250399193094,
  #hs_cos_wrapper_widget_1725045326018,
  #hs_cos_wrapper_module_17250463151477,
  #hs_cos_wrapper_widget_1725047189304 {
    padding: 0 20px !important;
  }
  
  .row-number-19 {
    width:100% !important;
  }
}

.dnd_area-row-16-hidden {
  (max-width: 900px) {
        display: block !important;
    }
}

.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;

    
  }
}

.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;
    }
  }
}

.pf-make-title{
  font-family: Montserrat;
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
}

/* DOTS */
.pf-make-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:40px;
}

.pf-make-dots .dot{
  width:10px;
  height:10px;
  border-radius:50%;
}

.dot.red{background:#ff4d4d;}
.dot.yellow{background:#ffc400;}
.dot.orange{background:#ff9f1c;}
.dot.blue{background:#1994ff;}

/* ============================================================
   TABLET FIX: 900px – 1024px
   Todos los proyectos: texto arriba, imagen abajo (column)
   ============================================================ */

@media only screen and (min-width: 900px) and (max-width: 1024px) {
  
  .row-number-6{
   padding-top: 50px; 
    .row-fluid{
     overflow-x: visible !important; 
    }
  }

  /* 1. MOSTRAR TÍTULO (estaba oculto por .text-wrap { display: none } del mobile) */
  .text-wrap {
    display: block !important;
  }

  /* 2. TODAS las secciones de proyecto en columna */
  .dnd-section > .row-fluid {
    display: flex !important;
    flex-direction: column !important;
  }

  /* 3. Cada columna ocupa el 100% del ancho */
  .dnd-section .span6 {
    width: 100% !important;
    margin: 0 !important;
  }

  /* 4. Las secciones con imagen a la izquierda y texto a la derecha
        también van en column (texto arriba, imagen abajo) */
  .dnd_area-row-3-padding > .row-fluid,
  .dnd_area-row-5-padding > .row-fluid,
  .dnd_area-row-6-padding > .row-fluid,
  .dnd_area-row-7-background-layers > .row-fluid,
  .dnd_area-row-9-background-layers > .row-fluid,
  .dnd_area-row-10-margin > .row-fluid,
  .dnd_area-row-11-background-layers > .row-fluid,
  .dnd_area-row-12-padding > .row-fluid,
  .dnd_area-row-13-background-layers > .row-fluid,
  .dnd_area-row-14-background-layers > .row-fluid,
  .dnd_area-row-17-padding > .row-fluid,
  .dnd_area-row-19-background-image > .row-fluid,
  .dnd_area-row-20-padding > .row-fluid,
  .dnd_area-row-21-background-image > .row-fluid,
  .dnd_area-row-23-background-image > .row-fluid,
  .dnd_area-row-24-background-image > .row-fluid {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .dnd_area-row-4-padding{
   padding: 0px !important; 
  }

  /* 5. Texto siempre primero (order) — para secciones donde la imagen venía antes */
  .dnd-section .span6:has(.text-wrap),
  .dnd-section .span6:has(.headerPinyerd) {
    order: -1 !important;
  }

  /* 6. Imágenes ocupan el ancho completo y no se estiran */
  .dnd-section img.hs-image-widget {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0;
  }

  /* 7. Eliminar transforms de imagen que causaban scroll horizontal */
  .span6.widget-span.widget-type-cell.cell_17250388112063-padding,
  .span6.widget-span.widget-type-cell.cell_17250457327782-padding {
    transform: none !important;
    background-image: none !important;
    height: auto !important;
  }

  /* 8. Padding interno de los wrappers de imagen */
  #hs_cos_wrapper_widget_1725032228280,
  #hs_cos_wrapper_module_17250358616773,
  #hs_cos_wrapper_module_17250399193094,
  #hs_cos_wrapper_widget_1725045326018,
  #hs_cos_wrapper_module_17250463151477,
  #hs_cos_wrapper_widget_1725047189304 {
    padding: 0 20px !important;
  }

  /* 9. row-number-19 full width */
  .row-number-19,
  .row-number-21 {
    width: 100% !important;
  }

  /* 10. Mostrar las columnas ocultas en tablet 
         (las hidden que contienen las imágenes) */
  .cell_17250358616762-hidden,
  .cell_17250399193092-hidden,
  .cell_17250447928042-hidden,
  .cell_17250463151472-hidden,
  .cell_17250388112062-hidden,
  .cell_17250322173873-hidden {
    display: block !important;
    padding: 0 !important;
  }

  /* 11. Socials visibles en tablet (igual que desktop) */
  .socials {
    display: flex !important;
  }

  .socials-m,
  .logo-frame-m {
    display: none !important;
  }

  /* 12. Acciones (botones View Live / Contact Us) visibles */
  .demo {
    display: flex !important;
  }
}