/* ═══════════════════════════════════════════
   DIGITÁLGICO v2 — CSS PRINCIPAL
   Colores: edita las variables :root
   Fotos:   busca los comentarios FOTO en page-home.php
═══════════════════════════════════════════ */

:root {
    --black:      #0B0B0B;
    --white:      #F7F7F5;
    --rose:       #A14E5C;
    --grey:       #6B6B6B;
    --grey-light: #E8E8E6;
    --radius:     10px;   /* esquinas redondeadas de todas las fotos */
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

/* ── NAV ──────────────────────────────── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 24px 60px;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
    background: rgba(247,247,245,0.96);
    backdrop-filter: blur(14px);
    padding: 14px 60px;
    border-bottom: 1px solid var(--grey-light);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; transition: opacity 0.2s; }
.nav-logo img:hover { opacity: 0.7; }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
    font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--black); text-decoration: none; opacity: 0.5; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta { color: var(--rose) !important; opacity: 1 !important; border-bottom: 1px solid var(--rose); padding-bottom: 2px; }

/* ── HERO ─────────────────────────────── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    padding: 140px 60px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* FOTO HERO — imagen a la derecha en el hero
   Tamaño recomendado: 800 × 900 px
   Nombre archivo: images/hero-placeholder.jpg */
.hero-photo {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0 0 0 var(--radius);
    opacity: 0;
    animation: fadeIn 1.2s ease 0.5s forwards;
}
.hero-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 30%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--grey); margin-bottom: 36px;
    opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 7vw, 7.5rem);
    font-weight: 400; line-height: 0.96; letter-spacing: -0.03em;
    max-width: 600px;
    opacity: 0; animation: fadeUp 0.9s ease 0.35s forwards;
}
.hero-title .accent { color: var(--rose); font-style: italic; }
.hero-divider {
    width: 40px; height: 1px; background: var(--rose);
    margin: 40px 0;
    opacity: 0; animation: fadeUp 0.8s ease 0.55s forwards;
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.35rem); font-weight: 300; line-height: 1.6;
    max-width: 440px;
    opacity: 0; animation: fadeUp 0.9s ease 0.65s forwards;
}
.hero-sub em { font-style: normal; color: var(--grey); }
.hero-scroll {
    display: flex; align-items: center; gap: 14px; margin-top: 56px;
    opacity: 0; animation: fadeUp 0.8s ease 1.1s forwards;
}
.hero-scroll-line {
    width: 36px; height: 1px; background: var(--grey);
    position: relative; overflow: hidden;
}
.hero-scroll-line::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: var(--black);
    animation: slideLine 2s ease 1.4s infinite;
}
.hero-scroll span { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); }

/* ── SECTIONS GENERAL ─────────────────── */
section { padding: 110px 60px; }
.section-label {
    font-size: 0.67rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 56px;
    display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; display: inline-block; width: 22px; height: 1px; background: var(--rose); }

/* ── PROBLEMA ─────────────────────────── */
#problema { background: var(--black); color: var(--white); }
#problema .section-label { color: rgba(161,78,92,0.85); }
#problema .section-label::before { background: rgba(161,78,92,0.85); }

.problema-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.problema-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 36px;
}
.problema-left h2 em { font-style: italic; color: var(--rose); }
.problema-left p { font-size: 1rem; line-height: 1.8; color: rgba(247,247,245,0.65); max-width: 420px; }
.problema-right { padding-top: 16px; }

.tension-block { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 44px; }
.tension-item { padding: 28px; background: rgba(247,247,245,0.04); border: 1px solid rgba(247,247,245,0.07); }
.tension-item:first-child { border-right: none; }
.tension-item .t-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.tension-item .t-value { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); line-height: 1.2; }
.tension-item .t-desc { margin-top: 10px; font-size: 0.82rem; color: rgba(247,247,245,0.4); line-height: 1.6; }
.problema-quote { border-left: 2px solid var(--rose); padding-left: 24px; }
.problema-quote p { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: rgba(247,247,245,0.75); line-height: 1.65; }

/* ── REENCUADRE ───────────────────────── */
#reencuadre { background: var(--white); padding: 110px 60px; }

