/**
 * ========================================
 * BLOG MODULE - STYLES
 * ========================================
 * The One Pro Therapy - Estilos para posts individuales
 * Mobile-first, consistente con paleta del home y about
 *
 * @version 1.0.0
 * @author Luis Barrolleta - Claude Code Assistant
 */

/* ========================================
   VARIABLES CSS
   ======================================== */
:root {
    --primary: #BF8924;
    --secondary: #261C14;
    --bg-light: #F2F2F2;
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #261C14 0%, #BF8924 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(38, 28, 20, 0.9) 0%, rgba(191, 137, 36, 0.3) 100%);

    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.6s ease;

    /* Fuentes */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Medidas */
    --content-max-width: 1600px;
    --content-padding: 1.5rem;
    --toc-width: 200px;
}

/* ========================================
   RESET Y BASE
   ======================================== */
.theone-single-post {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
}

.theone-single-wrapper {
    background: var(--bg-light);
    min-height: 100vh;
}

/* ========================================
   CONTENEDOR PRINCIPAL
   ======================================== */
.theone-post-container {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--content-padding);
    width: 100%;
}

/* En pantallas grandes, usar más del viewport */
@media (min-width: 1440px) {
    .theone-post-container {
        max-width: 1800px;
    }
}

@media (min-width: 1920px) {
    .theone-post-container {
        max-width: 2000px;
    }
}

/* ========================================
   POST HEADER
   ======================================== */
.theone-post-header {
    position: relative;
    margin-bottom: 2rem;
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.theone-post-featured-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--bg-light);
}

.theone-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.5s ease;
}

/* Desktop: imagen más alta */
@media (min-width: 768px) {
    .theone-post-featured-image {
        height: 600px;
    }
}

.theone-post-featured-image:hover img {
    transform: scale(1.02);
}

.theone-post-header-content {
    padding: 2rem;
}

.theone-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.theone-post-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-medium);
}

.theone-post-category:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.theone-post-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.theone-post-excerpt {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.theone-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.theone-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.theone-meta-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* Meta móvil (se muestra debajo del header en mobile) */
.theone-post-meta-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   LAYOUT: SIDEBAR + CONTENT
   ======================================== */
.theone-post-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Desktop: sidebar sticky a la izquierda */
@media (min-width: 1024px) {
    .theone-post-content-wrapper {
        grid-template-columns: var(--toc-width) 1fr;
        gap: 4rem;
    }

    .theone-post-meta-mobile {
        display: none;
    }
}

/* Desktop XL: más espacio para contenido */
@media (min-width: 1280px) {
    .theone-post-content-wrapper {
        gap: 4.5rem;
    }
}

/* Desktop XXL: máximo espacio */
@media (min-width: 1440px) {
    .theone-post-content-wrapper {
        gap: 5rem;
    }
}

/* ========================================
   SIDEBAR / TOC (Tabla de Contenidos)
   ======================================== */
.theone-post-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .theone-post-sidebar {
        display: block;
    }
}

.theone-toc {
    position: sticky;
    top: 2rem;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.theone-toc-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theone-toc-title i {
    color: var(--primary);
}

.theone-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.theone-toc-item {
    margin-bottom: 0.5rem;
}

.theone-toc-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    line-height: 1.4;
}

.theone-toc-link:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 1rem;
}

