/* ============================================================
   NUEVO HERO — TRANSPORTE DE PERSONAL
   Agregar a personal.css (reemplaza o añade debajo de lo existente)
   ============================================================ */

/* ===== CONTENEDOR PRINCIPAL ===== */
.personal-hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #1a1a1a 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    padding: 110px 5% 80px;
}

/* ===== FONDO: MAPA DIGITAL (mismo sistema que carga) ===== */
.ph-map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.ph-digital-map {
    width: 100%;
    height: 100%;
    opacity: 0.20;
}

.ph-route-path {
    fill: none;
    stroke: #ffcc00;
    stroke-width: 1.5;
    opacity: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: phDrawRoute 15s infinite linear;
}

@keyframes phDrawRoute {
    0%   { stroke-dashoffset: 1000; opacity: 0; }
    20%  { opacity: 0.35; }
    80%  { opacity: 0.35; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

.ph-route-node {
    fill: #ffcc00;
    opacity: 0;
    animation: phNodePulse 3s infinite ease-in-out;
}

@keyframes phNodePulse {
    0%, 100% { opacity: 0.3; r: 4; }
    50%       { opacity: 0.8; r: 6; }
}

.ph-map-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 204, 0, 0.05) 0%, transparent 60%);
}

/* ===== LÍNEA DE ESCANEO ===== */
.ph-scan-line {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffcc00 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.8);
    animation: phScan 10s infinite linear;
    z-index: 5;
}

@keyframes phScan {
    0%   { transform: translateY(0);     opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* ===== LAYOUT SPLIT ===== */
.ph-split-layout {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

/* ===== COLUMNA IZQUIERDA: CONTENIDO ===== */
.ph-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Badge */
.ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: #ffcc00;
    padding: 11px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.ph-pulse-dot {
    width: 8px;
    height: 8px;
    background: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.8);
    animation: phPulse 2s infinite;
    flex-shrink: 0;
}

.ph-pulse-dot--small {
    width: 6px;
    height: 6px;
}

@keyframes phPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.2); }
}

/* Título */
.ph-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0;
}

.ph-title-highlight {
    display: block;
    color: #ffcc00;
    text-shadow: 0 0 40px rgba(255, 204, 0, 0.45);
    position: relative;
    margin-top: 8px;
}

.ph-title-highlight::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, transparent);
    animation: phLineExpand 2s ease-out forwards;
}

@keyframes phLineExpand {
    from { width: 0; }
    to   { width: 180px; }
}

/* Subtítulo */
.ph-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Beneficios */
.ph-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ph-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 18px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.ph-benefit:hover {
    border-color: rgba(255, 204, 0, 0.35);
    background: rgba(255, 204, 0, 0.05);
    transform: translateY(-3px);
}

.ph-benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ph-benefit:hover .ph-benefit-icon {
    background: #ffcc00;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.ph-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ph-benefit-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.ph-benefit-text span {
    font-size: 0.78rem;
    color: #888;
}

/* Botones CTA */
.ph-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ph-btn-primary {
    background: linear-gradient(135deg, #ffcc00 0%, #ffd633 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(255, 204, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

/* .btn-content y .btn-glow viven en base.css */
.ph-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 204, 0, 0.6);
}

.ph-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}

.ph-btn-secondary:hover {
    border-color: rgba(255, 204, 0, 0.5);
    color: #ffcc00;
    transform: translateY(-3px);
}

/* Trust bar */
.ph-trust-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ph-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

.ph-trust-item i {
    color: #ffcc00;
    font-size: 14px;
}

.ph-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===== COLUMNA DERECHA: FOTO ===== */
.ph-photo-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-photo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
}

/* Etiqueta de esquina superior */
.ph-frame-label {
    position: absolute;
    top: -14px;
    left: 20px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: #ffcc00;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Contenedor de la foto */
.ph-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 204, 0, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 204, 0, 0.08) inset;
    background: #0d0d0d;
}

/* La imagen real */
.ph-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 2;
    transition: transform 0.6s ease;
}

.ph-photo-frame:hover .ph-photo-img {
    transform: scale(1.03);
}

