
  /* ─── STUDIO BANNER ─── */
  .studio-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: var(--nav-h);
  }
 
  /* ─── TAB BAR (arriba) ─── */
  .tab-bar {
    display: flex;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: var(--nav-h);
    z-index: 10;
    width: 80%;
    margin: 0 auto;
  }
 
  .tab-btn {
    flex: 1;
    padding: 20px 16px;
    background: transparent;
    border: none;
    border-right: 1px solid #e0e0e0;
    font-family: 'Poppins-Regular', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555555;
    cursor: pointer;
    position: relative;
    transition: color 0.25s, background 0.25s;
  }

  .tab-btn:last-child { border-right: none; }

  .tab-btn.active { background: var(--green-vision); color: #ffffff; }

  .tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green-vision);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .tab-btn:not(.active):hover { color: var(--green-vision); background: rgba(46,204,113,0.05); }
  .tab-btn:not(.active):hover::after { transform: scaleX(1); }
  .tab-btn.active::after { display: none; }
 
  /* ─── Panels wrap ─── */
  .tab-panels-wrap {
    position: relative;
    width: 100%;
    height: calc(70vh - var(--nav-h) - 62px); /* full viewport minus nav and tab bar */
    min-height: 420px;
    overflow: hidden;
  }
 
  /* Tab panels (background images) */
  .tab-panel {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 0.6s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .tab-panel.active { opacity: 1; }
 
  .tab-panel::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
  }
 
  .tab-panel-title {
    position: relative; z-index: 2;
    font-family: 'Poppins-BlackItalic', sans-serif;
    font-size: clamp(3.5rem, 9vw, 4rem);
    letter-spacing: 4px;
    color: var(--white);
    font-style: italic;
    text-shadow: 0 4px 40px rgba(0,0,0,0.8);
    text-align: center;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s 0.25s ease, transform 0.5s 0.25s ease;
  }
  .tab-panel.active .tab-panel-title { opacity: 1; transform: translateY(0); }
 
  /* ─── STUDIO CONTENT ─── */
  .studio-content { background: #ffffff; }
 
  .studio-section {
    display: none;
    animation: fadeUp 0.45s ease forwards;
  }
  .studio-section.active { display: block; }
 
  @keyframes fadeUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
  }
 
  /* ─── Gallery Swiper ─── */
  .studio-gallery-wrap {
    width: 100%;
    background: #ffffff;
    padding: 40px 80px 0;
  }
  .studioSwiper {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    height: 600px;
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.18);
    position: relative;
  }
  .studioSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
  }
 
  /* Label bottom-right */
  .studio-gallery-label {
    position: absolute;
    bottom: 48px; 
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    pointer-events: none;
  }
  .label-name {
    background: var(--green-vision);
    font-family: 'Poppins-SemiBold', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 3px;
    color: var(--white);
    font-style: italic;
    padding: 8px 20px 6px;
    display: block;
    width: 100%;
    text-align: right;
    font-weight: bold;
  }
  .label-type {
    background: var(--green-vision);
    font-family: 'Poppins-Medium', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color:var(--white);
    font-style: italic;
    padding: 6px 20px 8px;
    display: block;
    width: 100%;
  }
 
  /* Swiper controls */
  .studioSwiper .swiper-button-prev,
  .studioSwiper .swiper-button-next {
    color: #ffffff;
    background: rgba(0,0,0,0.35);
    width: 40px; height: 40px;
    border-radius: 50%;
    transition: background 0.2s;
  }
  .studioSwiper .swiper-button-prev:hover,
  .studioSwiper .swiper-button-next:hover { background: rgba(46,204,113,0.7); }
  .studioSwiper .swiper-button-prev::after,
  .studioSwiper .swiper-button-next::after { font-size: 14px; font-weight: 700; }
  .studioSwiper .swiper-pagination { bottom: 16px !important; }
  .studioSwiper .swiper-pagination-bullet { background: rgba(255,255,255,0.6); opacity:1; width:8px; height:8px; }
  .studioSwiper .swiper-pagination-bullet-active { background: #ffffff; width: 20px; border-radius: 4px; transition: width 0.3s; }
 
  /* ─── Info section ─── */
  .studio-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 36px 8px 64px;
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
 
  .studio-info-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .studio-eyebrow { display: none; } /* hidden in this layout */
 
  .studio-title {
    font-family: 'Poppins-Semibold', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--green-vision);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
  }
 
  .studio-cta {
    display: inline-block;
    background: var(--green-vision); color: #ffffff;
    font-family: 'Barlow', sans-serif; font-weight: 700;
    font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
    text-decoration: none; padding: 12px 28px; border-radius: 4px;
    transition: background 0.25s, transform 0.2s;
    width: fit-content;
    margin-top: 8px;
  }
  .studio-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
 
  .studio-info-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-left: none;
    padding-left: 0;
  }
  .studio-body {
    font-size: 0.90rem;
    line-height: 1.8;
    color: var(--green-dark);
    font-weight: 400;
    text-align: justify;
  }
 
  @media (max-width: 960px) {
    .studio-gallery-wrap { padding: 24px 20px 0; }
    .studio-info { padding: 28px 20px 48px; }
    .studioSwiper { height: 280px; }
    .tab-btn { font-size: 0.6rem; padding: 14px 6px; letter-spacing: 0.5px; }
  }


    @media (max-width: 860px) {

      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .studio-banner { height: 60vh; }
      .tab-btn { font-size: 0.62rem; padding: 16px 8px; letter-spacing: 1px; }
      .studio-section-inner { grid-template-columns: 1fr; gap: 32px; }
      .studio-section-img::before { display: none; }
      .studio-content { padding: 56px 24px; }

  }


  /* ─── Croquis ─── */
  .studio-croquis-wrap {
    padding: 0 80px 40px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    box-sizing: content-box;
  }
  .studio-croquis-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .studio-croquis-img {
    width: 100%;
    height: auto;
    display: block;
    /*border: 1px solid #e8e8e8;*/
    /*border-radius: 4px;*/
  }
  .studio-croquis-label {
    position: absolute;
    bottom: 0; right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .studio-croquis-label .label-name {
    background: var(--green-vision);
    font-family: 'Poppins-Semibold', sans-serif;
    font-size: 1rem; letter-spacing: 3px;
    color: #ffffff; font-style: italic;
    padding: 7px 18px 5px; display: block;
  }
  .studio-croquis-label .label-type {
    background: var(--green-vision);
    font-family: 'Poppins-Semibold', sans-serif;
    font-size: 0.88rem; letter-spacing: 2px;
    color: #ffffff; font-style: italic;
    padding: 5px 18px 7px; display: block;
  }
 
  /* ─── Lista de equipo ─── */
  .studio-equipo-wrap {
    padding: 0 80px 72px;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    box-sizing: content-box;
  }
  .equipo-title {
    font-family: 'Poppins-SemiBold', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-vision);
    margin-bottom: 28px;
    padding-bottom: 10px;
    /*border-bottom: 2px solid #f0f0f0;*/
  }
  .equipo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
  }
  .equipo-col { display: flex; flex-direction: column; gap: 28px; }
  .equipo-item { display: flex; flex-direction: column; gap: 4px; }
  .equipo-cat {
    font-family: 'Poppins-Medium', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-vision);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }
  .equipo-subtitle {
    font-size: 0.92rem;
    color: var(--green-dark);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .equipo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .equipo-list li {
    font-size: 0.82rem;
    color: var(--green-dark);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
  }
  .equipo-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333333;
  }
 
  @media (max-width: 640px) {
    .studio-croquis-wrap { padding: 0 20px 32px; }
    .studio-equipo-wrap { padding: 0 20px 48px; }
    .equipo-grid { grid-template-columns: 1fr; gap: 28px; }
  }
 