  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #fff; background: #0B0C10; }
  :root { --pd-blue: #008ECF; --pd-purple: #74348A; --pd-dark: #0B0C10; --pd-gray: #8A8F98; --pd-light-gray: #1A1D24; }

  .pd-nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 48px; background: rgba(11,12,16,0.85); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pd-logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; letter-spacing: 1px; }
  .pd-logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--pd-blue), var(--pd-purple)); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .pd-logo-icon svg { width: 24px; height: 24px; }
  .pd-nav-links { display: flex; gap: 32px; list-style: none; }
  .pd-nav-links a { color: var(--pd-gray); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .pd-nav-links a:hover { color: #fff; }
  .pd-btn { padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; text-decoration: none;}
  .pd-btn-primary { background: linear-gradient(135deg, var(--pd-blue), var(--pd-purple)); color: #fff; }
  .pd-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,142,207,0.3); }
  .pd-btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
  .pd-btn-outline:hover { border-color: var(--pd-blue); }

  .pd-hero { position: relative; padding: 120px 48px 160px; text-align: center; overflow: hidden; background: url('images/banner01.png') center center / cover no-repeat; }
  .pd-hero-bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,16,0.75) 0%, rgba(11,12,16,-1.25) 50%, rgba(11,12,16,0.75) 200%); }
  .pd-hero-bubbles { position: absolute; inset: 0; overflow: hidden; opacity: 0.4; }
  .pd-hero-bubbles svg { position: absolute; width: 100%; height: 100%; }
  .pd-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(0,142,207,0.12); border: 1px solid rgba(0,142,207,0.25); border-radius: 100px; font-size: 13px; color: var(--pd-blue); margin-bottom: 32px; }
  .pd-hero h1 { font-size: 56px; font-weight: 700; line-height: 1.1; max-width: 800px; margin: 0 auto 24px; letter-spacing: -1px; }
  .pd-hero h1 span { background: linear-gradient(135deg, var(--pd-blue), var(--pd-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .pd-hero p { font-size: 18px; color: var(--pd-gray); max-width: 560px; margin: 0 auto 40px; line-height: 1.6; }
  .pd-hero-cta { display: flex; gap: 16px; justify-content: center; }

  .pd-section { padding: 100px 48px; position: relative; }
  .pd-section-header { text-align: center; margin-bottom: 64px; }
  .pd-section-header h2 { font-size: 40px; font-weight: 700; margin-bottom: 16px; }
  .pd-section-header p { color: var(--pd-gray); font-size: 16px; max-width: 500px; margin: 0 auto; }
  .pd-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--pd-blue); margin-bottom: 16px; }

  .pd-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
  .pd-feature { background: #fff; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 40px 32px; transition: all 0.3s; position: relative; overflow: hidden; }
  .pd-feature::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--pd-blue), var(--pd-purple)); opacity: 0; transition: opacity 0.3s; }
  .pd-feature:hover { transform: translateY(-4px); border-color: rgba(0,142,207,0.2); }
  .pd-feature:hover::before { opacity: 1; }
  .pd-feature-num { font-size: 48px; font-weight: 700; color: #008ECF; line-height: 1; margin-bottom: 20px; }
  .pd-feature h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: #000}
  .pd-feature p { font-size: 14px; color: var(--pd-gray); line-height: 1.6; }

  .pd-steps { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .pd-step { text-align: center; position: relative; }
  .pd-step:not(:last-child)::after { content: ''; position: absolute; top: 36px; right: -12px; width: 24px; height: 2px; background: linear-gradient(90deg, var(--pd-blue), var(--pd-purple)); opacity: 0.4; }
  .pd-step-circle { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--pd-blue), var(--pd-purple)); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 24px; font-weight: 700; position: relative; }
  .pd-step-circle::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(0,142,207,0.2); }
  .pd-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
  .pd-step p { font-size: 14px; color: var(--pd-gray); line-height: 1.5; padding: 0 8px; }

  .pd-pricing { max-width: 600px; margin: 0 auto; text-align: center; background: linear-gradient(135deg, rgba(0,142,207,0.08), rgba(116,52,138,0.08)); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 64px 48px; position: relative; overflow: hidden; }
  .pd-pricing::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0,142,207,0.08) 0%, transparent 60%); }
  .pd-price { font-size: 64px; font-weight: 700; margin: 24px 0; background: linear-gradient(135deg, #fff, var(--pd-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
  .pd-price-currency { font-size: 32px; font-weight: 500; }
  .pd-pricing ul { list-style: none; text-align: left; max-width: 360px; margin: 0 auto 32px; }
  .pd-pricing li { padding: 10px 0; font-size: 14px; color: var(--pd-gray); border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 12px; }
  .pd-pricing li svg { flex-shrink: 0; color: var(--pd-blue); }

  .pd-faq { max-width: 800px; margin: 0 auto; }
  .pd-faq-item { background: var(--pd-light-gray); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
  .pd-faq-q { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 500; font-size: 15px; }
  .pd-faq-q:hover { color: var(--pd-blue); }
  .pd-faq-a { padding: 0 24px 20px; color: var(--pd-gray); font-size: 14px; line-height: 1.6; display: none; }
  .pd-faq-item.active .pd-faq-a { display: block; }
  .pd-faq-item.active .pd-faq-icon { transform: rotate(45deg); }

  .pd-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 48px 32px; text-align: center; }
  .pd-footer-logo { font-size: 24px; font-weight: 700; margin-bottom: 24px; }
  .pd-footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
  .pd-footer-links a { color: var(--pd-gray); text-decoration: none; font-size: 14px; }
  .pd-footer-links a:hover { color: #fff; }
  .pd-footer-copy { color: var(--pd-gray); font-size: 13px; }

  @media (max-width: 1024px) { .pd-features { grid-template-columns: repeat(2, 1fr); } .pd-steps { grid-template-columns: repeat(2, 1fr); } .pd-step:nth-child(2)::after { display: none; } }
  @media (max-width: 768px) { .pd-nav { padding: 16px 24px; } .pd-nav-links { display: none; } .pd-hero { padding: 80px 24px; } .pd-hero h1 { font-size: 36px; } .pd-section { padding: 64px 24px; } .pd-features { grid-template-columns: 1fr; } .pd-steps { grid-template-columns: 1fr; } .pd-step::after { display: none !important; } .pd-pricing { padding: 48px 24px; } }

/* ====== LANDING AVELO — NEW LIGHT / COLOR SECTIONS ====== */
.pd-investment {
  position: relative;
  padding: 104px 48px;
  background: #f5f8fb;
  color: #10131a;
  overflow: hidden;
}
.pd-investment::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  background: rgba(0,142,207,.08);
  filter: blur(4px);
}
.pd-investment-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pd-investment-intro .pd-label { color: var(--pd-blue); }
.pd-investment-intro h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -.8px;
}
.pd-investment-lead {
  color: #5e6672;
  font-size: 18px;
  margin-bottom: 34px;
}
.pd-included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 28px;
  max-width: 720px;
}
.pd-included-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #29313b;
  font-size: 14px;
  line-height: 1.5;
}
.pd-check {
  width: 23px;
  height: 23px;
  min-width: 23px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pd-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 5px 12px rgba(0,142,207,.2);
}
.pd-pricing-light {
  margin: 0;
  max-width: none;
  text-align: left;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 24px;
  padding: 42px 40px;
  box-shadow: 0 22px 55px rgba(15,30,45,.10);
}
.pd-pricing-light::before { display: none; }
.pd-launch-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pd-blue), var(--pd-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pd-pricing-light h3 {
  color: #171b22;
  font-size: 22px;
  margin-bottom: 8px;
}
.pd-pricing-light .pd-price {
  margin: 18px 0 16px;
  background: linear-gradient(135deg, #10131a, var(--pd-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pd-pricing-light .pd-price-desc {
  color: #68717d;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.pd-limited {
  color: var(--pd-purple);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}
.pd-pricing-light .pd-btn { width: 100%; }

/* A full-width brand-color band adds visual rhythm without turning the whole page blue. */
.pd-course-band {
  background:
    linear-gradient(90deg, rgba(0,58,92,.94) 0%, rgba(0,142,207,.88) 48%, rgba(0,92,135,.72) 100%),
    url('images/trama_001.png') center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.pd-course-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.16), transparent 30%);
  pointer-events: none;
}
.pd-course-band .pd-section-header,
.pd-course-band .pd-step,
.pd-course-band .pd-step h4 { color: #fff; }
.pd-course-band .pd-section-header p,
.pd-course-band .pd-step p { color: rgba(255,255,255,.78); }
.pd-course-band .pd-label { color: #b9edff; }
.pd-course-band .pd-step-circle { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32); }
.pd-course-band .pd-step-circle::after { border-color: rgba(255,255,255,.22); }
.pd-course-band .pd-step:not(:last-child)::after { background: rgba(255,255,255,.5); }

.pd-faq-section { background: #0B0C10; }

@media (max-width: 900px) {
  .pd-investment-inner { grid-template-columns: 1fr; gap: 48px; }
  .pd-pricing-light { max-width: 620px; }
}
@media (max-width: 600px) {
  .pd-investment { padding: 72px 24px; }
  .pd-included-list { grid-template-columns: 1fr; }
  .pd-pricing-light { padding: 32px 24px; border-radius: 20px; }
  .pd-investment-lead { font-size: 16px; }
}

/* ====== CIERRE — FOTO DE FONDO ====== */
.pd-final-cta {
  position: relative;
  min-height: 440px;
  padding: 100px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url("images/futuro_buceo.png") center center / cover no-repeat;
}
.pd-final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,12,16,0.28) 0%, rgba(11,12,16,0.62) 52%, rgba(11,12,16,0.88) 100%);
}
.pd-final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(0,142,207,0.18), transparent 58%);
  pointer-events: none;
}
.pd-final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.pd-final-cta h2 {
  font-size: 40px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 3px 20px rgba(0,0,0,0.35);
}
.pd-final-cta p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.82) !important;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pd-final-cta { min-height: 420px; padding: 80px 24px; }
  .pd-final-cta h2 { font-size: 32px; }
}