.theone-toc-link.active {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

/* Niveles de TOC */
.theone-toc-item[data-level="2"] .theone-toc-link {
    font-weight: 600;
}

.theone-toc-item[data-level="3"] .theone-toc-link {
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

/* TOC Móvil (colapsable) */
.theone-toc-mobile {
    display: block;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.theone-toc-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.theone-toc-toggle:hover {
    opacity: 0.9;
}

.theone-toc-toggle i:last-child {
    transition: transform var(--transition-fast);
}

.theone-toc-toggle[aria-expanded="true"] i:last-child {
    transform: rotate(180deg);
}

.theone-toc-mobile .theone-toc-content {
    padding: 1rem;
}

@media (min-width: 1024px) {
    .theone-toc-mobile {
        display: none;
    }
}

/* ========================================
   CONTENIDO PRINCIPAL DEL POST
   ======================================== */
.theone-post-main {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 100%;
}

@media (min-width: 768px) {
    .theone-post-main {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .theone-post-main {
        padding: 3rem;
    }
}

@media (min-width: 1280px) {
    .theone-post-main {
        padding: 3.5rem 4rem;
    }
}

.theone-post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 100%;
    width: 100%;
    word-wrap: break-word;
}

/* Asegurar que el contenido use todo el espacio disponible en desktop */
@media (min-width: 1024px) {
    .theone-post-content {
        min-width: 0; /* Permite que flex/grid items se encojan correctamente */
    }
}

/* Párrafos */
.theone-post-content p {
    margin-bottom: 1.5rem;
    max-width: 100%;
}

/* Headings */
.theone-post-content h1,
.theone-post-content h2,
.theone-post-content h3,
.theone-post-content h4,
.theone-post-content h5,
.theone-post-content h6 {
    font-family: var(--font-display);
    color: var(--secondary);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    scroll-margin-top: 2rem; /* Para anchor links del TOC */
}

.theone-post-content h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.5rem;
}

.theone-post-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.theone-post-content h4 {
    font-size: 1.25rem;
}

/* Listas */
.theone-post-content ul,
.theone-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.theone-post-content li {
    margin-bottom: 0.75rem;
}

.theone-post-content ul li {
    list-style-type: none;
    position: relative;
}

.theone-post-content ul li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: -1.5rem;
    font-size: 0.75rem;
}

/* Links */
.theone-post-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-fast);
}

.theone-post-content a:hover {
    color: var(--secondary);
    text-decoration: none;
}

/* Imágenes en el contenido - MOBILE FIRST */
.theone-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    display: block;
}

/* Mobile: imágenes no muy grandes */
@media (max-width: 767px) {
    .theone-post-content img {
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        background: var(--bg-light);
        padding: 0.5rem;
    }
}

/* Desktop: imágenes más grandes pero controladas */
@media (min-width: 768px) {
    .theone-post-content img {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Blockquotes */
.theone-post-content blockquote {
    border-left: 4px solid var(--primary);
    background: var(--bg-light);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
    font-style: italic;
    color: var(--text-light);
}

.theone-post-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Code blocks */
.theone-post-content code {
    background: var(--bg-light);
    color: var(--secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
}

.theone-post-content pre {
    background: var(--secondary);
    color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.theone-post-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Tablas */
.theone-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: var(--shadow-sm);
    border-radius: 0.5rem;
    overflow: hidden;
}

.theone-post-content th {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.theone-post-content td {
    padding: 1rem;
    border-bottom: 1px solid var(--bg-light);
}

.theone-post-content tr:last-child td {
    border-bottom: none;
}

/* ========================================
   SHORTCODE: PRODUCTOS
   ======================================== */
/* UL contenedor de productos - EXACTAMENTE como lo pediste */
ul.products {
    display: flex;
    justify-content: start;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    padding: 0;
    list-style: none;
}

/* LI producto individual - width 30% */
.products .product {
    width: 30%;
    list-style: none;
}

/* Product Card */
.theone-product-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.theone-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.theone-product-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theone-product-image {
    position: relative;
    width: 100%;
    height: 150px;
    background: var(--bg-light);
    overflow: hidden;
}

/* Tablet: altura mediana */
@media (min-width: 768px) {
    .theone-product-image {
        height: 170px;
    }
}

/* Desktop: altura ajustada */
@media (min-width: 1024px) {
    .theone-product-image {
        height: 180px;
    }
}

.theone-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theone-product-card:hover .theone-product-image img {
    transform: scale(1.1);
}

.theone-product-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-lighter);
    font-size: 3rem;
}

/* Badges de productos */
.theone-product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.theone-badge-sale {
    background: #EF4444;
    color: white;
}

.theone-badge-stock {
    background: var(--text-light);
    color: white;
    top: 3rem;
}

.theone-product-info {
    padding: 1.25rem;
    flex: 1;
}

.theone-product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.theone-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.theone-product-price del {
    font-size: 1rem;
    color: var(--text-lighter);
    margin-right: 0.5rem;
}

.theone-product-actions {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--bg-light);
}

.theone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
    width: 100%;
}

