*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:'Poppins',sans-serif;
}

/* ===============================
   SECCION
================================ */
.tablero-section{
  width:100%;
  padding:60px 0;
}

.tablero-title{
  text-align:center;
  font-size:36px;
  font-weight:600;
  color:#77172f;
  margin-bottom:35px;
}

/* ===============================
   WRAPPER / SLIDER
================================ */
.tablero-wrapper{
  position:relative;
  width:100%;
  overflow:hidden;
  transition:height .4s ease;
}

.tablero-slider{
  display:flex;
  transition:transform .8s ease-in-out;
}

.tablero-slide{
  min-width:100%;
  padding:0 6% 30px;
}

/* ===============================
   CARD
================================ */
.tablero-card{
  background:#fff;
  padding:36px;
  border-radius:18px;
  border:2px solid #7e7e7e;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  max-width:1200px;
  margin:auto;
}

/* TEXTOS */
.tablero-card-title{
  font-size:26px;
  font-weight:600;
  color:#77172f;
  margin-bottom:16px;
}

.tablero-text{
  font-size:17px;
  line-height:1.8;
  margin-bottom:16px;
  color:#333;
}

.tablero-meta{
  font-size:15px;
  color:#555;
  margin-bottom:20px;
}

/* CLAMP */
.clamp{
  display:-webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* IMAGEN */
.tablero-image img{
  max-width:200px;
  margin:15px 0;
}

/* BOTON */
.tablero-btn{
  margin-top:auto;
  padding:12px 26px;
  background:#77172f;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  width:fit-content;
  transition:.3s;
}

.tablero-btn:hover{
  background:#BFA184;
}

/* ===============================
   FLECHAS
================================ */
.tablero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#77172f;
  color:#fff;
  border:none;
  width:44px;
  height:44px;
  border-radius:50%;
  cursor:pointer;
  font-size:22px;
  z-index:5;
  transition:.3s;
}

.tablero-arrow:hover{
  background:#BFA184;
}

.tablero-prev{ left:15px; }
.tablero-next{ right:15px; }

/* ===============================
   DOTS
================================ */
.tablero-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:20px;
}

.tablero-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#ccc;
  cursor:pointer;
  transition:.3s;
}

.tablero-dot.active{
  background:#77172f;
  transform:scale(1.3);
}

/* ===============================
   ANIMACIONES SCROLL
================================ */
.reveal-title,
.reveal-board{
  opacity:0;
  transform:translateY(40px);
}

.reveal-title.animate{
  animation:fadeUp .8s ease forwards;
}

.reveal-board.animate{
  animation:fadeUp .8s ease forwards;
  animation-delay:.4s;
}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:768px){
  .tablero-arrow{ display:none; }
  .tablero-card{ padding:28px; }
  .tablero-title{ font-size:30px; }
}

