@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;900&family=Poppins:wght@400;700;900&family=Syncopate:wght@700&display=swap');

:root {
    --pd-red: #E0021A;
    --pd-orange: #F29602;
    --pd-blue: #6590C2;
    --pd-green: #0E892E;
}

html, body {
    background-color: #060606;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    overflow-x: clip;
    max-width: 100vw;
}

/* --- MENÚ DE NAVEGACIÓN FLOTANTE --- */
.pd-navbar {
    position: fixed;
    top: 30px;
    /* ESPACIO DESDE ARRIBA */
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Efecto al scrollear: se pega arriba y se vuelve cristal */
.pd-navbar.is-scrolled {
    top: 0 !important;
    margin-top: 0 !important;
    background: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    width: 92%;
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 89px;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.pd-nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
}

.pd-nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 900;
    opacity: 0.7;
    transition: 0.3s;
}

.pd-nav-menu a:hover {
    opacity: 1;
    color: var(--pd-orange);
}

.btn-contacto {
    border: 1px solid var(--pd-red);
    padding: 12px 25px;
    color: var(--pd-red) !important;
    border-radius: 4px;
    opacity: 1 !important;
    transition: 0.3s;
}

.btn-contacto:hover {
    background: var(--pd-red);
    color: #fff !important;
}

/* --- ESTILOS RESPONSIVE PARA MENÚ HAMBURGUESA --- */
.pd-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 999999;
}

.pd-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}

/* ANIMACIÓN "X" DEL BOTÓN */
.pd-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.pd-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.pd-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .pd-menu-toggle {
        display: flex;
    }

    .pd-nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(6, 6, 6, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999998; /* Un nivel debajo del botón */
    }

    .pd-nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .pd-nav-menu a {
        font-size: 1.5rem;
    }
}

/* --- HERO --- */
.pd-main-hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* overflow: hidden; removido para que las formas bajen con el scroll sin cortarse */
}

.pd-hero-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 0 5%;
}

.pd-phrase-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.pd-pretitle {
    color: var(--pd-orange);
    letter-spacing: 8px;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 25px;
}

.pd-big-phrase {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 11vw, 7.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #ffffff !important;
    /* AHORA BLANCO */
}

.pd-big-phrase span {
    color: var(--pd-red);
}

.pd-hero-desc {
    margin-top: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.6;
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 300;
    color: #fff;
}

/* --- MARCOS DE FONDO MÁS GRUESOS --- */
.pd-bg-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.pd-f {
    position: absolute;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    opacity: 0.5;
}

.s-orange {
    width: 38vw;
    height: 38vw;
    border-color: var(--pd-orange);
    top: -8%;
    left: -10%;
    transform: rotate(15deg);
}

.s-blue {
    width: 28vw;
    height: 42vw;
    border-color: var(--pd-blue);
    top: 12%;
    right: -8%;
    border-radius: 100px;
    transform: rotate(-10deg);
}

.s-green {
    width: 48vw;
    height: 28vw;
    border-color: var(--pd-green);
    bottom: -8%;
    right: 5%;
    transform: rotate(5deg);
}

.s-red {
    width: 150px;
    height: 180px;
    border-color: var(--pd-red);
    bottom: 12%;
    left: 8%;
    background: rgba(224, 2, 26, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'poppins', sans-serif;
    font-size: 2.8rem;
    color: var(--pd-red);
    font-weight: 900;
    box-shadow: 0 0 40px rgba(224, 2, 26, 0.2);
}

/* Nuevas piezas "Abstract Chain" */
.s-orange-2 {
    width: 38vw;
    height: 38vw;
    border-color: var(--pd-orange);
    top: -10%;
    right: -25%;
    transform: rotate(45deg);
    opacity: 0.5;
}

.s-blue-2 {
    width: 28vw;
    height: 42vw;
    border-color: var(--pd-blue);
    bottom: -10%;
    left: -10%;
    transform: rotate(-25deg);
    opacity: 0.5;
    border-radius: 100px;
}

.s-green-2 {
    width: 48vw;
    height: 28vw;
    border-color: var(--pd-green);
    top: 30%;
    right: -10%;
    transform: rotate(15deg);
    opacity: 0.5;
}

.s-red-2 {
    width: 60px;
    height: 60px;
    border-color: transparent;
    background: rgba(224, 2, 26, 0.5);
    border-radius: 50%;
    bottom: 30%;
    right: 10%;
    box-shadow: 0 0 30px var(--pd-red);
}

/* SCROLL LINE */
.pd-scroll-call {
    position: absolute;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pd-call-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pd-call-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pd-red);
    animation: pdAnim 2.5s infinite;
}