/* ====== VARIABLES METRÓPOLI ====== */
:root {
  --metro-background: #eeeeee;
  --metro-white: #ffffff;
  --metro-blue: #08a8e8;
  --metro-blue-dark: #007aa9;
  --metro-cyan: #00c6e9;
  --metro-black: #111111;
  --metro-transition: 0.5s cubic-bezier(.2,.7,.2,1);
}


/* ====== LOGO ====== */
.pd-logo {
  display: flex;
  align-items: center;
}
.pd-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.pd-footer-logo {
  margin-bottom: 24px;
}
.pd-footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pd-logo-img {
    height: 36px;
  }
  .pd-footer-logo-img {
    height: 40px;
  }
}

.pd-metro-section {
    background: #008ECF;
    font-family: 'Montserrat', sans-serif;
    color: var(--metro-black);
    min-height: auto;
}

.pd-metro-section .portfolio {
    width: min(1400px, 94%);
    margin: 0 auto;
    padding: 35px 0 25px;
}

/* =====================================================
   HEADER
===================================================== */

.pd-metro-section .header {

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 25px;
}

/* LOGO */

.pd-metro-section .brand {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.pd-metro-section .brand-name {

    font-size: 27px;

    font-weight: 300;

    letter-spacing: 2px;
}

.pd-metro-section .brand-line {

    width: 180px;

    height: 3px;

    background: var(--metro-blue);
}

/* MENU */

.pd-metro-section .menu {

    display: flex;

    gap: 35px;

    padding-top: 8px;
}

.pd-metro-section .menu a {

    text-decoration: none;

    color: #555;

    font-size: 12px;

    letter-spacing: 1.5px;

    transition: var(--metro-transition);
}

.pd-metro-section .menu a:hover {

    color: var(--metro-blue);

    letter-spacing: 2px;
}

/* =====================================================
   GRID METRÓPOLI
===================================================== */

.pd-metro-section .metro-grid {

    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-template-rows:
        repeat(6, 100px);

    gap: 12px;
}

/* =====================================================
   CONFIGURACIÓN GENERAL DE LOS BLOQUES
===================================================== */

.pd-metro-section .metro-item {

    position: relative;

    overflow: hidden;

    background: #111;

    cursor: pointer;
}

/* =====================================================
   FOTOGRAFÍA
===================================================== */

.pd-metro-section .metro-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1),
        filter 1s ease;
}

