:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --font-main: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; text-align: justify; text-justify: inter-word; }

/* --- NUEVO ESTILO PARA EL LOGO IMAGEN DEL HOME --- */
.main-logo-img {
    width: 100%;
    max-width: 2200px;
    height: auto;
    display: block;
    margin-left: -5%;
    transform: translateX(-105%);
    animation: revealRight 1.4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@media (max-width: 900px) {
    .main-logo-img {
        width: 110%;
        margin-left: -5%;
    }
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Estilo PDF */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 5%;
    z-index: 3000;
    background: white;
}

.main-header-pot{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 5%;
    z-index: 3000;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-brand {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-start;
    gap: 30px;
}

.menu-links {
    display: flex;
    gap: 20px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-color);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    position: relative;
    transition: opacity 0.3s;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0; height: 1px;
    bottom: -2px; left: 0;
    background: black;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-item:hover::after { width: 100%; }

.lang-selector {
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
}

.ig-cel {
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
    display: none;
}

/* Hero Central */
.hero-typography {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
}

.reveal-container {
    width: 100%;
    max-width: 90vw;
    text-align: left;
    overflow: hidden;
}

.main-brand {
    font-size: clamp(5rem, 20vw, 22rem);
    font-weight: 700;
    letter-spacing: -8px;
    line-height: 0.75;
    margin-left: -5px;
    transform: translateX(-105%);
    animation: revealRight 1.4s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    font-family: "Figtree", sans-serif;
    font-weight: 200;
}

.sub-brand {
    font-size: clamp(1rem, .3vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 25px;
    line-height: 1;
    margin-top: 0; 
    text-transform: uppercase;
    display: block;
    width: 100%;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
    color: #616161;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    padding-left: 10px;
    padding-top: 15px;
}

@keyframes revealRight {
    to { transform: translateX(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 25px 5%;
    background: white;
    font-size: 10px;
    letter-spacing: 1.5px;
    z-index: 1001;
}

.footer-content { display: flex; justify-content: space-between;}
.footer-cel { display: none; justify-content: space-between;}
.footer-link { text-decoration: none; color: black; display: block }

.menu-toggle { display: none; cursor: pointer; background: none; border: none; }

/* Desktop Reponsive */
@media (max-width: 1440px) {
    .nav-item { font-size: 8px; letter-spacing: 1.1px; }
    .menu-links { display: flex; gap: 15px; }
}

@media (max-width: 1366px) {
    .nav-item { font-size: 7px; letter-spacing: 1.1px; }
    .menu-links { display: flex; gap: 14px; }
}

@media (max-width: 1280px) {
    .nav-item { font-size: 7px; letter-spacing: 1.1px; }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 5%;
        top: 30px;
        width: 25px; 
        height: 15px;
        z-index: 3000;
    }
    .menu-toggle span {
        display: block;
        width: 100%; height: 2px;
        background: black;
        margin-bottom: 5px;
        transition: 0.3s;
    }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%; 
        width: 100%; height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        gap: 40px;
        z-index: 2500; 
        pointer-events: all;
    }
    .nav-menu.active { right: 0; }
    .menu-links { flex-direction: column; align-items: center; gap: 30px; }
    .nav-item { font-size: 20px; letter-spacing: 1.5px; }
}

@media (max-width: 900px) {
    .ig-cel {
        font-size: 10px;
        letter-spacing: 1px;
        color: #888;
        display: block;
    }

    .footer-content { display: flex; justify-content: space-between;}
    .footer-cel { display: flex; justify-content: space-between;}
    
    .sticky-footer {
        font-size: 8px;
        letter-spacing: 1px;
        z-index: 1001;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        right: 5%;
        top: 30px;
        width: 25px; 
        height: 15px;
        z-index: 3000;
    }
    .menu-toggle span {
        display: block;
        width: 100%; height: 2px;
        background: black;
        margin-bottom: 5px;
        transition: 0.3s;
    }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%; 
        width: 100%; height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        gap: 40px;
        z-index: 2500; 
        pointer-events: all;
    }
    .nav-menu.active { right: 0; }
    .menu-links { flex-direction: column; align-items: center; gap: 30px; }
    .nav-item { font-size: 20px; letter-spacing: 2px; }
    .header-brand { font-size: 14px; }
}

/* PÁGINA NOSOTROS */
.active-page::after { width: 100% !important; }

.content-wrapper {
    min-height: 100vh;
    padding: 150px 5% 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero {
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.3s;
}

.section-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: -4px;
    line-height: 0.9;
}

.about-text-container {
    max-width: 600px;
    align-self: flex-start;
}

.about-lead {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.about-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

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

@media (max-width: 900px) {
    .content-wrapper { padding-top: 120px; }
    .section-title { font-size: 4rem; letter-spacing: -2px; }
    .about-lead { font-size: 1.2rem; }
}

.about-hero-image {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
}

.image-container {
    width: 90%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
}

.hero-title-overlay {
    position: absolute;
    bottom: -5%;
    left: 0;
    font-size: clamp(4rem, 15vw, 18rem);
    font-weight: 700;
    letter-spacing: -8px;
    line-height: 0.8;
    color: var(--text-color);
    z-index: 10;
}

.about-split {
    display: flex;
    width: 90%;
    margin: 150px auto;
    gap: 10%;
    align-items: center;
    text-align:left;
}

.split-left { flex: 1; }

.text-block p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 450px;
}

.split-right { flex: 1.2; }

.split-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 900px) {
    .about-split {
        flex-direction: column;
        margin: 40px auto 60px auto; 
        gap: 80px; 
        text-align: justify;
    }
    .hero-title-overlay {
        font-size: 5rem;
        bottom: 0;
        letter-spacing: -2px;
    }
    .image-container { height: 60vh; }
    .text-block p { font-size: 1rem; }
}

.reveal-effect {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    z-index: 1000;
}

.reveal-effect img {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-effect.is-visible img { opacity: 1; transform: scale(1); }
.scroll-move { will-change: transform; transition: transform 0.1s linear; }

/* SECCIÓN MODELOS */
.models-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    width: 100%;
    margin: 50px auto 100px;
}

.model-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f9f9f9;
}