@keyframes pdAnim {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.char {
    display: inline-block;
    transform: translateY(105%);
    opacity: 0;
}

.pd-phrase-wrap h1 span {
    /* Mantenemos herencia normal para las letras y usamos el span original generador desde JS si aplica */
}

/* --- CUSTOM CURSOR --- */
body {
    cursor: none;
    /* Oculta cursor del sistema */
}

.pd-custom-cursor {
    width: 12px;
    height: 12px;
    background-color: var(--pd-red);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
    mix-blend-mode: difference;
}

.pd-custom-cursor.hover-link {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid var(--pd-red);
}

/* --- NUEVAS SECCIONES: STICKY LAYOUT --- */
.pd-section {
    padding: 150px 4%;
    width: 100%;
    box-sizing: border-box;
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.pd-giant-number {
    position: absolute;
    top: -50px;
    left: -5%;
    font-family: 'Poppins', sans-serif;
    font-size: 25vw;
    font-weight: 900;
    line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
    z-index: -1;
    pointer-events: none;
}

.pd-sticky-left {
    flex: 0 0 35%;
    position: sticky;
    top: 150px;
}

.pd-scroll-right {
    flex: 1;
    padding-top: 20px;
}

.pd-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.pd-section-title span {
    color: var(--pd-orange);
    display: block;
}

/* Línea animada bajo título */
.pd-section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 4px;
    background: var(--pd-red);
    margin-top: 15px;
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.pd-section-title.is-visible::after {
    width: 80px;
}

.pd-center-title::after {
    margin: 15px auto 0 auto;
}

.pd-text-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #b0b0b0;
    max-width: 800px;
}

.pd-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.pd-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pd-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.pd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: 0.4s;
}

.pd-card.blue-glow::before {
    background: var(--pd-blue);
}

.pd-card.blue-glow:hover {
    box-shadow: 0 10px 40px rgba(101, 144, 194, 0.2);
    border-color: rgba(101, 144, 194, 0.4);
}

.pd-card.orange-glow::before {
    background: var(--pd-orange);
}

.pd-card.orange-glow:hover {
    box-shadow: 0 10px 40px rgba(242, 150, 2, 0.2);
    border-color: rgba(242, 150, 2, 0.4);
}

.pd-card-title {
    font-family: 'poppins', sans-serif;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pd-card.blue-glow .pd-card-title {
    color: var(--pd-blue);
}

.pd-card.orange-glow .pd-card-title {
    color: var(--pd-orange);
}

.pd-card p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pd-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    color: #e0e0e0;
}

.pd-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.pd-card ul li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--pd-red);
}

.pd-price {
    font-size: 1.2rem;
    font-weight: 900;
    margin-top: 20px;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-btn-outline {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 20px;
}

.pd-btn-outline:hover {
    background: #fff;
    color: #060606;
}

/* Materiales */
.pd-material-tag {
    font-family: 'poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    margin: 10px 0;
    transition: 0.4s;
    cursor: default;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 20px;
}

.pd-material-tag:hover {
    color: #fff;
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.pd-material-tag.m-orange:hover {
    color: var(--pd-orange);
    text-shadow: 0 0 20px rgba(242, 150, 2, 0.5);
}

.pd-material-tag.m-blue:hover {
    color: var(--pd-blue);
    text-shadow: 0 0 20px rgba(101, 144, 194, 0.5);
}

/* --- MASONRY GALLERY & HOLLOW TOGGLES --- */
.pd-hollow-filters {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.pd-hollow-toggle {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    font-family: 'Poppins', sans-serif;
    cursor: none;
    /* custom cursor will handle this */
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
}

.pd-hollow-toggle:hover {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
    transform: translateX(15px);
}

.pd-hollow-toggle.active {
    -webkit-text-stroke: 1px var(--pd-green);
    transform: translateX(20px);
}

.pd-masonry-gallery {
    column-count: 2;
    column-gap: 20px;
    width: 100%;
}

.pd-masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    /* GSAP maneja la opacidad inicial si quieres, por ahora normal */
}

.pd-masonry-card {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    cursor: none;
}

.pd-masonry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.pd-masonry-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: brightness(0.7) contrast(1.1) grayscale(0.2);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-masonry-card:hover img {
    filter: brightness(1) contrast(1.1) grayscale(0);
    transform: scale(1.02);
}

@media (max-width: 600px) {
    .pd-masonry-gallery {
        column-count: 1;
    }

    .pd-hollow-toggle {
        font-size: 3rem;
    }
}

/* --- MARQUEE MARCAS --- */
.pd-marquee-section .pd-section-title::after {
    margin: 15px auto 0 auto;
}

.pd-marquee-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.01) 50%, transparent);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    margin: 40px 0 80px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.pd-marquee-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- CONTACTO 3 COLUMNAS --- */
.pd-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.pd-c-col {
    display: flex;
    flex-direction: column;
}

