/* ============================================================
   FEATURED CAROUSEL — featured-carousel.css
   ============================================================ */

   .fc-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
  }
  
  /* ── HEADER ───────────────────────────────────────────────── */
  .fc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .fc-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Montserrat', 'Trebuchet MS', sans-serif;
    color: #1A4613;
    margin: 0;
  }

  .fc-title__accent {
    display: inline-block;
    width: 22px;
    height: 3px;
    background: #C9A227;
  }
  .fc-arrows { display: flex; gap: 8px; }
  .fc-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    background: #E2FFDE;
    color: #262019;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
  }
  .fc-arrow:hover {
    background: #1A4613;
    border-color: #1A4613;
    color: #fff;
  }
  
  /* ── TRACK ────────────────────────────────────────────────── */
  .fc-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .fc-track::-webkit-scrollbar { display: none; }
  
  .fc-item {
    flex: 0 0 auto;
    width: 270px;
    height: 380px;              /* 👈 IMPORTANTE: da altura al flip */
    scroll-snap-align: start;
  }
  
  /* ── FLIP CONTAINER ──────────────────────────────────────── */
  .fcard-flip {
    perspective: 1200px;
    width: 100%;
    height: 100%;
  }
  
  .fcard-flip__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .7s cubic-bezier(.4, .2, .2, 1);
    transform-style: preserve-3d;
  }
  
  .fcard-flip:hover .fcard-flip__inner {
    transform: rotateY(180deg);
  }
  
  /* ── TARJETA (ambas caras) ───────────────────────────────── */
  .fcard {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  .fcard--front {
    transform: rotateY(0deg);
  }
  
  .fcard--back {
    transform: rotateY(180deg);
    background: #1A4613;
    color: #fff;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
  }
  
  /* ── MEDIA (cara frontal) ────────────────────────────────── */
  .fcard__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #eee;
  }
  .fcard__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .fcard__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f2f2f2, #e6e6e6);
  }
  .fcard__logo {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fcard__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .fcard__pill {
    position: absolute;
    left: 12px;
    bottom: -12px;
    background: #fff;
    color: #1A4613;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
  }
  .fcard__body {
    padding: 22px 16px 16px;
  }
  .fcard__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #262019;
    margin: 0 0 4px;
  }
  .fcard__desc {
    font-size: .85rem;
    color: #777;
    margin: 0;
    line-height: 1.4;
  }
  
  /* ── CARA TRASERA ─────────────────────────────────────────── */
  .fcard__back-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
    flex: 0 0 auto;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  
  .fcard__back-scroll {
    overflow-y: auto;
    flex: 1 1 auto;
    padding-right: 6px;
    margin-bottom: 10px;
  }
  .fcard__back-scroll::-webkit-scrollbar { width: 5px; }
  .fcard__back-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.4);
    border-radius: 4px;
  }
  .fcard__back-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.4) transparent;
  }
  
  .fcard__hi-row {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: .78rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .fcard__hi-icon { flex: 0 0 auto; margin-top: 2px; opacity: .85; }
  .fcard__hi-label {
    display: block;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .7;
    margin-bottom: 2px;
  }
  .fcard__hi-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
  .fcard__hi-tag {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: .68rem;
  }
  
  .fcard__back-link {
    flex: 0 0 auto;
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 8px;
    padding: 8px;
    transition: background .2s;
  }
  .fcard__back-link:hover {
    background: rgba(255,255,255,.3);
    color: #fff;
  }
  
  /* ── RESPONSIVE ───────────────────────────────────────────── */
  @media (max-width: 640px) {
    .fc-item { width: 220px; height: 340px; }
    .fc-wrap { padding: 24px 16px; }
  }