.vf-blog-page{
  background:#fff;
  overflow:hidden;
}

.vf-blog-hero{
  padding:64px 0 20px;
}

.vf-blog-hero-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:32px;
  align-items:end;
}

.vf-blog-title h1{
  margin:0;
  color:#292933;
  font-size:clamp(2.3rem,4vw,3.7rem);
  line-height:1;
  font-weight:400;
  letter-spacing:-.055em;
}

.vf-blog-title p{
  margin:4px 0 0;
  color:#666674;
  font-size:1rem;
}

.vf-blog-search-box{
  display:grid;
  grid-template-columns:1fr 54px;
  border:2px solid #dedee6;
  border-radius:999px;
  overflow:hidden;
  background:#fff;
}

.vf-blog-search-box input{
  width:100%;
  border:0;
  outline:0;
  padding:13px 18px;
  font-family:inherit;
  font-size:.95rem;
}

.vf-blog-search-box button{
  border:0;
  background:#0d0d16;
  color:#fff;
  cursor:pointer;
  font-size:1rem;
}

.vf-blog-list-section{
  padding:24px 0 70px;
}

.vf-blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:42px 34px;
}

.vf-blog-card{
  position:relative;
  background:#fff;
  cursor:pointer;
  transition:.25s ease;
}

.vf-blog-card:hover{
  transform:translateY(-5px);
}

.vf-blog-card-img{
  height:210px;
  background:#c8c8cc;
  overflow:hidden;
}

.vf-blog-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.vf-blog-card-content{
  min-height:128px;
  padding:16px 22px 26px;
  color:#fff;
  position:relative;
}

.vf-blog-card-content h2{
  margin:0 0 4px;
  font-size:1.32rem;
  line-height:1.05;
  font-weight:500;
  letter-spacing:-.035em;
  color:#fff;
}

.vf-blog-card-content span{
  display:block;
  font-size:.86rem;
  font-style:italic;
  font-weight:700;
  line-height:1.2;
}

.vf-blog-card-content small{
  display:block;
  margin-top:7px;
  font-size:.68rem;
  color:rgba(255,255,255,.78);
}

.vf-blog-card-content a{
  position:absolute;
  left:50%;
  bottom:-15px;
  transform:translateX(-50%);
  min-width:116px;
  padding:7px 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid #262630;
  color:#262630;
  text-align:center;
  font-size:.78rem;
  font-weight:700;
}