/* Formulario Nocturno */
.pd-luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pd-input-group input,
.pd-input-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    box-sizing: border-box;
}

.pd-input-group input:focus,
.pd-input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--pd-orange);
    background: rgba(242, 150, 2, 0.05);
}

.pd-btn-submit {
    background: transparent;
    border: 1px solid var(--pd-orange);
    color: var(--pd-orange);
    padding: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: none;
    transition: 0.3s;
    font-family: 'Outfit', sans-serif;
    margin-top: 10px;
}

.pd-btn-submit:hover {
    background: var(--pd-orange);
    color: #000;
    box-shadow: 0 0 20px rgba(242, 150, 2, 0.4);
}

/* Arte Geométrico GSAP "10" */
.pd-c-art {
    align-items: center;
    justify-content: center;
    position: relative;
    perspective: 1000px;
}

/* --- Arte Logo Isotipo CSS Interactivo --- */
.pd-logo-art {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    margin: 0 auto;
}

/* --- Isotipo Nudo Interactivo --- */
/* --- Isotipo Nudo Interactivo --- */
.pd-logo-art {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    margin: 0 auto;
    perspective: 1000px; /* Profundidad 3D */
}

.pd-logo-sq {
    position: absolute;
    object-fit: contain;
    transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1.1);
    transform-style: preserve-3d;
}

/* Reposo: Dimensiones Matemáticas y Esquinas alineadas hacia el centro */
.fig-1 { top: 0; left: 0; width: 60%; height: auto; object-position: top left; z-index: 4; transform: translateY(-18px) translateZ(0); }
.fig-2 { top: 0; right: 0; width: 42%; height: auto; object-position: top right; z-index: 3; transform: translate(10px, -18px) translateZ(0); }
.fig-3 { bottom: 0; left: 0; width: 42%; height: auto; object-position: bottom left; z-index: 2; transform: translateZ(0); }
.fig-4 { bottom: 0; right: 0; width: 62%; height: auto; object-position: bottom right; z-index: 1; transform: translateX(14px) translateZ(0); }
.fig-5 { 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%) translateZ(0); 
    width: 40%; height: auto; 
    object-position: center; 
    z-index: 5; opacity: 0.95; 
}

/* Hover: Expansión Volumétrica 3D y Glow Neon */
.pd-logo-art:hover .fig-1 { 
    top: -22px; left: -22px; 
    transform: translateZ(30px) rotate(-4deg);
    filter: drop-shadow(-8px -8px 15px rgba(242, 150, 2, 0.4)); /* Glow Naranja */
}
.pd-logo-art:hover .fig-2 { 
    top: -22px; right: -22px; 
    transform: translateZ(20px) rotate(4deg);
    filter: drop-shadow(8px -8px 15px rgba(33, 150, 243, 0.4)); /* Glow Azul */
}
.pd-logo-art:hover .fig-3 { 
    bottom: -22px; left: -22px; 
    transform: translateZ(40px) rotate(-4deg);
    filter: drop-shadow(-8px 8px 15px rgba(255, 255, 255, 0.25)); /* Glow Blanco */
}
.pd-logo-art:hover .fig-4 { 
    bottom: -22px; right: -22px; 
    transform: translateZ(25px) rotate(4deg);
    filter: drop-shadow(8px 8px 15px rgba(76, 175, 80, 0.4)); /* Glow Verde */
}
.pd-logo-art:hover .fig-5 {
    transform: translate(-50%, -50%) translateZ(-15px) scale(0.96); /* El núcleo se hunde */
    filter: drop-shadow(0 0 25px rgba(224, 2, 26, 0.7)); /* Glow Rojo Fuerte */
    opacity: 1;
}

/* --- FOOTER INSTITUCIONAL --- */
.pd-footer {
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 4% 0 4%;
    position: relative;
    z-index: 10;
}