/* Línea decorativa lateral derecha */
.ph-frame-accent-line {
    position: absolute;
    top: 20%;
    right: -12px;
    width: 3px;
    height: 50%;
    background: linear-gradient(180deg, transparent, #ffcc00, transparent);
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
    animation: phLineGlow 3s infinite ease-in-out;
}

@keyframes phLineGlow {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* Chip flotante inferior */
.ph-photo-chip {
    position: absolute;
    bottom: -18px;
    right: 24px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ccc;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.ph-photo-chip i {
    color: #ffcc00;
}

/* ===== SCROLL HINT ===== */
.ph-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s;
    animation: phScrollBounce 2s infinite ease-in-out;
}

.ph-scroll-hint:hover { color: #ffcc00; }

@keyframes phScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== ANIMACIONES DE ENTRADA ===== */
.animate-slideIn {
    opacity: 0;
    transform: translateY(30px);
    animation: phSlideIn 0.8s ease-out forwards;
}

.ph-content.animate-slideIn          { animation-delay: 0.1s; }
.ph-cta-group.animate-slideIn        { animation-delay: 0.3s; }
.ph-trust-bar.animate-slideIn        { animation-delay: 0.5s; }
.ph-photo-column.animate-slideIn     { animation-delay: 0.25s; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ph-split-layout {
        grid-template-columns: 1fr 340px;
        gap: 40px;
    }
    .ph-title { font-size: 3.2rem; }
}

@media (max-width: 768px) {
    .personal-hero {
        padding: 100px 5% 100px;
    }

    .ph-split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* En móvil la foto va ARRIBA del texto */
    .ph-photo-column {
        order: -1;
    }

    .ph-photo-frame {
        max-width: 320px;
        margin: 0 auto;
    }

    .ph-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .ph-benefits {
        grid-template-columns: 1fr;
    }

    .ph-cta-group {
        flex-direction: column;
    }

    .ph-btn-primary,
    .ph-btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .ph-trust-bar {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .ph-title { font-size: 2.2rem; }
    .ph-frame-accent-line { display: none; }
}


/* ============================================================
   SECCIÓN: QUÉ INCLUYE NUESTRO SERVICIO — TRANSPORTE PERSONAL
   Añadir a personal.css
   ============================================================ */

/* ===== CONTENEDOR PRINCIPAL ===== */
.ps-section {
    width: 100%;
    background: #000;
    padding: 100px 5%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Textura de fondo sutil */
.ps-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 204, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 204, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ===== ENCABEZADO ===== */
.ps-header {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ps-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.3);
    color: #ffcc00;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ps-badge-dot {
    width: 7px;
    height: 7px;
    background: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.8);
    animation: dotPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}

.ps-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin: 0;
}

.ps-title-accent {
    color: #ffcc00;
    text-shadow: 0 0 40px rgba(255, 204, 0, 0.4);
}

.ps-description {
    font-size: 1.1rem;
    color: #888;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
    max-width: 560px;
}

/* ===== LAYOUT PRINCIPAL ===== */
.ps-main-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto 80px;
}

/* ===== LADO FOTO ===== */
.ps-photo-side {
    position: sticky;
    top: 100px;
}

.ps-photo-frame {
    position: relative;
}

.ps-photo-label {
    position: absolute;
    top: -14px;
    left: 20px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    border: 1px solid rgba(255, 204, 0, 0.35);
    color: #aaa;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.ps-photo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 204, 0, 0.3);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 30px 80px rgba(0, 0, 0, 0.7),
        inset 0 0 40px rgba(255, 204, 0, 0.04);
    background: #0d0d0d;
}

.ps-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 2;
    transition: transform 0.6s ease;
}

.ps-photo-frame:hover .ps-photo-img {
    transform: scale(1.04);
}

/* Overlay gradiente inferior */
.ps-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 3;
    pointer-events: none;
}

/* Placeholder */
.ps-photo--placeholder .ps-photo-img { display: none; }

.ps-placeholder-content {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 30px;
    z-index: 2;
}

.ps-photo--placeholder .ps-placeholder-content { display: flex; }

.ps-placeholder-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 204, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 204, 0, 0.5);
    font-size: 26px;
    animation: psPlaceholderPulse 3s infinite ease-in-out;
}

@keyframes psPlaceholderPulse {
    0%, 100% { border-color: rgba(255,204,0,0.3); color: rgba(255,204,0,0.4); }
    50%       { border-color: rgba(255,204,0,0.7); color: rgba(255,204,0,0.8); }
}

.ps-placeholder-content p {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.ps-placeholder-content span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}

.ps-placeholder-content code {
    background: rgba(255,204,0,0.1);
    color: #ffcc00;
    padding: 1px 5px;
    border-radius: 4px;
}

/* Chips flotantes */
.ps-photo-chip {
    position: absolute;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    white-space: nowrap;
}

.ps-photo-chip i { color: #ffcc00; }

.ps-chip-top {
    top: 20px;
    right: 20px;
}

.ps-chip-bottom {
    bottom: 20px;
    left: 20px;
}

/* Línea decorativa */
.ps-photo-accent-line {
    position: absolute;
    top: 15%;
    left: -10px;
    width: 3px;
    height: 45%;
    background: linear-gradient(180deg, transparent, #ffcc00, transparent);
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.5);
    animation: phLineGlow 3s infinite ease-in-out;
}

/* ===== PILARES ===== */
.ps-pillars-side {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ps-pillar {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s ease;
    cursor: default;
}

.ps-pillar:first-child { padding-top: 0; }
.ps-pillar:last-child  { border-bottom: none; }

.ps-pillar:hover {
    padding-left: 8px;
}

.ps-pillar-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-size: 18px;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.ps-pillar:hover .ps-pillar-icon {
    background: #ffcc00;
    color: #000;
    border-color: #ffcc00;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.4);
    transform: scale(1.08);
}

.ps-pillar-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ps-pillar-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.3px;
}

.ps-pillar-content p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.ps-pillar:hover .ps-pillar-content p {
    color: #aaa;
}

/* ===== FRANJA CTA INFERIOR ===== */
.ps-cta-strip {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,204,0,0.06) 0%, rgba(255,204,0,0.02) 100%);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 20px;
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.ps-cta-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ps-cta-text strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.ps-cta-text span {
    font-size: 0.95rem;
    color: #888;
}