.vf-blog-pink .vf-blog-card-content{
  background:linear-gradient(135deg,#e6007e,#aa3ca0);
}

.vf-blog-blue .vf-blog-card-content{
  background:linear-gradient(135deg,#2d54ad,#c23a9d);
}

.vf-blog-red .vf-blog-card-content{
  background:linear-gradient(135deg,#ef1551,#52286f);
}

.vf-blog-aqua .vf-blog-card-content{
  background:linear-gradient(135deg,#2d54ad,#00a9b7);
}

.vf-blog-green .vf-blog-card-content{
  background:linear-gradient(135deg,#7bb925,#00a9b7);
}

.vf-blog-purple .vf-blog-card-content{
  background:linear-gradient(135deg,#e6007e,#52286f);
}

.vf-blog-pagination{
  margin:62px auto 0;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  color:#555563;
}

.vf-blog-pagination button{
  border:0;
  background:none;
  color:#555563;
  font-size:1.4rem;
  cursor:pointer;
}

.vf-blog-pagination span{
  font-size:1.8rem;
  font-weight:300;
}

.vf-blog-empty{
  max-width:680px;
  margin:40px auto;
  padding:36px;
  border-radius:28px;
  background:#f7f7fb;
  text-align:center;
}

.vf-blog-empty h2{
  margin:0 0 10px;
  color:#292933;
  font-size:2rem;
  font-weight:400;
}

.vf-blog-empty p{
  margin:0 0 20px;
  color:#666674;
}

.vf-blog-empty a{
  display:inline-flex;
  padding:12px 24px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--vf-purple),var(--vf-pink));
  color:#fff;
  font-weight:900;
}

.vf-blog-purpose{
  margin-top:0;
}

@media(max-width:980px){
  .vf-blog-hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .vf-blog-search{
    max-width:520px;
    width:100%;
    margin:auto;
  }

  .vf-blog-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .vf-blog-hero{
    padding:46px 0 18px;
  }

  .vf-blog-hero-grid{
    text-align:left;
    gap:24px;
  }

  .vf-blog-title h1{
    font-size:clamp(2.4rem,11vw,3.1rem);
  }

  .vf-blog-title p{
    font-size:1.08rem;
    line-height:1.45;
  }

  .vf-blog-search-box{
    grid-template-columns:1fr 56px;
    border-radius:18px;
  }

  .vf-blog-search-box input{
    min-height:54px;
    font-size:1rem;
  }

  .vf-blog-grid{
    grid-template-columns:1fr;
    gap:44px;
  }

  .vf-blog-card{
    border-radius:22px;
    overflow:visible;
  }

  .vf-blog-card-img{
    height:240px;
    border-radius:22px 22px 0 0;
  }

  .vf-blog-card-content{
    min-height:150px;
    padding:20px 22px 32px;
    border-radius:0 0 22px 22px;
  }

  .vf-blog-card-content h2{
    font-size:1.55rem;
  }

  .vf-blog-card-content span{
    font-size:1rem;
  }

  .vf-blog-card-content small{
    font-size:.8rem;
  }

  .vf-blog-card-content a{
    bottom:-17px;
    min-width:130px;
    font-size:.9rem;
  }

  .vf-blog-pagination{
    margin-top:56px;
  }
}


.vf-blog-note-page{
  background:#fff;
  overflow:hidden;
}

.vf-blog-note-hero{
  padding:58px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(230,0,126,.10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0,169,183,.12), transparent 38%),
    #fbfbff;
}

.vf-blog-note-back{
  display:inline-flex;
  margin-bottom:22px;
  color:var(--vf-purple);
  font-weight:900;
  font-size:.92rem;
}

.vf-blog-note-hero-card{
  display:grid;
  grid-template-columns:1fr .88fr;
  gap:44px;
  align-items:center;
}

.vf-blog-note-cover{
  overflow:hidden;
  border-radius:34px;
  box-shadow:0 24px 60px rgba(20,20,40,.16);
  background:#ddd;
}

.vf-blog-note-cover img{
  width:100%;
  height:440px;
  object-fit:cover;
}

.vf-blog-note-cat{
  display:inline-flex;
  margin-bottom:14px;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(230,0,126,.10);
  color:var(--vf-pink);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.vf-blog-note-title h1{
  margin:0 0 18px;
  color:#292933;
  font-size:clamp(2.5rem,5vw,4.6rem);
  line-height:1;
  font-weight:400;
  letter-spacing:-.06em;
}

.vf-blog-note-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:#666674;
  font-size:1rem;
}

.vf-blog-note-meta span{
  font-style:italic;
  font-weight:700;
}

.vf-blog-note-content-section{
  padding:72px 0;
}

.vf-blog-note-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:54px;
  align-items:start;
}

.vf-blog-note-content{
  max-width:760px;
}

.vf-blog-note-content h1,
.vf-blog-note-content h2,
.vf-blog-note-content h3{
  color:#292933;
  line-height:1.12;
  letter-spacing:-.035em;
}

.vf-blog-note-content h2{
  margin:34px 0 14px;
  font-size:2.1rem;
  font-weight:500;
}

.vf-blog-note-content h3{
  margin:28px 0 12px;
  font-size:1.55rem;
}

.vf-blog-note-content p{
  margin:0 0 20px;
  color:#555563;
  font-size:1.08rem;
  line-height:1.76;
}

.vf-blog-note-content ul,
.vf-blog-note-content ol{
  margin:0 0 24px;
  padding-left:24px;
  color:#555563;
  font-size:1.05rem;
  line-height:1.7;
}

.vf-blog-note-content img{
  width:100%;
  height:auto;
  margin:28px 0;
  border-radius:24px;
  box-shadow:0 16px 34px rgba(20,20,40,.12);
}

.vf-blog-note-content blockquote{
  margin:34px 0;
  padding:26px 30px;
  border-left:7px solid var(--vf-pink);
  border-radius:18px;
  background:#f7f7fb;
  color:#292933;
  font-size:1.22rem;
  line-height:1.55;
  font-style:italic;
}

.vf-blog-note-sidebar{
  position:sticky;
  top:calc(var(--vf-header-height) + 28px);
  display:grid;
  gap:22px;
}

.vf-blog-note-box{
  padding:28px 26px;
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 44px rgba(20,20,40,.12);
  border-top:7px solid var(--vf-pink);
}

.vf-blog-note-box h3{
  margin:0 0 10px;
  color:#292933;
  font-size:1.35rem;
  line-height:1.15;
}

.vf-blog-note-box p{
  margin:0 0 18px;
  color:#60606d;
  font-size:.98rem;
  line-height:1.58;
}

.vf-blog-note-box a{
  display:inline-flex;
  padding:12px 20px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--vf-purple),var(--vf-pink));
  color:#fff;
  font-weight:900;
  font-size:.88rem;
}

.vf-blog-note-comments{
  padding:72px 0;
  background:#f8f8fc;
}

.vf-blog-note-comments-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
}

.vf-blog-note-comments h2{
  margin:0 0 22px;
  color:#292933;
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:400;
  letter-spacing:-.05em;
}

.vf-blog-note-comment{
  display:flex;
  gap:16px;
  padding:20px 0;
  border-bottom:1px solid #e7e7ef;
}

.vf-blog-note-comment img{
  width:54px;
  height:54px;
  border-radius:50%;
  object-fit:cover;
}

.vf-blog-note-comment strong{
  display:block;
  margin-bottom:4px;
  color:var(--vf-purple);
  font-size:1rem;
}

.vf-blog-note-comment p,
.vf-blog-note-no-comments{
  margin:0;
  color:#555563;
  font-size:1rem;
  line-height:1.58;
}