.pd-footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1700px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.pd-footer-col {
    display: flex;
    flex-direction: column;
}

.pd-footer-link-bold {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.pd-footer-link-bold:hover { color: var(--pd-orange); }

.pd-social-squares {
    display: flex;
    gap: 15px;
}

.social-sq {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    transition: 0.3s;
}

.social-sq:hover {
    background: var(--pd-orange);
    color: #000;
}

.pd-footer-inner-center {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.pd-footer-h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
}

.pd-footer-link {
    color: #888;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.pd-footer-link:hover { color: #fff; transform: translateX(5px); }

.shark-mot-logo {
    display: inline-block;
    font-weight: 900;
    font-family: 'Syncopate', sans-serif;
    text-align: right;
    margin-bottom: 15px;
}

.pd-footer-text {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

.pd-footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

.pd-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.pd-marquee-container::before,
.pd-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.pd-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #060606, transparent);
}
.pd-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #060606, transparent);
}

.pd-marquee-track {
    display: flex;
    white-space: nowrap;
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 80px;
    padding-right: 80px; 
    animation: marqueeScroll 25s linear infinite;
}

.pd-marquee-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    transition: 0.4s;
    cursor: pointer;
}

.pd-marquee-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: invert(1) grayscale(1) opacity(0.3); /* Forzamos blancos/grises si las marcas son de color oscuro, si son blancas quitamos invert(1) - asumo oscuro */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-marquee-item:hover img {
    filter: invert(1) grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .marquee-group { gap: 40px; padding-right: 40px; }
    .pd-marquee-item { width: 120px; }
    .pd-marquee-item img { max-height: 50px; }
    .pd-marquee-container::before,
    .pd-marquee-container::after { width: 50px; }
}

/* Contacto */
.pd-contact-info {
    font-size: 1.2rem;
    line-height: 2;
    color: #ccc;
    font-weight: 300;
}

.pd-contact-info a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.pd-contact-info a:hover {
    color: var(--pd-green);
}

/* Utilidades JS */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

/* --- HORIZONTAL SCROLL DE SERVICIOS --- */
.h-root-v5 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.h-track-v5 {
    display: flex;
    flex-wrap: nowrap;
    width: 300vw;
    height: 100vh;
}

.h-panel-v5 {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    box-sizing: border-box;
}

.h-grid-v5 {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    z-index: 2;
}

.h-text-side {
    position: relative;
}

.h-num-v5 {
    font-family: 'Outfit', sans-serif;
    font-size: 15rem;
    font-weight: 900;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
    color: transparent;
    position: absolute;
    top: -120px;
    left: -50px;
    line-height: 1;
    z-index: -1;
}

.h-text-side h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.h-text-side h2 span {
    color: var(--pd-orange);
}

.h-text-side p {
    font-size: 1.1rem;
    color: #ccc;
    font-family: 'Outfit', sans-serif;
    margin: 20px 0 40px 0;
    line-height: 1.6;
    max-width: 95%;
}

.h-image-side {
    width: 100%;
}

.h-img-wrap {
    width: 100%;
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .h-root-v5 {
        height: auto;
    }

    .h-track-v5 {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .h-panel-v5 {
        width: 100%;
        height: auto;
        padding: 60px 5%;
    }

    .h-grid-v5 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .h-img-wrap {
        height: 35vh;
    }

    .h-num-v5 {
        font-size: 8rem;
        top: -50px;
        left: -10px;
    }
}

@media (max-width: 992px) {
    .pd-section {
        flex-direction: column;
        gap: 40px;
        padding: 100px 5%;
    }

    .pd-sticky-left {
        position: relative;
        top: 0;
        flex: none;
        width: 100%;
    }

    .pd-scroll-right {
        width: 100%;
        flex: none;
    }

    .pd-giant-number {
        font-size: 45vw;
        top: -20px;
    }

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

    .pd-contact-grid, 
    .pd-footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pd-footer-col {
        align-items: center !important;
        text-align: center !important;
    }

    .shark-mot-logo {
        text-align: center !important;
    }

    .pd-footer-inner-center {
        align-items: center !important;
    }
}

/* BOTON FLOTANTE WHATSAPP */
.pd-wa-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
}

.pd-wa-float svg {
    transition: transform 0.3s;
}

.pd-wa-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 2px 10px 25px rgba(37, 211, 102, 0.6);
}

.pd-wa-float:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

@media (max-width: 768px) {
    .pd-wa-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
}