.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.model-info {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.model-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #000000;
}

.model-detail {
    font-size: 10px;
    letter-spacing: 1px;
    color: #555;
}

.model-card a { text-decoration: none; color: #000000; }
.model-card a:hover, .model-card a:visited, .model-card a:active { color: #000000; }
.model-card:hover img { transform: scale(1.05); }
.model-card:hover .model-info { opacity: 1; }

@media (max-width: 1200px) {
    .models-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .models-grid { 
        grid-template-columns: repeat(2, 1fr); 
        width: 100%;
        gap: 2px;
    }
    
    .model-info {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
        height: 40%;
        top: auto;
        bottom: 0;
        backdrop-filter: none;
        display: flex;
        justify-content: flex-end;
        padding-bottom: 15px;
    }
    
    .model-name { 
        font-size: 12px; 
        color: #ffffff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .model-detail { 
        font-size: 10px; 
        color: rgba(255, 255, 255, 0.8);
    }
    
    .model-card a { text-decoration: none; color: #ffffff; }
    .model-card a:hover, .model-card a:visited, .model-card a:active { color: #ffffff; }
}

/* PÁGINA SÉ MODELO */
.hero-apply {
    display: flex;
    height: 100vh;
    align-items: center;
}

.hero-apply-left {
    flex: 1;
    padding-left: 5%;
    overflow: hidden;
}

.apply-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 700;
    line-height: 0.75;
    letter-spacing: -15px;
    margin-top: 200px;
}

.hero-apply-right {
    flex: 1;
    height: 100vh;
    z-index: 1000;
}

.hero-apply-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apply-instructions-70-30 {
    display: flex;
    width: 90%;
    margin: 100px auto;
    gap: 5%;
    background-color: #fff;
    align-items: flex-start;
}

.instructions-left { flex: 0 0 70%; }

.instruction-label {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: left;
}

.reference-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.ref-item {
    aspect-ratio: 3/4;
    background: #f4f4f4;
    overflow: hidden;
}

.ref-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructions-right {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 60px;
}

.email-container { margin-bottom: 60px; }

.big-email {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    text-decoration: none;
    color: #000;
    letter-spacing: -1px;
    line-height: 1;
    display: block;
    word-break: break-all;
}

.requirements-box {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.req-title {
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.req-list {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .apply-instructions-70-30 { flex-direction: column; gap: 50px; }
    .instructions-left, .instructions-right { flex: 0 0 100%; width: 100%; }
    .instructions-right { padding-top: 0; }
    .reference-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .big-email { font-size: clamp(1rem, 2.5vw, 1.5rem); font-weight: 700; letter-spacing: -1px; display: block; word-break: break-all; }
}

@media (max-width: 768px) {
    .hero-apply { flex-direction: column-reverse; height: auto; padding-top: -30px; }
    .hero-apply-left { padding: 40px 5%; }
    .hero-apply-right { width: 100%; height: 50vh; }
    .apply-title { font-size: 4rem; letter-spacing: -2px; }
}

/* PORTAFOLIO DE MODELO */
.portfolio-container {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  min-height: 100vh;
  background-color: #ffffff;
  position: absolute;
  margin-top: 0px;
  right: 0px;
}

.model-fixed-info {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 5%;
    z-index: 10;
    opacity: 1 !important; 
    pointer-events: none;
}

.info-content { pointer-events: auto; }

.model-main-name {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-family: "Libre Caslon Display", serif;
}

.model-instagram {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
}

.model-instagram::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background: black;
    transition: width 0.3s ease;
}

.model-instagram:hover::after { width: 100%; }

.scroll-indicator {
    margin-top: 50px;
    opacity: 1;
    animation: bounce 2s infinite;
}

/* FOOTER PORTAFOLIO DEFINITIVO (DESKTOP) */
.portfolio-footer {
    padding: 30px 5%;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    z-index: 1001;
}

.portfolio-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-identity-mobile { display: none; }

/* === CORRECCIÓN DESKTOP AQUÍ === */
.footer-email-desktop { flex: 0 0 50%; }

.model-data-grid {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-start;
    gap: 0;
}
/* ================================ */

.data-column {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-column span {
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
    text-transform: uppercase;
}

/* --- CORRECCIÓN RESPONSIVE PORTAFOLIO MÓVIL --- */
@media (max-width: 900px) {
    .portfolio-footer {
        padding: 20px 5%;
    }

    .portfolio-container {
        display: block; 
        margin-top: 80px; 
        width: 100%;
        margin-bottom: 150px;
    }

    .model-fixed-info {
        position: relative;
        width: 100%;
        height: auto;
        padding: 40px 5%;
        display: block;
        opacity: 1 !important;
        pointer-events: auto;
    }

    .portfolio-gallery {
        width: 100%;
        margin-left: 0;
        display: block;
        margin-bottom: 200px;
    }

    .gallery-item {
        width: 100%;
        height: auto; 
        margin-bottom: 10px; 
    }

    .gallery-item img {
        width: 100%;
        height: auto; 
        display: block;
        object-fit: contain; 
    }

    /* Ajuste Footer Móvil */
    .portfolio-footer .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "identity stats"
            "identity stats";
        align-items: start;
        gap: 20px 0;
    }

    .footer-email-desktop { display: none !important; }

    .footer-identity-mobile {
        display: block !important;
        grid-area: identity;
        
        padding-right: 15px;
    }

    .model-main-name-mobile {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 5px;
		padding-top: -5px;
		margin-top: -4px;
		
		line-height: 24px;
		text-transform: uppercase;
    }

    .model-instagram-mobile {
        font-size: 11px;
        text-decoration: none;
        color: #888;
        letter-spacing: 1px;
    }

    /* === SOLUCIÓN ESPACIO EN BLANCO FOOTER === */
    .model-data-grid {
        grid-area: stats;
        flex: 1;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 15%; 
        padding-left: 0px; 
    }

    .data-column {
        flex: 1;
        width: 100%;
        gap: 10px; 
    }

    .data-column span {
        font-size: 11px; 
        letter-spacing: 1.5px; 
        line-height: 1.4;
    }
    
    .hero-full-height {
        height: 60vh !important; 
        width: 100vw !important;
        margin-left: calc(-50vw + 50%); 
    }

    .hero-full-height img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; 
        object-position: center;
    }

    .mail-icon-responsive {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed; 
        right: 0;
        bottom: 0;
        width: 80px; 
        height: 80px;
        background-color: #f4f4f4;
        z-index: 1002; 
    }
    
    .nivek{ display: none; }
    .nivek a{ color: #c4c4c4; }

    .mail-icon-responsive a {
        display: flex;
        color: #000;
    }

    .portfolio-footer {
        padding-right: 90px; 
    }
}

.hero-full-height { height: 100vh !important; }

.page-portafolio .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scroll-move-right, .scroll-move-left {
    will-change: transform;
    transition: transform 0.1s linear;
}

.mail-icon-responsive { display: none; }

.nivek{
    color: #c4c4c4;
    font-size: 8px;
    position: absolute;
    rotate: 90deg;
    z-index: 20000;
    right: 0px;
    bottom: 40px;
    display: block;
}

.nivek a{ color: #c4c4c4; }