/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/**
 * Estilos personalizados WooCommerce - Espíritu del Valle
 * Tema: Elegante, minimalista, colores tierra
 */



/* ============================================ */
/* ESPÍRITU DEL VALLE - CSS ORGANIZADO        */
/* Color principal: #4a331c (Marrón)          */
/* ============================================ */

/* ============================================ */
/* 1. ESTILOS GENERALES                       */
/* ============================================ */

selector {
    color: #f5f2ed;
    line-height: 1.7;
    font-size: 16px;
    text-align: left;
}

selector strong {
    color: #ffffff;
    font-weight: 600;
}

selector em {
    color: #d4a574;
}

selector ul {
    list-style: disc !important;
    margin-left: 25px !important;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left !important;
}

selector li {
    margin-bottom: 6px;
}

selector p {
    margin-bottom: 10px;
}

/* ============================================ */
/* 2. HEADER STICKY                           */
/* ============================================ */

/* Logo inicial */
.header-logo img {
    height: auto !important;
    height: 20vh !important;
    transition: width 0.3s ease;
}

/* Logo cuando el header está scrolleado */
.sticky-header.scrolled .header-logo img {
    height: 10vh !important;
}

.sticky-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 9999 !important;
    background: transparent !important;
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
}

.sticky-header {
    height: 25vh;
    transition: all 0.3s ease; /* Para animación suave */
}

