@font-face{
      font-family: 'RCP Lemon Milk';
      src: url('/fontes/lemonmilk-bold.woff2') format('woff2');
      font-weight: 700; font-display: swap;
    }
    @font-face{
      font-family: 'RCP Ekster';
      src: url('/fontes/ekster-regular.woff2') format('woff2');
      font-weight: 400; font-display: swap;
    }
    @font-face{
      font-family: 'RCP Ekster';
      src: url('/fontes/ekster-medium.woff2') format('woff2');
      font-weight: 500; font-display: swap;
    }
    @font-face{
      font-family: 'RCP Ekster';
      src: url('/fontes/ekster-bold.woff2') format('woff2');
      font-weight: 700; font-display: swap;
    }

    #block-projetos #rcp3-section,
#block-projetos #rcp3-section *,
#block-projetos #rcp3-section *::before,
#block-projetos #rcp3-section *::after{
      margin: 0; padding: 0; box-sizing: border-box;
    }

    #block-projetos #rcp3-section{
      --rcp3-navy: #253064;
      --rcp3-gold: #D89A14;
      --rcp3-white: #ffffff;
      --rcp3-gap-externo: 3vh;
      --rcp3-padding-lateral: 80px;
      --rcp3-margin: calc(var(--rcp3-gap-externo) + var(--rcp3-padding-lateral));

      width: 100%;
      padding: 80px 0;
      background: var(--rcp3-white);
      position: relative;
      font-family: 'RCP Ekster', sans-serif;
      color: var(--rcp3-navy);
    }

    #block-projetos #rcp3-section .rcp3-container{
      width: 100%;
      padding: 0 var(--rcp3-margin);
      position: relative;
    }

    /* ── CABEÇALHO ─────────────────────────────────── */
    #block-projetos #rcp3-section .rcp3-header{
      margin-bottom: 50px;
      width: 100%;
    }

    #block-projetos #rcp3-section .rcp3-header-text{
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    #block-projetos #rcp3-section .rcp3-tag{
      display: block;
      font-size: 18px;
      font-weight: 700;
      color: var(--rcp3-gold);
      text-transform: uppercase;
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 12px;
    }

    #block-projetos #rcp3-section .rcp3-title{
      font-family: 'RCP Lemon Milk', sans-serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--rcp3-navy);
      text-transform: uppercase;
      line-height: 1;
      margin: 0;
    }

    /* ── GRADE DE CARDS ────────────────────────────── */
    #block-projetos #rcp3-section .rcp3-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      width: 100%;
    }

    /* ── CARD (padrão Obras de Sucesso) ────────────── */
    #block-projetos #rcp3-section .rcp3-card{
      display: flex;
      flex-direction: column;
      background: var(--rcp3-navy);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      border: none;
    }

    #block-projetos #rcp3-section .rcp3-card-img{
      display: block;
      position: relative;
      overflow: hidden;
      height: 200px;
      flex-shrink: 0;
      background: #151c3d;
    }

    #block-projetos #rcp3-section .rcp3-card-img img{
      width: 100%;
      height: 100%;
      object-fit: cover !important;
      object-position: center;
      display: block;
      pointer-events: none;
      user-select: none;
      -webkit-user-drag: none;
    }

    #block-projetos #rcp3-section .rcp3-card-content{
      flex: 1;
      padding: 26px 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      color: var(--rcp3-white);
    }

    #block-projetos #rcp3-section .rcp3-card-location{
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--rcp3-gold);
      margin-bottom: 10px;
    }

    #block-projetos #rcp3-section .rcp3-card-title{
      font-family: 'RCP Lemon Milk', sans-serif;
      font-size: 17px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    #block-projetos #rcp3-section .rcp3-card-meta{
      font-size: 14px;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 8px;
    }

    #block-projetos #rcp3-section .rcp3-card-meta strong{
      font-weight: 700;
      color: var(--rcp3-white);
    }

    /* ── REVEAL ────────────────────────────────────── */
    #block-projetos #rcp3-section .rcp3-reveal{
      opacity: 0;
      transform: translate3d(0, 30px, 0);
      filter: blur(10px);
      transition:
        opacity 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.32s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.32s ease;
      transition-delay: var(--rcp3-reveal-delay, 0s);
      will-change: transform, opacity, filter;
    }

    #block-projetos #rcp3-section .rcp3-reveal.is-visible{
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
    }

    /* ── RESPONSIVE ────────────────────────────────── */
    @media (max-width: 1280px){
      #block-projetos #rcp3-section .rcp3-grid{
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 1024px){
      #block-projetos #rcp3-section .rcp3-grid{
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px){
      #block-projetos #rcp3-section{
        --rcp3-padding-lateral: 20px;
        --rcp3-gap-externo: 0px;
        padding: 60px 0;
      }

      #block-projetos #rcp3-section .rcp3-header-text{
        text-align: center;
      }

      #block-projetos #rcp3-section .rcp3-tag{
        margin-bottom: 8px;
      }

      #block-projetos #rcp3-section .rcp3-title{
        font-size: 28px;
        max-width: 15ch;
        margin: 0 auto;
      }

      #block-projetos #rcp3-section .rcp3-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      #block-projetos #rcp3-section .rcp3-card-img{
        height: 160px;
      }

      #block-projetos #rcp3-section .rcp3-card-content{
        padding: 20px 18px;
      }

      #block-projetos #rcp3-section .rcp3-card-title{
        font-size: 15px;
      }

      #block-projetos #rcp3-section .rcp3-card-meta{
        font-size: 13px;
      }
    }

    @media (max-width: 560px){
      #block-projetos #rcp3-section .rcp3-grid{
        grid-template-columns: 1fr;
        gap: 18px;
      }

      #block-projetos #rcp3-section .rcp3-card-img{
        height: 220px;
      }

      #block-projetos #rcp3-section .rcp3-card-title{
        font-size: 18px;
      }

      #block-projetos #rcp3-section .rcp3-card-meta{
        font-size: 14px;
      }
    }