/* Layout con foto a la izquierda y texto a la derecha */
.reencuadre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* FOTO REENCUADRE — imagen izquierda
   Tamaño recomendado: 700 × 520 px
   Nombre: images/reencuadre-placeholder.jpg */
.reencuadre-foto-col {}
.reencuadre-foto {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    filter: grayscale(10%);
    transition: filter 0.4s;
}
.reencuadre-foto:hover { filter: grayscale(0%); }

.reencuadre-text .section-label { margin-bottom: 40px; }
.reencuadre-statement {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 400; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 28px;
}
.reencuadre-statement em { font-style: italic; color: var(--rose); }
.reencuadre-sub { font-size: 1rem; color: var(--grey); line-height: 1.75; max-width: 440px; }

/* ── QUÉ HAGO ─────────────────────────── */
#que-hago { background: var(--white); border-top: 1px solid var(--grey-light); }
.que-hago-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 90px; align-items: center; }
.que-hago-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 28px;
}
.que-hago-left h2 em { font-style: italic; color: var(--rose); }
.que-hago-left p { font-size: 0.95rem; color: var(--grey); line-height: 1.75; }
.proceso-step { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--grey-light); align-items: start; }
.proceso-step:first-child { border-top: 1px solid var(--grey-light); }
.proceso-num { font-family: 'Playfair Display', serif; font-size: 0.72rem; color: var(--rose); letter-spacing: 0.1em; padding-top: 4px; }
.proceso-content h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; margin-bottom: 8px; line-height: 1.3; }
.proceso-content p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; }

/* ── CONCEPTO ─────────────────────────── */
#concepto { background: var(--black); color: var(--white); padding: 110px 60px; }
#concepto .section-label { color: rgba(161,78,92,0.85); }
#concepto .section-label::before { background: rgba(161,78,92,0.85); }

/* Layout: texto izquierda + foto derecha */
.concepto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 80px;
}
.concepto-left {}
.concepto-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 6rem);
    font-weight: 400; letter-spacing: -0.04em; line-height: 1; margin-bottom: 48px;
}
.concepto-title .accent { color: var(--rose); font-style: italic; }
.concepto-body p { font-size: 1rem; line-height: 1.8; color: rgba(247,247,245,0.65); margin-bottom: 20px; }
.concepto-body p strong { color: var(--white); font-weight: 400; }

/* FOTO CONCEPTO — imagen derecha
   Tamaño recomendado: 700 × 480 px
   Nombre: images/concepto-placeholder.jpg */
.concepto-foto-col {}
.concepto-foto {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    border-radius: var(--radius);
    filter: grayscale(20%) brightness(0.85);
    transition: filter 0.4s;
}
.concepto-foto:hover { filter: grayscale(5%) brightness(0.95); }

.concepto-pillars {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: rgba(247,247,245,0.08);
}
.pillar { background: var(--black); padding: 36px 28px; }
.pillar .p-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.pillar p { font-size: 0.88rem; color: rgba(247,247,245,0.55); line-height: 1.65; }

/* ── SERVICIOS ────────────────────────── */
#servicios { background: var(--white); padding-bottom: 0; }
.servicios-intro { max-width: 580px; margin-bottom: 72px; }
.servicios-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px;
}
.servicios-intro h2 em { font-style: italic; color: var(--rose); }
.servicios-intro p { font-size: 0.95rem; color: var(--grey); line-height: 1.75; }

.servicios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--grey-light); }
.servicio-card {
    background: var(--white); padding: 52px 44px;
    transition: background 0.3s; position: relative; overflow: hidden;
}
.servicio-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--rose); transition: width 0.4s;
}
.servicio-card:hover::after { width: 100%; }
.servicio-card:hover { background: #F0F0EE; }
.servicio-num { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--rose); margin-bottom: 36px; }
.servicio-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 14px; }
.servicio-card .s-subtitle { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--rose); text-transform: uppercase; margin-bottom: 16px; }
.servicio-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.75; }