/* =====================================================
   OVERLAY
===================================================== */

.pd-metro-section .overlay {

    position: absolute;

    inset: 0;

    opacity: .45;

    pointer-events: none;

    transition:
        opacity .5s ease,
        background .5s ease;
}

/* diferentes colores */

.pd-metro-section .overlay-blue {

    background: rgba(0, 0, 0, .65);
}

.pd-metro-section .overlay-dark {

    background: rgba(0, 0, 0, .65);
}

.pd-metro-section .overlay-cyan {

    background: rgba(0, 0, 0, .65);
}

.pd-metro-section .overlay-orange {

    background: rgba(0, 0, 0, .65);
}

.pd-metro-section .overlay-blue-dark {

    background:  rgba(0, 0, 0, .65);
}

/* =====================================================
   CONTENIDO
===================================================== */

.pd-metro-section .metro-item .content {

    position: absolute;

    inset: 0;

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    color: white;

    z-index: 3;

    pointer-events: none;

    transform: translateY(12px);

    transition:
        transform .6s cubic-bezier(.2,.7,.2,1);
}

/* =====================================================
   TIPOGRAFÍA
===================================================== */

.pd-metro-section .category {

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 10px;

    opacity: .8;
}

.pd-metro-section .metro-item h2 {

    font-size: clamp(22px, 2.5vw, 40px);

    line-height: 1;

    font-weight: 600;

    margin-bottom: 12px;
}