.ps-cta-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #ffcc00 0%, #ffd633 100%);
    color: #000;
    border-radius: 12px;
    padding: 18px 44px;
    font-size: 1.05rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(255, 204, 0, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.ps-btn-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.ps-btn-glow {
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width 0.6s, height 0.6s;
    z-index: 1;
}

.ps-cta-btn:hover .ps-btn-glow { width: 300px; height: 300px; }
.ps-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 204, 0, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ps-main-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ps-photo-side {
        position: relative;
        top: auto;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .ps-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .ps-section { padding: 80px 5%; }

    .ps-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .ps-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 28px;
    }

    .ps-cta-btn { width: 100%; text-align: center; justify-content: center; }
    .ps-btn-inner { justify-content: center; }
}

@media (max-width: 480px) {
    .ps-title { font-size: 1.9rem; }
    .ps-photo-accent-line { display: none; }
    .ps-chip-top { display: none; }
}

/* ============================================================
   SECCIÓN: NUESTRAS UNIDADES
   ============================================================ */

.pu-section {
    width: 100%;
    background: #fff;
    padding: 100px 5% 100px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ── Encabezado ── */
.pu-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.pu-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: #7a5f00;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pu-badge-dot {
    width: 7px;
    height: 7px;
    background: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 204, 0, 0.8);
    flex-shrink: 0;
    animation: dotPulse 2s infinite ease-in-out;
}


.pu-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #111;
    margin: 0;
}

.pu-title-accent { color: #c9a000; }

.pu-subtitle {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ── Layout split ── */
.pu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Foto ── */
.pu-photo-side { position: relative; }

.pu-photo-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f0f0ee;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pu-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pu-photo-wrap:hover .pu-photo-img { transform: scale(1.03); }

.pu-photo-chip {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pu-photo-chip i { color: #ffcc00; }

/* ── Contenido ── */
.pu-content-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Stat grande */
.pu-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ececec;
}

.pu-stat-num {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #111;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pu-stat-plus {
    font-size: 0.55em;
    vertical-align: super;
    color: #ffcc00;
}

.pu-stat-label {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
    line-height: 1.4;
    max-width: 180px;
}

.pu-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ── Grid de equipamiento ── */
.pu-equip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pu-equip-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid #ececec;
    border-radius: 14px;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pu-equip-item:hover {
    border-color: #ffcc00;
    background: #fffdf0;
}

.pu-equip-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.pu-equip-item:hover .pu-equip-icon {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #000;
}

.pu-equip-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pu-equip-text strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

.pu-equip-text span {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pu-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pu-photo-wrap {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 580px) {
    .pu-section { padding: 70px 5% 70px; }
    .pu-equip-grid { grid-template-columns: 1fr; }
    .pu-stat-num { font-size: 3rem; }
}

/* ============================================================
   SECCIÓN: POR QUÉ EL DIAMANTE
   ============================================================ */

.pw-section {
    width: 100%;
    background: #fff;
    padding: 100px 5%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border-top: 1px solid #f0f0ee;
}

/* ── Encabezado ── */
.pw-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.pw-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: #7a5f00;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pw-badge-dot {
    width: 7px;
    height: 7px;
    background: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 204, 0, 0.8);
    flex-shrink: 0;
    animation: dotPulse 2s infinite ease-in-out;
}


.pw-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #111;
    margin: 0;
}

.pw-title-accent { color: #c9a000; }

.pw-subtitle {
    font-size: 1rem;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ── Grid de tarjetas ── */
.pw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
}

/* ── Tarjeta ── */
.pw-card {
    padding: 32px 28px;
    border: 1px solid #ececea;
    border-radius: 18px;
    background: #fafaf8;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.pw-card:hover {
    border-color: #ffcc00;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
    background: #fff;
}

.pw-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a000;
    font-size: 18px;
    transition: background 0.22s ease, color 0.22s ease;
}

.pw-card:hover .pw-card-icon {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #000;
}

.pw-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.pw-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* ── CTA inferior ── */
.pw-cta {
    text-align: center;
    margin-top: 56px;
}

.pw-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border: 2px solid #111;
    border-radius: 12px;
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pw-cta-btn:hover {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #000;
    transform: translateY(-2px);
}

.pw-cta-btn i {
    transition: transform 0.2s ease;
}

.pw-cta-btn:hover i {
    transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pw-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .pw-section { padding: 70px 5%; }
    .pw-grid { grid-template-columns: 1fr; }
}