.vf-blog-note-comment-form{
  padding:32px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 18px 44px rgba(20,20,40,.12);
}

.vf-blog-note-comment-form form{
  display:grid;
  gap:14px;
}

.vf-blog-note-input{
  width:100%;
  border:1px solid #dedee8;
  border-radius:18px;
  padding:15px 17px;
  font-family:inherit;
  font-size:1rem;
  outline:0;
}

textarea.vf-blog-note-input{
  min-height:140px;
  resize:vertical;
}

.vf-blog-note-input:focus{
  border-color:var(--vf-pink);
  box-shadow:0 0 0 4px rgba(230,0,126,.08);
}

.vf-blog-note-btn{
  min-height:50px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,var(--vf-pink),var(--vf-purple));
  color:#fff;
  font-family:inherit;
  font-size:1rem;
  font-weight:900;
  cursor:pointer;
}

@media(max-width:980px){
  .vf-blog-note-hero-card,
  .vf-blog-note-layout,
  .vf-blog-note-comments-grid{
    grid-template-columns:1fr;
  }

  .vf-blog-note-title{
    text-align:center;
  }

  .vf-blog-note-meta{
    justify-content:center;
  }

  .vf-blog-note-content{
    max-width:none;
  }

  .vf-blog-note-sidebar{
    position:relative;
    top:auto;
  }
}

@media(max-width:640px){
  .vf-blog-note-hero{
    padding:44px 0 54px;
  }

  .vf-blog-note-back{
    margin-bottom:18px;
  }

  .vf-blog-note-hero-card{
    gap:28px;
  }

  .vf-blog-note-cover{
    border-radius:26px;
  }

  .vf-blog-note-cover img{
    height:300px;
  }

  .vf-blog-note-title{
    text-align:left;
  }

  .vf-blog-note-title h1{
    font-size:clamp(2.25rem,10vw,3rem);
    line-height:1.06;
  }

  .vf-blog-note-meta{
    justify-content:flex-start;
  }

  .vf-blog-note-content-section{
    padding:56px 0;
  }

  .vf-blog-note-content p{
    font-size:1.08rem;
    line-height:1.72;
  }

  .vf-blog-note-content h2{
    font-size:1.85rem;
  }

  .vf-blog-note-content h3{
    font-size:1.45rem;
  }

  .vf-blog-note-content blockquote{
    padding:24px 22px;
    font-size:1.12rem;
  }

  .vf-blog-note-box,
  .vf-blog-note-comment-form{
    padding:26px 22px;
    border-radius:24px;
  }

  .vf-blog-note-comments{
    padding:58px 0;
  }

  .vf-blog-note-comment{
    align-items:flex-start;
  }
}


/* ==========================================
   SUSCRIPCIÓN BLOG 2026
========================================== */

.vf-blog-note-subscribe{
  border-top-color:var(--vf-cyan);
}

.vf-blog-note-subscribe .formintro{
  display:block;
  margin-bottom:22px;
  color:#292933;
  font-size:1.55rem;
  font-weight:500;
  line-height:1.2;
}

.vf-blog-note-subscribe #landformbox{
  margin:0;
}

.vf-blog-note-subscribe .landformrow{
  margin-bottom:14px;
}

.vf-blog-note-subscribe label{
  display:block;
  margin-bottom:7px;
  color:#555563;
  font-size:.9rem;
  font-weight:700;
}

.vf-blog-note-subscribe .form-control{
  width:100%;
  min-height:50px;
  padding:0 16px;
  border:1px solid #ddddea;
  border-radius:14px;
  background:#fff;
  color:#292933;
  font-size:.95rem;
  transition:.25s;
}

.vf-blog-note-subscribe textarea.form-control{
  min-height:120px;
  padding-top:14px;
}

.vf-blog-note-subscribe .form-control:focus{
  border-color:var(--vf-pink);
  box-shadow:0 0 0 4px rgba(230,0,126,.08);
  outline:none;
}

.vf-blog-note-subscribe .checklf{
  margin-right:6px;
  transform:scale(1.15);
}

.vf-blog-note-subscribe .landformsubmit{
  width:100%;
  margin-top:18px;
  border:none;
  min-height:52px;
  border-radius:999px;
  background:linear-gradient(
    135deg,
    var(--vf-purple),
    var(--vf-pink)
  );
  color:#fff;
  font-size:1rem;
  font-weight:900;
  cursor:pointer;
  transition:.25s;
}

.vf-blog-note-subscribe .landformsubmit:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(20,20,40,.16);
}

.vf-blog-note-subscribe .col-md-6,
.vf-blog-note-subscribe .col-md-12{
  padding-left:0;
  padding-right:0;
}

/* versión móvil */

@media(max-width:640px){

  .vf-blog-note-subscribe .formintro{
    font-size:1.35rem;
  }

  .vf-blog-note-subscribe .form-control{
    min-height:54px;
    font-size:1rem;
  }

  .vf-blog-note-subscribe .landformsubmit{
    min-height:56px;
    font-size:1.05rem;
  }

}