.pd-metro-section .metro-item h3 {

    font-size: 28px;

    font-weight: 500;
}

.pd-metro-section .metro-item p {

    font-size: 12px;

    line-height: 1.6;

    max-width: 400px;

    opacity: .85;

    margin-bottom: 10px;
}

.pd-metro-section .number {

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

/* =====================================================
   VER PROYECTO
===================================================== */

.pd-metro-section .view {

    display: inline-block;

    font-size: 10px;

    letter-spacing: 2px;

    margin-top: 10px;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity .4s ease,
        transform .5s ease;
}

/* =====================================================
   HOVER PRINCIPAL
===================================================== */

.pd-metro-section .metro-item:hover img {

    transform: scale(1.13);

    filter: saturate(1.15);
}

.pd-metro-section .metro-item:hover .overlay {

    opacity: .78;
}

.pd-metro-section .metro-item:hover .content {

    transform: translateY(0);
}

.pd-metro-section .metro-item:hover .view {

    opacity: 1;

    transform: translateY(0);
}

/* =====================================================
   ANIMACIONES ESPECIALES
===================================================== */

/* bloque grande */

.pd-metro-section .item-large:hover img {

    transform:
        scale(1.12)
        rotate(-1deg);
}

/* bloque vertical */

.pd-metro-section .item-vertical:hover img {

    transform:
        scale(1.18)
        rotate(2deg);
}

/* bloque pequeño */

.pd-metro-section .item-small:hover img {

    transform:
        scale(1.3)
        rotate(-3deg);
}

/* bloque cuadrado */

.pd-metro-section .item-square:hover img {

    transform:
        scale(1.2)
        rotate(1.5deg);
}

/* =====================================================
   POSICIONES DEL MOSAICO
===================================================== */

/* BLOQUE GRANDE */

.pd-metro-section .item-large {

    grid-column: 1 / 6;

    grid-row: 1 / 5;
}

/* VERTICAL */

.pd-metro-section .item-vertical {

    grid-column: 6 / 9;

    grid-row: 1 / 4;
}

/* PEQUEÑO */

.pd-metro-section .item-small {

    grid-column: 9 / 11;

    grid-row: 1 / 3;
}

/* HORIZONTAL */

.pd-metro-section .item-horizontal {

    grid-column: 11 / 13;

    grid-row: 1 / 4;
}

/* CUADRADO */

.pd-metro-section .item-square {

    grid-column: 6 / 9;

    grid-row: 4 / 7;
}

/* FEATURED */

.pd-metro-section .item-featured {

    grid-column: 9 / 13;

    grid-row: 4 / 7;
}

/* =====================================================
   BLOQUE DE TEXTO
===================================================== */

.pd-metro-section .text-block {

    grid-column: 1 / 6;

    grid-row: 5 / 7;

    background: var(--metro-white);

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.pd-metro-section .small-title {

    font-size: 10px;

    letter-spacing: 3px;

    color: var(--metro-blue);

    margin-bottom: 12px;
}

.pd-metro-section .text-block h2 {

    font-size: 22px;

    line-height: 1.25;

    font-weight: 500;

    margin-bottom: 12px;
}

.pd-metro-section .text-block p {

    font-size: 18px;

    line-height: 1.7;

    color: #666;

    max-width: 500px;

    margin-bottom: 15px;
}

.pd-metro-section .text-block a {

    color: var(--metro-blue);

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    transition: .3s;
}

.pd-metro-section .text-block a:hover {

    letter-spacing: 3px;
}

/* =====================================================
   CONTACTO
===================================================== */

.pd-metro-section .contact-block {

    display: none;

    background: var(--metro-blue);

    color: white;

    padding: 30px;
}

/* =====================================================
   FOOTER
===================================================== */

.pd-metro-section footer {

    margin-top: 25px;

    display: flex;

    justify-content: space-between;

    font-size: 9px;

    letter-spacing: 1px;

    color: #777;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .pd-metro-section .metro-grid {

        grid-template-columns:
            repeat(6, 1fr);

        grid-template-rows:
            repeat(8, 120px);
    }

.pd-metro-section .item-large {

        grid-column: 1 / 5;

        grid-row: 1 / 5;
    }

.pd-metro-section .item-vertical {

        grid-column: 5 / 7;

        grid-row: 1 / 4;
    }

.pd-metro-section .item-small {

        grid-column: 5 / 7;

        grid-row: 4 / 6;
    }

.pd-metro-section .item-horizontal {

        grid-column: 1 / 4;

        grid-row: 5 / 7;
    }

.pd-metro-section .item-square {

        grid-column: 4 / 7;

        grid-row: 6 / 9;
    }

.pd-metro-section .item-featured {

        grid-column: 1 / 4;

        grid-row: 7 / 9;
    }

.pd-metro-section .text-block {

        grid-column: 1 / 4;

        grid-row: 5 / 6;

        padding: 20px;
    }

.pd-metro-section .menu {

        gap: 15px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .pd-metro-section .portfolio {

        width: 92%;

        padding-top: 25px;
    }

.pd-metro-section .header {

        height: auto;

        margin-bottom: 25px;

        flex-direction: column;

        gap: 20px;
    }

.pd-metro-section .brand-name {

        font-size: 23px;
    }

.pd-metro-section .menu {

        width: 100%;

        gap: 15px;

        flex-wrap: wrap;
    }

.pd-metro-section .metro-grid {

        display: grid;

        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            repeat(8, 150px);

        gap: 8px;
    }

.pd-metro-section .item-large {

        grid-column: 1 / 3;

        grid-row: 1 / 4;
    }

.pd-metro-section .item-vertical {

        grid-column: 1 / 2;

        grid-row: 4 / 6;
    }

.pd-metro-section .item-small {

        grid-column: 2 / 3;

        grid-row: 4 / 6;
    }

.pd-metro-section .item-horizontal {

        grid-column: 1 / 3;

        grid-row: 6 / 8;
    }

.pd-metro-section .item-square {

        grid-column: 1 / 2;

        grid-row: 8 / 10;
    }

.pd-metro-section .item-featured {

        grid-column: 2 / 3;

        grid-row: 8 / 10;
    }

.pd-metro-section .text-block {

        grid-column: 1 / 3;

        grid-row: 10 / 12;

        min-height: 250px;
    }

.pd-metro-section .metro-item .content {

        padding: 18px;
    }

.pd-metro-section .metro-item h2 {

        font-size: 25px;
    }

.pd-metro-section footer {

        flex-direction: column;

        gap: 8px;
    }
}

/* ====== LIGHTBOX ====== */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.pd-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.pd-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 16, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.pd-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.pd-lightbox.active .pd-lightbox-content {
  transform: scale(1);
}
.pd-lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.pd-lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.pd-lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}
.pd-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.pd-lightbox-nav:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}
.pd-lightbox-prev { left: 24px; }
.pd-lightbox-next { right: 24px; }
.pd-lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px 20px;
  background: rgba(0,0,0,0.35);
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pd-lightbox.active .pd-lightbox-caption {
  opacity: 1;
}