/* ── ALMA ─────────────────────────────── */
#alma {
    background: var(--black); color: var(--white);
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 520px; padding: 0;
}
.alma-left {
    padding: 80px 64px;
    display: flex; flex-direction: column; justify-content: center;
    border-right: 1px solid rgba(247,247,245,0.08);
}
.alma-eyebrow { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(247,247,245,0.35); margin-bottom: 40px; }
.alma-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 400; font-style: italic; color: var(--rose);
    line-height: 1; letter-spacing: -0.03em; margin-bottom: 4px;
}
.alma-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 400; color: var(--white);
    line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 28px;
}
.alma-body { font-size: 0.88rem; color: rgba(247,247,245,0.5); line-height: 1.75; max-width: 380px; margin-bottom: 48px; }
.alma-link {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--white); text-decoration: none;
    border-bottom: 1px solid rgba(247,247,245,0.22); padding-bottom: 6px;
    transition: border-color 0.3s, color 0.3s; width: fit-content;
}
.alma-link:hover { color: var(--rose); border-color: var(--rose); }
.alma-link svg { transition: transform 0.3s; }
.alma-link:hover svg { transform: translateX(4px); }
.alma-right { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
.alma-attr {
    padding: 44px 40px;
    border-bottom: 1px solid rgba(247,247,245,0.07);
    border-right: 1px solid rgba(247,247,245,0.07);
    display: flex; flex-direction: column; justify-content: space-between;
}
.alma-attr:nth-child(2), .alma-attr:nth-child(4) { border-right: none; }
.alma-attr:nth-child(3), .alma-attr:nth-child(4) { border-bottom: none; }
.alma-attr-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; color: var(--white); line-height: 1; letter-spacing: -0.03em; margin-bottom: 16px; }
.alma-attr-title.symbol { font-family: 'Inter', sans-serif; font-weight: 200; }
.alma-attr-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,247,245,0.3); line-height: 1.6; }

/* ── SOBRE MÍ ─────────────────────────── */
#sobre-mi { background: var(--white); border-top: 1px solid var(--grey-light); }

/* 3 columnas: foto | datos | bio */
.sobre-grid {
    display: grid;
    grid-template-columns: 260px 200px 1fr;
    gap: 56px;
    align-items: start;
}

/* FOTO NAIDA
   Tamaño recomendado: 560 × 700 px (ratio 4:5)
   Nombre: images/naida-placeholder.jpg */
.sobre-foto-col { position: sticky; top: 100px; }
.sobre-foto {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover; object-position: center top;
    border-radius: var(--radius);
    filter: grayscale(12%); transition: filter 0.4s;
}
.sobre-foto:hover { filter: grayscale(0%); }

