:root {
    --bg-dark: #12100e;
    --card-dark: #1a1614;
    --border-color: #2a2420;
    --accent-orange: #c86d44;
    --text-main: #f5f2eb;
    --text-muted: #a39c94;
    --bg-light-section: #fbf9f5;
    --text-dark: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-badge {
    background: var(--accent-orange);
    color: white;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.logo-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
}

.logo-text small {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after, .navbar nav ul li a.active::after {
    width: 100%;
}

.navbar nav ul li a:hover, .navbar nav ul li a.active {
    color: var(--text-main);
}


/* Configuración básica para toda la pantalla */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Contenedor principal con la imagen de fondo */
.contenedor-fondo {
    background-image: url('imagenes/img6.jpeg'); /* Reemplaza con el nombre de tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #333;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* El rectángulo blanco translúcido con el texto adentro */
.caja-blanca {
    background-color: rgba(18, 14, 14, 0.87);
    border-radius: 15px;
    width: 60%;
    padding: 40px; /* Esto le da espacio interno para que la caja crezca automáticamente con el texto */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Estilos de las letras dentro de la caja */
.caja-blanca h1 {
    font-size: 3em;
    margin: 0 0 15px 0;
    color: #df7b45;
}

.caja-blanca p {
    font-size: 1.2em;
    margin: 0;
    color: #fcfcfd;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .caja-blanca {
        width: 85%;
        padding: 20px;
    }
    .caja-blanca h1 { font-size: 2em; }
    .caja-blanca p { font-size: 1em; }
}



:root {
    --bg-dark: #12090C;
    --card-dark: #2a2420;
    --accent-pink: #c86d44;
    --accent-rose: #f9f5f6;
    --text-light: #F4ECE1;
    --text-muted: #fefdfd;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    padding: 20px;
}

/* CLASES DE ANIMACIÓN JS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #2a2420 0%, #160A0E 100%);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 168, 179, 0.15);
}

.hero-top-info .role-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-pink);
    line-height: 1.4;
}

.hero-main-title h1 {
    font-size: 11vw;
    font-weight: 800;
    text-align: center;
    color: var(--accent-pink);
    line-height: 0.85;
    letter-spacing: -2px;
    margin: 20px 0;
    opacity: 0.9;
}

.hero-bottom-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: flex-end;
    gap: 20px;
    margin-top: 20px;
}

.hero-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: var(--accent-pink);
    line-height: 1.1;
}

.hero-image-box {
    text-align: center;
}

.hero-img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 140px 140px 15px 15px;
    border: 2px solid rgba(232, 168, 179, 0.3);
}

.hero-bio h2 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.hero-bio h2 span {
    color: var(--accent-pink);
    font-size: 0.9rem;
}

.hero-bio p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 15px;
}

.location-tag .sub {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
    letter-spacing: 1px;
}

.location-tag strong {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--white);
}

/* SELECTED WORK SECTION */
.works-section {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 25px;
    border: 1px solid rgba(232, 168, 179, 0.1);
}

.works-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.works-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-pink);
}

.works-header span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.work-card {
    background: #25161C;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-pink);
    opacity: 0.6;
}

.work-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.work-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.work-img-right img, .work-img-center img, .work-img-magazine img, .work-img-tag img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    margin-top: 15px;
}

.work-card.dark-wide {
    grid-column: span 1.5;
    background: #1B0F13;
}

/* SYSTEMS & PROCESS SECTION */
.systems-process-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.systems-box, .process-box, .collage-box {
    background: var(--card-dark);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(232, 168, 179, 0.1);
}

.systems-box h3, .process-box h3 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-pink);
    margin-bottom: 25px;
}

.system-block {
    margin-bottom: 20px;
}

.system-block .label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.logo-suite-preview {
    background: #25161C;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
}

.color-palette-row {
    display: flex;
    height: 35px;
    border-radius: 8px;
    overflow: hidden;
}

.color-palette-row span {
    flex: 1;
}

.typography-row {
    display: flex;
    gap: 20px;
}

.typography-row div strong {
    font-size: 1.2rem;
    font-family: serif;
    display: block;
}

.typography-row div span {
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* PROCESS LIST */
.process-list {
    list-style: none;
}

.process-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.p-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-pink);
}

.process-list strong {
    font-size: 0.85rem;
    display: block;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.process-list p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* COLLAGE BOX */
.collage-box {
    background: #f8f5f6;
    color: #12090C;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.collage-note p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
}

.collage-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
    border: 2px solid rgba(0,0,0,0.1);
}

/* FOOTER CTA */
.footer-section {
    background: linear-gradient(135deg, #1B0F13 0%, #2B161F 100%);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    border: 1px solid rgba(232, 168, 179, 0.15);
}

.footer-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.italic-gold {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-pink);
}

.footer-center-avatar img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(232, 168, 179, 0.3);
    margin: 0 auto;
    display: block;
}

.footer-right h3 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-pink);
    margin-bottom: 15px;
}

.availability {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-links-list p {
    font-size: 0.8rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--card-dark);
    border-top: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 60px 8% 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
    line-height: 1.5;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}