@media (max-width: 768px) {
  .pd-lightbox-content img {
    max-height: 75vh;
  }
  .pd-lightbox-close {
    top: 12px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .pd-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
  .pd-lightbox-prev { left: 10px; }
  .pd-lightbox-next { right: 10px; }
}


/* =====================================================
   SECCIÓN: "Tu certificación es solo el comienzo"
===================================================== */

/* ---------- Variables adicionales ---------- */
:root {
  --blue: #008ECF;
  --blue-light: #4FC3F7;
  --purple: #74348A;
  --purple-light: #A566BE;
  --black: #050609;
  --black-2: #0B0D15;
  --black-3: #12141F;
  --black-4: #191C29;
  --white: #F6F8FB;
  --gray: #93A0B8;
  --gray-dim: #5C6478;
  --border-continue: rgba(255,255,255,0.09);
  --grad-continue: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --grad-soft: linear-gradient(135deg, rgba(0,142,207,0.16) 0%, rgba(116,52,138,0.16) 100%);
}

/* ---------- Fuentes solo para esta sección ---------- */
.continue h2, .continue h3 {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Utilidades ---------- */
.continue .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.continue .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-light); font-weight: 500;
  margin-bottom: 18px;
}
.continue .eyebrow::before {
  content: ''; width: 18px; height: 1px; background: var(--blue-light); display: inline-block;
}