.sobre-left { position: sticky; top: 100px; }
.sobre-name { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.15; }
.sobre-role { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rose); margin-bottom: 28px; }
.sobre-tags { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.sobre-tag { font-size: 0.78rem; color: var(--grey); display: flex; align-items: center; gap: 10px; }
.sobre-tag::before { content: ''; display: inline-block; width: 14px; height: 1px; background: var(--grey-light); }

/* LinkedIn — icono más grande */
.sobre-linkedin {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--grey); text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.sobre-linkedin:hover { color: var(--rose); border-color: var(--rose); }
.sobre-linkedin svg { flex-shrink: 0; }

.sobre-right p { font-size: 1rem; line-height: 1.8; color: var(--black); margin-bottom: 24px; }
.sobre-right p.highlighted {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 400; line-height: 1.45;
    letter-spacing: -0.01em; font-style: italic;
    border-left: 2px solid var(--rose); padding-left: 24px;
    margin: 40px 0; color: var(--black);
}

/* ── CTA ──────────────────────────────── */
#cta { background: var(--black); color: var(--white); padding: 140px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 18vw, 240px); font-weight: 700;
    color: transparent; -webkit-text-stroke: 1px rgba(161,78,92,0.07);
    white-space: nowrap; user-select: none; pointer-events: none; line-height: 1;
}
.cta-content { position: relative; z-index: 1; }
.cta-pre { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); margin-bottom: 44px; }
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4.5vw, 4rem); font-weight: 400;
    line-height: 1.15; letter-spacing: -0.025em;
    margin: 0 auto 24px; max-width: 660px;
}
.cta-title em { font-style: italic; color: var(--rose); }
.cta-sub { font-size: 0.95rem; color: rgba(247,247,245,0.5); margin-bottom: 56px; line-height: 1.7; }
.cta-button {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 18px 44px; background: var(--rose); color: var(--white);
    text-decoration: none; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
    transition: all 0.3s; position: relative; overflow: hidden;
    border-radius: 2px;
}
.cta-button::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.1); transition: left 0.3s;
}
.cta-button:hover::before { left: 100%; }
.cta-button:hover { background: #8B3F4D; letter-spacing: 0.18em; color: var(--white); }
.cta-note { margin-top: 28px; font-size: 0.78rem; color: rgba(247,247,245,0.28); letter-spacing: 0.05em; }

/* ── FOOTER ───────────────────────────── */
footer {
    background: var(--black);
    border-top: 1px solid rgba(247,247,245,0.08);
    padding: 36px 60px;
}
.footer-main {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
}
.footer-logo img { height: 26px; width: auto; filter: brightness(0) invert(0.42); transition: filter 0.2s; }
.footer-logo img:hover { filter: brightness(0) invert(0.65); }
.footer-tagline { font-size: 0.7rem; color: rgba(247,247,245,0.25); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-copy { font-size: 0.72rem; color: rgba(247,247,245,0.2); }

/* Línea legal: política de privacidad y cookies */
.footer-legal {
    border-top: 1px solid rgba(247,247,245,0.06);
    padding-top: 20px;
    display: flex; justify-content: flex-end; gap: 32px;
}
.footer-legal a {
    font-size: 0.7rem; color: rgba(247,247,245,0.25); text-decoration: none;
    letter-spacing: 0.06em; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(247,247,245,0.55); }

/* ── ANIMACIONES ──────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideLine { 0% { left: -100%; } 100% { left: 100%; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 1100px) {
    .sobre-grid { grid-template-columns: 220px 180px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    nav { padding: 18px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links { display: none; }

    section { padding: 72px 24px; }
    #reencuadre, #concepto, #cta { padding: 72px 24px; }

    /* Hero móvil: foto arriba, texto abajo */
    #hero {
        grid-template-columns: 1fr;
        grid-template-rows: 50vh auto;
        min-height: auto;
    }
    .hero-photo {
        height: 50vh;
        order: -1;
    }
    .hero-photo img { border-radius: 0 0 var(--radius) var(--radius); }
    .hero-photo::after { background: linear-gradient(to bottom, transparent 60%, var(--white) 100%); }
    .hero-content { padding: 40px 24px 60px; }
    .hero-title { font-size: clamp(2.8rem, 10vw, 5rem); }

    /* Reencuadre móvil */
    .reencuadre-grid { grid-template-columns: 1fr; gap: 40px; }
    .reencuadre-foto-col { order: -1; }
    .reencuadre-foto { aspect-ratio: 16/9; }

    /* Concepto móvil */
    .concepto-grid { grid-template-columns: 1fr; gap: 40px; }
    .concepto-foto-col { order: 1; }

    /* Problema */
    .problema-grid { grid-template-columns: 1fr; gap: 44px; }
    .tension-block { grid-template-columns: 1fr 1fr; }

    /* Qué hago */
    .que-hago-grid { grid-template-columns: 1fr; gap: 48px; }

    /* Servicios */
    .servicios-grid { grid-template-columns: 1fr; }

    /* ALMA */
    #alma { grid-template-columns: 1fr; }
    .alma-left { padding: 56px 24px; }
    .alma-right { grid-template-columns: 1fr 1fr; }
    .alma-attr { padding: 32px 24px; }

    /* Sobre mí */
    .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
    .sobre-foto-col, .sobre-left { position: static; }
    .sobre-foto { max-width: 220px; aspect-ratio: 1/1; }

    /* Concepto pillars */
    .concepto-pillars { grid-template-columns: 1fr; }

    /* Footer */
    .footer-main { flex-direction: column; gap: 16px; text-align: center; }
    footer { padding: 36px 24px; }
    .footer-legal { justify-content: center; }
}
