:root {
    /* Color Palette */
    --primary-color: #E88D67;
    /* Soft Orange/Terracotta */
    --primary-hover: #D07B55;
    --secondary-color: #005F73;
    /* Deep Teal/Blue */
    --secondary-hover: #004C5C;
    --bg-color: #FDFBF7;
    /* Off-white/Cream */
    --text-main: #2B2D42;
    /* Dark Gray */
    --text-light: #555B6E;
    --white: #FFFFFF;
    --accent-light: #F4D35E;
    /* Muted Yellow */
    --border-color: #E0E0E0;

    /* Spacing */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --container-width: 1200px;

    /* Typography */
    --font-heading: 'Lora', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px rgba(232, 141, 103, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 95, 115, 0.1);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    background: var(--white);
    padding: var(--spacing-md) 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 8px;
    padding-left: 8px;
    border-left: 2px solid var(--border-color);
}

/* Hero Section */
.hero-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #fffcf5 0%, #f0f7f9 100%);
    text-align: center;
}

.user-toggle-container {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
}

.user-toggle {
    background: var(--white);
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: inline-flex;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.trust-signal {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    background: rgba(0, 95, 115, 0.05);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.hero-bullets {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-bullets li {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--text-main);
}

.hero-bullets i {
    color: var(--primary-color);
    margin-right: 8px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}

.microcopy {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: -10px;
    /* Pull tighter to CTA */
    margin-bottom: 10px;
    max-width: 400px;
}

.tooltip-icon {
    cursor: help;
    font-size: 0.9em;
    color: var(--text-light);
    border-bottom: 1px dotted var(--text-light);
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 141, 103, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(232, 141, 103, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(232, 141, 103, 0);
    }
}

/* Problems Section */
.problems-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: var(--spacing-xl);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.problem-card {
    background: var(--bg-color);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.problems-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.highlight-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

/* Benefits Section */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: #F2F7F8;
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.benefits-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefits-content {
    flex: 1;
}

.benefits-list li {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 6px;
}

/* Differentiation Section */
.differentiation-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.diff-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.diff-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    background: #E0F2F5;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Methodology Section */
.method-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.stepper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.step {
    flex: 1;
    max-width: 250px;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    font-size: 1.2rem;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #E0E0E0;
    margin-top: 25px;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.grid-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-big {
    grid-column: span 3;
    background: var(--secondary-color);
    color: var(--white);
    flex-direction: column;
}

.item-big h3 {
    color: var(--white);
    margin: 0;
}

.item-big p {
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    /* overflow hidden added to support object-fit better if needed, though img has border-radius */
    overflow: hidden;
    border-radius: 50%;
    /* Moving border/shadow to container could be cleaner, but keeping close to current structure */
    border: 8px solid var(--bg-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    /* Aspect ratio to ensure circle shape if height:100% stretches it weirdly against text */
    aspect-ratio: 1 / 1;
}

.about-image img {
    /* Previously styles were on img, now we need to ensure they fit */
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Remove border/radius from img if moving to container, OR keep them synced. 
       The user asked for: .about-image img { width:100%; height:100%; object-fit:cover } 
       Let's stick to the plan but be careful about the border-radius. 
       The container already has .about-image styling? No, looking at lines 485-495:
       .about-image is just flex:1
       .about-image img has the styling.
       
       I need to refactor slightly to match "Option B" structure:
         .about-image { overflow: hidden; }
         .about-image img { ... }
    */
}

.about-content {
    flex: 1;
}

.stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat-item {
    background: var(--bg-color);
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Locations Carousel */
.locations-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    margin-top: -30px;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    position: relative;
    min-height: 400px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: var(--spacing-md);
    font-size: 1.1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: #E88D67;
    /* Primary */
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.quote-icon {
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: var(--spacing-sm);
}

.author {
    margin-top: var(--spacing-md);
    font-weight: 700;
    text-align: right;
}

/* Info Section */
.info-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.info-item {
    text-align: center;
    background: var(--bg-color);
    padding: var(--spacing-lg);
    border-radius: 12px;
    min-width: 200px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Pricing */
.pricing-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(232, 141, 103, 0.15);
    max-width: 500px;
    width: 100%;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: var(--spacing-md) 0;
}

.pricing-features {
    text-align: left;
    margin: var(--spacing-lg) 0;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 12px;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* FAQ */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-body {
    padding: 0 20px 20px 20px;
    display: none;
    color: var(--text-light);
}

.faq-item.active .faq-body {
    display: block;
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.final-cta-section p {
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #888;
    padding: var(--spacing-lg) 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive */
/* Who Section */
.who-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to right, #ffffff, #fdfbf7);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.who-col h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.for-you h3 {
    color: var(--secondary-color);
}

.not-for-you h3 {
    color: var(--text-light);
}

.who-col ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.who-col ul li i {
    position: absolute;
    left: 0;
    top: 4px;
}

.for-you ul li i {
    color: #27ae60;
    /* Green check */
}

.not-for-you ul li i {
    color: #c0392b;
    /* Red cross */
}

.ethical-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    background: rgba(0, 0, 0, 0.02);
    padding: 10px;
    border-radius: 8px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Per Session */
.price-per-session {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    background: #f0f0f0;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Mobile Sticky CTA - Base hidden */
.mobile-sticky-cta {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .mobile-hidden {
        display: none !important;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
        background: var(--white);
        padding: 12px 20px;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        border-radius: 50px;
        font-size: 1.1rem;
    }

    /* Adjust footer padding so content isn't hidden behind sticky CTA */
    body {
        padding-bottom: 70px;
    }

    .benefits-wrapper,
    .about-wrapper {
        flex-direction: column !important;
    }

    .diff-grid,
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }

    .item-big {
        grid-column: span 1;
    }

    .stepper {
        flex-direction: column;
        align-items: center;
    }

    .step-line {
        width: 2px;
        height: 40px;
        margin: 10px 0;
    }
}

/* 
   ==========================================================================
   MOTION SYSTEM (Added for Visual Impact)
   ========================================================================== 
*/

:root {
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Global Perspective */
body {
    perspective: 2000px;
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   UTILITIES: Reveal & Animation Classes
   -------------------------------------------------------------------------- */

/* Base state for scroll reveal */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
    will-change: opacity, transform;
}

/* Active state */
.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* --------------------------------------------------------------------------
   CAPA B: Section Specific Effects
   -------------------------------------------------------------------------- */

/* Problems Cards: 3D Tilt Setup */
.problem-card {
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-premium), box-shadow 0.6s var(--ease-premium);
}

/* Class added by JS during hover for un-damped tracking, removed for smooth reset */
.problem-card.is-tilting {
    transition: transform 0.1s linear;
}

/* Benefits: Parallax Image */
.benefits-image {
    transition: transform 0.1s linear;
    /* For smooth JS parallax */
    will-change: transform;
}

/* Benefits List: Staggered Slide In */
.benefits-list li.reveal-hidden {
    transform: translateX(30px);
}

.benefits-list li.reveal-visible {
    transform: translateX(0);
}

/* Differentiation: Hover Lift + Glow */
.diff-card {
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 95, 115, 0.15);
    /* Lift with colored shadow */
}

/* Methodology: Pop/Scale Reveal */
.grid-item.reveal-hidden {
    transform: scale(0.8);
    opacity: 0;
}

.grid-item.reveal-visible {
    transform: scale(1);
    opacity: 1;
}

/* Pricing: 3D Lift */
.pricing-card {
    transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium);
}

.pricing-card:hover {
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 25px 50px rgba(232, 141, 103, 0.2);
}

/* --------------------------------------------------------------------------
   CAPA C: Microinteractions
   -------------------------------------------------------------------------- */

/* Buttons: Press Effect */
.btn {
    transition: transform 0.2s var(--ease-premium), background-color 0.3s, box-shadow 0.3s;
}

.btn:active {
    transform: scale(0.96) translateY(0) !important;
}

/* Images: Depth Hover */
img {
    transition: transform 0.6s var(--ease-premium);
}

@media (hover: hover) {

    /* Only on non-touch devices */
    img:hover {
        transform: scale(1.02) rotate(0.5deg);
    }
}

/* Header Glass Effect */
.site-header {
    transition: background-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Slightly stronger shadow on scroll */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .reveal-hidden {
        transform: translateY(20px);
        /* Less movement on mobile */
    }

    /* Disable heavy 3D on mobile */
    .problem-card,
    .benefits-image {
        transform: none !important;
        transition: opacity 0.5s ease !important;
    }
}

/* HEADER LOGO UPDATE - TAREA ÚNICA */
.site-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header .logo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.site-header .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-header .logo-role,
.site-header .logo-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    /* no cambiar colores, solo suavizar */
}

/* Efecto de aparición SOLO logo (sutil) */
.site-header .logo-appear {
    opacity: 0;
    transform: translateY(4px);
    animation: logoFadeIn 520ms ease-out forwards;
}

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

/* Mobile: solo evitar desborde (sin cambiar estructura) */
@media (max-width:480px) {
    .site-header .logo-avatar {
        width: 38px;
        height: 38px;
    }

    .site-header .logo-role,
    .site-header .logo-sub {
        font-size: 0.85rem;
    }
}

/* Header logo layout (solo header) */
.site-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Avatar circular (solo header) */
.site-header .logo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex: 0 0 auto;
}

/* Texto en columna (solo header) */
.site-header .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

/* Evitar el “|” / borde / pseudo-elementos heredados SOLO en header */
.site-header .logo-sub {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.site-header .logo-sub::before,
.site-header .logo-sub::after {
    content: none !important;
    display: none !important;
}

/* Fade-in sutil SOLO logo header */
.site-header .logo-appear {
    opacity: 0;
    transform: translateY(3px);
    animation: logoFadeIn 520ms ease-out forwards;
}

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

@media (prefers-reduced-motion: reduce) {
    .site-header .logo-appear {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Social Mini Links - About Section */
.about-section .social-mini {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.about-section .social-mini__label {
    opacity: 0.85;
}

.about-section .social-mini__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.about-section .social-mini__link:hover {
    border-color: rgba(0, 0, 0, 0.22);
}