/* Efecto cuando se hace scroll */
.sticky-header.scrolled {
    height: 12vh;
    padding: 1vh 0 !important;
    background: rgba(33, 44, 57, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Compensar espacio del header fijo */
body {
    padding-top: 80px;
}

/* ============================================ */
/* 3. WIDGET DE CARRITO PERSONALIZADO         */
/* ============================================ */

.custom-cart-widget {
    position: relative;
    display: inline-block;
    font-family: inherit;
}

.cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white !important;
    padding: 15px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.cart-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    text-decoration: none;
}

.cart-icon-wrapper {
    position: relative;
    margin-right: 15px !important;
}

.cart-icon {
    width: 28px !important;
    height: 28px !important;
    transition: all 0.3s ease;
    color: white !important;
    stroke: white !important;
}

.cart-link:hover .cart-icon {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -10px !important;
    right: -10px !important;
    background: #4a331c !important;
    color: white !important;
    border-radius: 50%;
    width: 24px !important;
    height: 24px !important;
    font-size: 13px !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    transition: all 0.3s ease;
    transform: scale(1);
}

.cart-count.no-items {
    opacity: 0;
    transform: scale(0.5);
}

.cart-count.has-items {
    opacity: 1;
    transform: scale(1);
}

.cart-count.bounce {
    animation: bounceCount 0.6s ease;
}

@keyframes bounceCount {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-label {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 2px;
}

.cart-total {
    font-weight: 600;
    font-size: 16px !important;
    color: white !important;
}

/* ============================================ */
/* 4. MINI CART DROPDOWN                      */
/* ============================================ */

.mini-cart-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 320px;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99999;
    border: 1px solid #e5e5e5;
}

.custom-cart-widget:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mini-cart-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.close-mini-cart {
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.close-mini-cart:hover {
    color: #333;
}

.mini-cart-content {
    padding: 15px 20px;
    max-height: 400px;
    overflow-y: auto;
}

.empty-cart-message {
    text-align: center;
    color: #666;
    margin: 20px 0;
    font-style: italic;
}

.continue-shopping {
    display: block;
    text-align: center;
    background: #4a331c;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.continue-shopping:hover {
    background: #5d4228;
    text-decoration: none;
    color: white;
}

.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-mini-cart li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-mini-cart li:last-child {
    border-bottom: none;
}

.woocommerce-mini-cart .mini_cart_item a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.woocommerce-mini-cart .mini_cart_item .remove {
    color: #ff4444;
    font-size: 18px;
    text-decoration: none;
    margin-right: 10px;
}

.woocommerce-mini-cart__buttons {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.woocommerce-mini-cart__buttons a {
    display: block;
    text-align: center;
    padding: 10px;
    margin: 5px 0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.woocommerce-mini-cart__buttons .checkout {
    background: #4a331c;
    color: white;
}

.woocommerce-mini-cart__buttons .checkout:hover {
    background: #5d4228;
    color: white;
}

/* ============================================ */
/* 5. SELECTOR DE CANTIDAD PERSONALIZADO      */
/* ============================================ */

.quantity {
    position: relative;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    font-family: inherit;
}

.qty-btn-minus {
    background: #f8f8f8 !important;
    border: none !important;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: bold !important;
    color: #333 !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e5e5;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    box-shadow: none !important;
    outline: none !important;
}

.qty-input-center {
    border: none;
    width: 60px;
    height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: white;
    outline: none;
    color: #333;
    -moz-appearance: textfield;
}

.qty-input-center::-webkit-outer-spin-button,
.qty-input-center::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-btn-plus {
    background: #f8f8f8 !important;
    border: none !important;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: bold !important;
    color: #333 !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e5e5e5;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    box-shadow: none !important;
    outline: none !important;
}

.qty-btn-minus:hover,
.qty-btn-plus:hover {
    background: #4a331c !important;
    color: white !important;
}

.qty-btn-minus:active,
.qty-btn-plus:active {
    background: #5d4228 !important;
    transform: scale(0.95);
}

.qty-btn-minus:disabled,
.qty-btn-plus:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f5f5f5;
}

.qty-btn-minus:disabled:hover,
.qty-btn-plus:disabled:hover {
    background: #f5f5f5;
    color: #666;
}

.quantity-selector:hover {
    border-color: #ccc;
}

.qty-input-center:focus {
    background: #fafafa;
}

/* Eliminar bordes extra */
.quantity-selector,
.quantity-selector *,
.qty-btn-minus *,
.qty-btn-plus * {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ============================================ */
/* 6. NOTIFICACIONES WOOCOMMERCE             */
/* ============================================ */

.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    display: block !important;
}

.woocommerce-message {
    background: #4a331c !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 50px 16px 50px !important;
    margin: 20px 0 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 15px rgba(74, 51, 28, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    min-height: 50px !important;
}

.woocommerce-message::before {
    content: "✓" !important;
    background: white !important;
    color: #000 !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 12px !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.woocommerce-message .button.wc-forward {
    background: white !important;
    color: #4a331c !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.woocommerce-message .button.wc-forward:hover {
    background: #f8f8f8 !important;
    color: #4a331c !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.woocommerce-message .restore-item {
    color: white !important;
    text-decoration: underline !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.woocommerce-message .restore-item:hover {
    color: #f0f0f0 !important;
    text-decoration: none !important;
}

.woocommerce-message a {
    color: white !important;
}

.woocommerce-message a:hover {
    color: #f0f0f0 !important;
}

/* Notificaciones de error */
.woocommerce-error {
    background: #4a331c !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 20px 16px 50px !important;
    margin: 20px 0 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 15px rgba(74, 51, 28, 0.3) !important;
    position: relative !important;
    list-style: none !important;
}

.woocommerce-error::before {
    content: "!" !important;
    background: white !important;
    color: #4a331c !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 12px !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.woocommerce-error li {
    list-style: none !important;
    margin: 5px 0 !important;
    padding: 0 !important;
}

.woocommerce-error a {
    color: white !important;
    text-decoration: underline !important;
}

.woocommerce-error a:hover {
    color: #f0f0f0 !important;
    text-decoration: none !important;
}

.woocommerce-error strong {
    color: white !important;
    font-weight: bold !important;
}

/* Notificaciones de info */
.woocommerce-info {
    background: #4a331c !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 20px 16px 50px !important;
    margin: 20px 0 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 15px rgba(74, 51, 28, 0.3) !important;
    position: relative !important;
}

.woocommerce-info::before {
    content: "i" !important;
    background: white !important;
    color: #4a331c !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 12px !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.woocommerce-info a,
.woocommerce-info .showcoupon {
    color: white !important;
    text-decoration: underline !important;
    font-weight: bold !important;
}

.woocommerce-info a:hover,
.woocommerce-info .showcoupon:hover {
    color: #f0f0f0 !important;
    text-decoration: none !important;
}

/* Mensaje de carrito vacío */
.cart-empty.woocommerce-info {
    background: #4a331c !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 20px 16px 50px !important;
    margin: 20px 0 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 15px rgba(74, 51, 28, 0.3) !important;
    position: relative !important;
}

.cart-empty.woocommerce-info::before {
    content: "!" !important;
    background: white !important;
    color: #4a331c !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: bold !important;
    font-size: 12px !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.cart-empty.woocommerce-info a {
    color: white !important;
    text-decoration: underline !important;
}

.cart-empty.woocommerce-info a:hover {
    color: #f0f0f0 !important;
}

/* ============================================ */
/* 7. BOTONES DEL CARRITO Y CHECKOUT         */
/* ============================================ */

.woocommerce-cart .button,
.woocommerce button.button,
button[name="update_cart"],
button[name="apply_coupon"],
.e-apply-coupon {
    background: #4a331c !important;
    color: white !important;
    border: 2px solid #4a331c !important;
    border-radius: 6px !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
}

.woocommerce-cart .button:hover,
.woocommerce button.button:hover,
button[name="update_cart"]:hover,
button[name="apply_coupon"]:hover,
.e-apply-coupon:hover {
    background: #5d4228 !important;
    color: white !important;
    border-color: #5d4228 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(74, 51, 28, 0.3) !important;
}

.woocommerce-cart .button:disabled,
button[name="update_cart"]:disabled {
    background: #ccc !important;
    color: #666 !important;
    border-color: #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.wc-proceed-to-checkout .checkout-button {
    background: #4a331c !important;
    color: white !important;
    border: 2px solid #4a331c !important;
    border-radius: 6px !important;
    padding: 15px 25px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-align: center !important;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: #5d4228 !important;
    color: white !important;
    border-color: #5d4228 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(74, 51, 28, 0.3) !important;
    text-decoration: none !important;
}

/* Botón Place Order */
button[name="woocommerce_checkout_place_order"],
#place_order,
.woocommerce-checkout .button.alt {
    background: #4a331c !important;
    color: white !important;
    border: 2px solid #4a331c !important;
    border-radius: 6px !important;
    padding: 15px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
}

button[name="woocommerce_checkout_place_order"]:hover,
#place_order:hover,
.woocommerce-checkout .button.alt:hover {
    background: #5d4228 !important;
    color: white !important;
    border-color: #5d4228 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(74, 51, 28, 0.3) !important;
}

/* ============================================ */
/* 8. CHECKOUT - QUITAR FONDOS GRISES        */
/* ============================================ */

#payment.woocommerce-checkout-payment {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.wc_payment_methods {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.wc_payment_method {
    background: transparent !important;
    border: none !important;
    padding: 15px 0 !important;
}

.payment_box {
    background: transparent !important;
    border: none !important;
    padding: 15px 0 !important;
    margin: 10px 0 !important;
}

.woocommerce-terms-and-conditions-wrapper {
    background: transparent !important;
    border: none !important;
    padding: 15px 0 !important;
}

.woocommerce-privacy-policy-text {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.form-row.place-order {
    background: transparent !important;
    border: none !important;
    padding: 20px 0 !important;
}

.woocommerce-checkout #payment {
    background: transparent !important;
}

.woocommerce-checkout-payment * {
    box-shadow: none !important;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    display: none !important;
}

/* ============================================ */
/* 9. PÁGINA DE GRACIAS - PEDIDO COMPLETO    */
/* ============================================ */

.pedido-completo {
    max-width: 800px;
    margin: 0 auto;
    font-family: inherit;
}

.thank-you-message {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.thank-you-message h2 {
    color: #333;
    margin: 0;
    font-size: 24px;
}

.order-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.summary-item {
    text-align: left;
}

.summary-item strong {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
}

.order-number,
.order-date,
.order-total,
.payment-method {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-top: 5px;
}

.order-details {
    margin-bottom: 40px;
}

.order-details h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.order-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #eee;
}

.order-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
}

.order-table tr:last-child td {
    border-bottom: none;
}

.quantity {
    color: #666;
    font-weight: normal;
}

.subtotal-row td,
.total-row td,
.payment-row td {
    font-weight: 600;
    border-top: 2px solid #eee;
}

.total-row td {
    color: #4a331c;
    font-size: 16px;
}

.billing-address {
    margin-top: 40px;
}

.billing-address h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.address-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.6;
    color: #333;
}

.back-to-home {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.btn-back-home {
    display: inline-block;
    background: #4a331c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 51, 28, 0.2);
}

.btn-back-home:hover {
    background: #5d4228;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 51, 28, 0.3);
}

.btn-back-home:active {
    transform: translateY(0);
}

/* ============================================ */
/* 10. RESPONSIVE DESIGN                      */
/* ============================================ */

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .cart-info {
        display: none;
    }
    
    .cart-icon-wrapper {
        margin-right: 0 !important;
    }
    
    .mini-cart-dropdown {
        min-width: 280px;
        right: -20px;
    }
    
    .cart-link {
        padding: 8px 10px !important;
    }
    
    .woocommerce-message {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px 16px 16px 16px !important;
        gap: 12px !important;
    }
    
    .woocommerce-message::before {
        position: static !important;
        transform: none !important;
        margin-bottom: 8px !important;
    }
    
    .woocommerce-message .button.wc-forward {
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 !important;
    }
    
    .e-woocommerce-notices-wrapper {
        padding: 0 10px !important;
    }
    
    .order-summary {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .order-table th,
    .order-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .thank-you-message h2 {
        font-size: 20px;
    }
    
    .btn-back-home {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .mini-cart-dropdown {
        left: -150px;
        right: auto;
        min-width: 300px;
    }
    
    .woocommerce-message {
        font-size: 13px !important;
        padding: 16px 12px !important;
    }
    
    .woocommerce-message .button.wc-forward {
        font-size: 13px !important;
        padding: 10px 16px !important;
    }
}

/* ============================================ */
/* 11. PERSONALIZACIÓN ELEMENTOR             */
/* ============================================ */

.elementor-widget-shortcode .custom-cart-widget {
    width: 100%;
    display: flex;
    justify-content: center;
}

.elementor-location-header .custom-cart-widget {
    margin-left: auto;
}

/* ============================================ */
/* 12. ANIMACIONES                           */
/* ============================================ */

.woocommerce-message {
    animation: slideInNotice 0.4s ease-out !important;
}

@keyframes slideInNotice {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* FIN DEL CSS ORGANIZADO                     */
/* ============================================ */