.continue .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: transform .25s ease, box-shadow .25s ease, opacity .25s;
  font-family: 'Inter', sans-serif;
}
.continue .btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--white); border: 1px solid var(--border-continue);
}
.continue .btn-ghost:hover { background: rgba(255,255,255,0.09); }

.continue .section-head { max-width: 640px; margin-bottom: 64px; }
.continue .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Sección Continue ---------- */
.continue { padding: 130px 0; background: var(--black-2); }

.continue .cont-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px;
}

.continue .cont-card {
  background: var(--black-3); border: 1px solid var(--border-continue); border-radius: 22px;
  padding: 36px 30px; transition: transform .3s, border-color .3s;
}
.continue .cont-card:hover {
  transform: translateY(-6px); border-color: rgba(0,142,207,0.4);
}

.continue .cont-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}

.continue .cont-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--white); }
.continue .cont-card p { color: var(--gray); font-size: 14.5px; line-height: 1.6; }

.continue .continue-cta { text-align: center; margin-top: 52px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .continue .cont-grid { grid-template-columns: 1fr; }
  .continue .wrap { padding: 0 24px; }
}

@media (max-width: 600px) {
  .continue { padding: 80px 0; }
  .continue .section-head h2 { font-size: 30px; }
  .continue .cont-card { padding: 28px 22px; }
}


/* ====== AJUSTES SOLICITADOS — HERO Y 5 PASOS ====== */
.pd-hero {
  min-height: 700px;
  padding: 48px;
  display: flex-start;
  align-items: center;
  justify-content: center;
}