.theone-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.theone-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.theone-btn-disabled {
    background: var(--text-lighter);
    color: white;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Error en shortcode */
.theone-error {
    padding: 1rem;
    background: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid #EF4444;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* ========================================
   COMPARTIR EN REDES SOCIALES
   ======================================== */
.theone-post-share {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 1rem;
    text-align: center;
}

.theone-share-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.theone-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.theone-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.theone-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.theone-share-facebook {
    background: #1877F2;
}

.theone-share-twitter {
    background: #1DA1F2;
}

.theone-share-whatsapp {
    background: #25D366;
}

.theone-share-linkedin {
    background: #0A66C2;
}

.theone-share-copy {
    background: var(--secondary);
}

/* ========================================
   TAGS DEL POST
   ======================================== */
.theone-post-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.theone-post-tags i {
    color: var(--primary);
    font-size: 1.25rem;
}

.theone-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.theone-tags-list a {
    display: inline-block;
    background: white;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--bg-light);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.theone-tags-list a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-light);
}

/* ========================================
   POSTS RELACIONADOS
   ======================================== */
.theone-related-posts {
    margin-top: 4rem;
    padding: 3rem 0;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.theone-related-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.theone-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .theone-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .theone-related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.theone-related-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--bg-light);
    transition: var(--transition-medium);
    text-decoration: none;
    color: inherit;
    display: block;
}

.theone-related-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.theone-related-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    overflow: hidden;
}

.theone-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theone-related-card:hover .theone-related-image img {
    transform: scale(1.1);
}

.theone-related-content {
    padding: 1.25rem;
}

.theone-related-post-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.theone-related-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.theone-related-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.theone-related-meta i {
    color: var(--primary);
}

/* No hay posts relacionados */
.theone-no-related {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

/* ========================================
   POST NO ENCONTRADO
   ======================================== */
.theone-no-post {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.theone-no-post i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.theone-no-post h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.theone-no-post p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 768px) {
    .theone-post-title {
        font-size: 2rem;
    }

    .theone-post-featured-image {
        height: 300px;
    }

    .theone-post-main {
        padding: 1.5rem;
    }

    .theone-post-content {
        font-size: 1.0625rem;
    }

    .theone-post-content h2 {
        font-size: 1.75rem;
    }

    .theone-post-content h3 {
        font-size: 1.375rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --content-padding: 1rem;
    }

    .theone-post-title {
        font-size: 1.75rem;
    }

    .theone-post-excerpt {
        font-size: 1.125rem;
    }

    .theone-post-featured-image {
        height: 250px;
    }

    .theone-post-header-content {
        padding: 1.5rem;
    }

    .theone-post-main {
        padding: 1.25rem;
    }

    .theone-post-content {
        font-size: 1rem;
    }

    .theone-post-content h2 {
        font-size: 1.5rem;
    }

    .theone-post-content h3 {
        font-size: 1.25rem;
    }

    .theone-share-buttons {
        flex-direction: column;
    }

    .theone-share-btn {
        width: 100%;
    }

    .theone-related-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   UTILIDADES
   ======================================== */

/* Scroll suave para anchor links */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .theone-post-sidebar,
    .theone-toc-mobile,
    .theone-post-share,
    .theone-related-posts {
        display: none;
    }

    .theone-post-content a {
        text-decoration: none;
        color: inherit;
    }

    .theone-post-content a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: var(--text-lighter);
    }
}

/* ========================================
   OVERRIDES AGRESIVOS - FORZAR ANCHOS
   ======================================== */

/* Forzar ancho completo del contenedor en desktop */
@media (min-width: 1024px) {
    .theone-single-post .theone-post-container {
        max-width: 1600px !important;
        width: 100% !important;
    }

    .theone-single-post .theone-post-content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .theone-single-post .theone-post-main {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 !important;
    }

    .theone-single-post .theone-post-content {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 1440px) {
    .theone-single-post .theone-post-container {
        max-width: 1800px !important;
    }
}

@media (min-width: 1920px) {
    .theone-single-post .theone-post-container {
        max-width: 2000px !important;
    }
}

/* Asegurar que no hay restricciones del tema padre */
.theone-single-post article.theone-post-main {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ========================================
   FIN DEL ARCHIVO
   ======================================== */