.pd-hero > div[style*="position:relative"] {
  width: 100%;
}

.pd-hero-title {
  color: #fff;
  margin: 0 auto !important;
  padding-bottom: 24px;
}

.pd-hero h1 span {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.pd-steps {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
  .pd-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pd-hero {
    min-height: 700px;
    padding: 32px 24px 48px;
  }

  .pd-steps {
    grid-template-columns: 1fr;
  }
}


/* ====== AJUSTES SOLICITADOS — HERO Y 5 PASOS ====== */
.pd-hero {
  min-height: 700px;
  padding: 48px;
  display: flex-start;
  align-items: center;
  justify-content: center;
}

.pd-hero > div[style*="position:relative"] {
  width: 100%;
}

.pd-hero-title {
  color: #fff;
  margin: 0 auto !important;
  padding-bottom: 24px;
}

.pd-hero h1 span {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.pd-steps {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
  .pd-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pd-hero {
    min-height: 700px;
    padding: 32px 24px 48px;
  }

  .pd-steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   SHEARWATER x AVELO COLLECTION
=========================================== */
.pd-shearwater-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pd-shearwater-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 32px 26px;
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-areas:
    "image    features"
    "name     features"
    "desc     desc"
    "cta      cta";
  column-gap: 20px;
  row-gap: 10px;
  align-items: start;
  overflow: visible;
}

.pd-shearwater-badge{
  position: absolute;
  top: -12px;
  right: 32px;
  background: linear-gradient(135deg, var(--pd-blue), var(--pd-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

.pd-shearwater-image{
  grid-area: image;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -30px;
}

.pd-shearwater-image img{
  max-width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.pd-shearwater-image img:hover{
  transform: scale(1.08) translateY(-2px);
}

.pd-shearwater-info{
  grid-area: name;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pd-shearwater-name{
  font-size: 19px;
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0;
}

.pd-shearwater-features{
  grid-area: features;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(0,0,0,0.1);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: start;
  margin-top: 0;
}

.pd-shearwater-features li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000;
}

.pd-shearwater-icon{
  width: 18px;
  height: 18px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-blue);
}

.pd-shearwater-icon svg{
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.pd-shearwater-desc{
  grid-area: desc;
  font-size: 14px;
  line-height: 1.5;
  color: var(--pd-gray);
  text-align: left;
  margin: 2px 0 0;
}

.pd-shearwater-card--split .pd-shearwater-desc{
  text-align: center;
}

.pd-shearwater-cta{
  grid-area: cta;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  margin-top: 6px;
}

@media (max-width: 900px){
  .pd-shearwater-grid{ grid-template-columns: 1fr; }
  .pd-shearwater-card{
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "image"
      "features"
      "desc"
      "cta";
    text-align: center;
    justify-items: center;
    padding: 28px 24px 26px;
  }
  .pd-shearwater-image{ justify-self: center; margin-top: 4px; }
  .pd-shearwater-image img:hover{ transform: scale(1.05); }
  .pd-shearwater-features{
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    align-items: center;
    text-align: center;
  }
}

/* ===== LIGHTBOX SHEARWATER x AVELO ===== */
.pd-shearwater-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pd-shearwater-lightbox.is-open{
  opacity: 1;
  visibility: visible;
}

.pd-shearwater-lightbox-img{
  max-width: 90%;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

.pd-shearwater-lightbox.is-open .pd-shearwater-lightbox-img{
  transform: scale(1);
}

.pd-shearwater-lightbox-close{
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pd-shearwater-lightbox-close:hover{
  color: var(--pd-blue);
}

.pd-shearwater-lightbox-caption{
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pd-shearwater-section{
  position: relative;
  background: url('images/equipamiento.png') center center / cover no-repeat;
}

.pd-shearwater-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,12,16,0.75); /* mismo tono que --pd-dark, ajusta la opacidad a gusto */
  z-index: 0;
}

.pd-shearwater-section > *{
  position: relative;
  z-index: 1;
}
