/**
 * Mejoras para FAQ - Ar-Tec Invent
 * Mejora la experiencia del usuario y resuelve problemas de usabilidad
 */

/* ===== INSTRUCCIONES DE USO ===== */
.faq-instructions {
    margin-bottom: 40px;
}

.instructions-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.instructions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbb03b 0%, #ff8c00 50%, #fbb03b 100%);
}

.instructions-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.instructions-header i {
    color: #fbb03b;
    font-size: 24px;
    margin-right: 15px;
}

.instructions-header h3 {
    color: #1c1c1c;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.instructions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.instruction-item i {
    color: #fbb03b;
    font-size: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.instruction-item h4 {
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.instruction-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ===== SECCIÓN DE BÚSQUEDA MEJORADA ===== */
.search-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 30px 0px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-section h3 {
    color: #1c1c1c;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-section h3 i {
    color: #fbb03b;
}

.search-description {
    color: #666;
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

/* ===== SECCIÓN DE PREGUNTAS FRECUENTES ===== */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbb03b 0%, #ff8c00 50%, #fbb03b 100%);
}

.faq-section-title {
    color: #1c1c1c;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-section-title i {
    color: #fbb03b;
}

.faq-section-description {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* ===== MEJORAS AL BUSCADOR ===== */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#searchbar {
    flex: 1;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

#searchbar:focus {
    border-color: #fbb03b;
    box-shadow: 0 0 0 3px rgba(251, 176, 59, 0.1);
    outline: none;
}

#clear-search {
    position: absolute;
    right: 12px;
    top: 25px;
    transform: translateY(-50%);
    background: #fbb03b;
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

#clear-search:hover {
    background: #ff8c00;
    transform: translateY(-50%) scale(1.1);
}

.search-stats {
    margin-bottom: 15px;
    color: #666;
    font-style: italic;
    display: none; /* Oculto por defecto */
}

.search-stats.show {
    display: block;
}

.search-stats i {
    color: #fbb03b;
    margin-right: 5px;
}

/* ===== MEJORAS A LOS PANELES ===== */
.panel-default {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    background: #ffffff;
    overflow: hidden;
}

.panel-default:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
    border-color: #fbb03b;
}

.panel-heading {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e0e0e0;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.panel-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbb03b 0%, #ff8c00 50%, #fbb03b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.panel-default:hover .panel-heading::before {
    opacity: 1;
}

.panel-title-ar a {
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    text-decoration: none;
    line-height: 1.4;
    gap: 15px;
    text-align: left;
    width: 100%;
}

.panel-title-ar a .accordion-text {
    flex: 1;
    text-align: left;
}

.panel-title-ar a i:first-child {
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbb03b 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.3);
    transition: all 0.3s ease;
}

.panel-title-ar a:hover i:first-child {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.4);
}

.panel-title-ar a .accordion-icon {
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.panel-title-ar a:hover {
    color: #fbb03b;
    background: rgba(251, 176, 59, 0.05);
}

.panel-title-ar a:hover .accordion-icon {
    color: #fbb03b;
    transform: rotate(180deg);
}

.panel-title-ar a[aria-expanded="true"] {
    color: #fbb03b;
    background: rgba(251, 176, 59, 0.1);
}

.panel-title-ar a[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
    color: #fbb03b;
}

.panel-body {
    padding: 30px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    line-height: 1.7;
    border-top: 1px solid #f0f0f0;
}

.panel-body p {
    margin-bottom: 16px;
    color: #555;
}

.panel-body ul, .panel-body ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.panel-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.panel-body h5 {
    color: #333;
    font-weight: 600;
    margin: 24px 0 12px 0;
    font-size: 16px;
}

.panel-body code {
    background: #f8f9fa;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    display: inline-block;
    margin: 2px 4px;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
}

.panel-body code:hover {
    background: #fbb03b;
    color: white;
    border-color: #fbb03b;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(251, 176, 59, 0.2);
}

/* Código con información técnica - Diseño sutil y coherente */
.panel-body code[data-type="temperature"] {
    background: #fff5f5;
    color: #d63031;
    border-color: #ff7675;
    border-left: 3px solid #d63031;
}

.panel-body code[data-type="temperature"]:hover {
    background: #d63031;
    color: white;
    border-color: #d63031;
}

.panel-body code[data-type="pressure"] {
    background: #f0f8ff;
    color: #0984e3;
    border-color: #74b9ff;
    border-left: 3px solid #0984e3;
}

.panel-body code[data-type="pressure"]:hover {
    background: #0984e3;
    color: white;
    border-color: #0984e3;
}

.panel-body code[data-type="time"] {
    background: #fff8e1;
    color: #f57c00;
    border-color: #ffb74d;
    border-left: 3px solid #f57c00;
}

.panel-body code[data-type="time"]:hover {
    background: #f57c00;
    color: white;
    border-color: #f57c00;
}

/* ===== MEJORAS AL CONTENIDO ===== */
.response-body {
    background: #fff;
    padding: 24px 28px;
    border-radius: 8px;
    border-left: 4px solid #fbb03b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.response-body h4.title {
    color: #fbb03b;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.response-body p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #555;
}

.response-body ul, .response-body ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.response-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.response-body h5 {
    color: #333;
    font-weight: 600;
    margin: 24px 0 12px 0;
    font-size: 16px;
}

.response-body a {
    color: #fbb03b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.response-body a:hover {
    color: #ff8c00;
    text-decoration: underline;
}

.response-body code {
    background: rgba(251, 176, 59, 0.1);
    color: #fbb03b;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
}

/* ===== MEJORAS A LA LISTA DE RESULTADOS ===== */
#list-holder {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px 28px;
    margin-top: 20px;
    /*border: 1px solid #e0e0e0;*/
    display: none; /* Oculto por defecto */
}

#list-holder.show {
    display: block;
}

#list-holder li {
    margin-bottom: 24px;
    list-style: none;
}

#list-holder li:last-child {
    margin-bottom: 30px;
}

#list-holder hr {
    border: none;
    height: 1px;
    background: #e0e0e0;
    margin: 24px 0;
}

/* ===== MEJORAS RESPONSIVE ===== */
@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
        gap: 10px;
    }
    
    #searchbar {
        width: 100%;
        padding: 12px 15px;
    }
    
    #clear-search {
        position: static;
        align-self: flex-end;
    }
    
    .panel-title-ar a {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .panel-body {
        padding: 20px 22px;
    }
    
    .response-body {
        padding: 20px 22px;
    }
    
    #list-holder {
        padding: 20px 22px;
    }
    
    .panel-body ul, .panel-body ol,
    .response-body ul, .response-body ol {
        padding-left: 24px;
    }
}

@media (max-width: 480px) {
    .panel-title-ar a {
        padding: 14px 18px;
        font-size: 13px;
    }
    
    .panel-body {
        padding: 18px 20px;
    }
    
    .response-body {
        padding: 18px 20px;
    }
    
    #list-holder {
        padding: 18px 20px;
    }
    
    .panel-body ul, .panel-body ol,
    .response-body ul, .response-body ol {
        padding-left: 20px;
    }
}

/* ===== SIDEBAR ESTILOS CONSISTENTES CON DIGITAL.HTML ===== */
.sidebar {
    padding-left: 0;
}

.sidepanel {
    margin-bottom: 25px;
}

.sidebar hr {
    border-color: #e9e9e9;
    margin: 25px 0;
}

/* Widget Text - Tienda Online */
.widget_text {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.widget_text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 15px;
}

.widget_text h3 b {
    font-weight: 700;
}

.widget_text p {
    line-height: 26px;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Botón de tienda */
.shop_btn {
    display: inline-block;
    cursor: pointer;
    margin: 0 7px 10px 0;
    padding: 13px 30px;
    border: 2px solid #242424;
    border-radius: 0;
    box-shadow: 0;
    text-shadow: none;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    line-height: 20px;
    font-size: 13px;
    color: #333;
    background: none; 
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.shop_btn:hover {
    background: #fbb03b; 
    color: #fff; 
    border-color: #fbb03b;
    text-decoration: none;
}

/* Widget Popular Posts - Productos Relacionados */
/* ===== PRODUCTOS RELACIONADOS REDISEÑADOS ===== */
.widget_popular_posts {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget_popular_posts h3 {
    color: #1c1c1c;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget_popular_posts h3::before {
    content: '⭐';
    font-size: 16px;
}

.recent_posts_widget {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.recent_posts_widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: rgba(251, 176, 59, 0.2);
    text-decoration: none;
    color: inherit;
}

.post_item_img_widget {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.post_item_img_widget img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recent_posts_widget:hover .post_item_img_widget img {
    transform: scale(1.08);
}

/* Overlay al hacer hover */
.post_item_img_widget::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 176, 59, 0.8) 0%, rgba(255, 140, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.recent_posts_widget:hover .post_item_img_widget::after {
    opacity: 1;
}

.post_item_img_widget::after {
    content: 'Ver más';
}

/* Contenido del producto */
.post_item_content_widget {
    padding: 15px;
}

.post_item_title {
    font-size: 16px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 8px;
    line-height: 1.3;
}

.post_item_description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post_item_btn {
    background: linear-gradient(135deg, #fbb03b 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.3);
}

.post_item_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.4);
    color: white;
    text-decoration: none;
}

/* ===== ANIMACIONES SUTILES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.response-body {
    animation: fadeIn 0.3s ease-out;
}

.panel-default {
    animation: fadeIn 0.4s ease-out;
}

/* ===== MEJORAS DE ACCESIBILIDAD ===== */
.panel-title-ar a:focus {
    outline: 3px solid rgba(251, 176, 59, 0.5);
    outline-offset: 2px;
}

#searchbar:focus {
    outline: none;
}

#clear-search:focus {
    outline: 3px solid rgba(251, 176, 59, 0.5);
    outline-offset: 2px;
}

/* ===== MEJORAS AL SIDEBAR ===== */
.sidebar .shop_btn {
    /*background: linear-gradient(135deg, #fbb03b 0%, #ff8c00 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;*/

    background: linear-gradient(135deg, #fbb03b 0%, #ff8c00 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s 
cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(251, 176, 59, 0.3);
    position: relative;
    overflow: hidden;
}

.sidebar .shop_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.sidebar .shop_btn:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #e67e00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.3);
    color: white;
    text-decoration: none;
}

/* ===== MEJORAS A LOS BREADCRUMBS ===== */
.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 20px;
    display: inline-block;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fbb03b;
}

.breadcrumb-item.active {
    color: #fbb03b;
    font-weight: 600;
}

/* ===== MEJORAS AL CONTENIDO PRINCIPAL ===== */
.content-buscador-faq h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.content-buscador-faq h3 b {
    color: #fbb03b;
}

/* ===== ESTADOS DE CARGA ===== */
.search-loading {
    position: relative;
}

.search-loading::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #fbb03b;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* ===== MEJORAS A LOS ENLACES ===== */
.panel-body a, .response-body a {
    position: relative;
    transition: all 0.3s ease;
    color: #fbb03b;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
}

.panel-body a:hover, .response-body a:hover {
    transform: translateY(-1px);
    color: #ffffff;
    background: linear-gradient(135deg, #fbb03b 0%, #ff8c00 100%);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.3);
}

/* Enlaces de contacto destacados */
/*.panel-body a[href^="https://wa.me/"] {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin: 2px 4px;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.panel-body a[href^="https://wa.me/"]:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}*/

/* Enlaces de tienda destacados */
.panel-body a[href*="shop.artecinvent.com"],
.panel-body a[href*="mercadoshops.com.ar"],
.panel-body a[href*="shoppedifacil.app"] {
    /*background: linear-gradient(135deg, #fbb03b 0%, #ff8c00 100%);*/
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin: 2px 4px;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.3);
}

.panel-body a[href*="shop.artecinvent.com"]:hover,
.panel-body a[href*="mercadoshops.com.ar"]:hover,
.panel-body a[href*="shoppedifacil.app"]:hover {
    background: none;/*linear-gradient(135deg, #ff8c00 0%, #fbb03b 100%);*/
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.4);
}

/* Enlaces de video destacados */
.panel-body a[href*="instagram.com"] {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    margin: 4px 0;
    box-shadow: 0 2px 8px rgba(228, 64, 95, 0.3);
}

.panel-body a[href*="instagram.com"]:hover {
    background: linear-gradient(135deg, #c13584 0%, #e4405f 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.4);
}

/* ===== MEJORAS A LAS LISTAS ===== */
.response-body ul li::marker {
    color: #fbb03b;
}

.response-body ol li::marker {
    color: #fbb03b;
    font-weight: bold;
}

/* ===== MEJORAS AL CONTENIDO DE CÓDIGO ===== */
.response-body code {
    position: relative;
    font-weight: 600;
}

.response-body code::before {
    content: '💡';
    margin-right: 5px;
    font-size: 12px;
}

/* ===== NUEVAS ESTRUCTURAS DE CONTENIDO ===== */

/* Contact Highlight - Diseño más sutil y elegante */
.contact-highlight, .phone-highlight, .shops-highlight, .services-highlight, .expertise-highlight, .contact-info-highlight, .features-highlight, .video-highlight, .accessories-highlight, .purchase-highlight, .technical-notes {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-highlight::before, .phone-highlight::before, .shops-highlight::before, .services-highlight::before, .expertise-highlight::before, .contact-info-highlight::before, .features-highlight::before, .video-highlight::before, .accessories-highlight::before, .purchase-highlight::before, .technical-notes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #fbb03b;
    border-radius: 8px 8px 0 0;
}

/* Contact Buttons - Diseño con círculos y usuarios */
.contact-buttons, .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-buttons a, .contact-methods a {
    background: #ffffff;
    color: #333;
    padding: 20px;
    border: 2px solid #e9e9e9;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.contact-buttons a::before, .contact-methods a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbb03b 0%, #ff8c00 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-buttons a:hover::before, .contact-methods a:hover::before {
    transform: scaleX(1);
}

.contact-buttons a:hover, .contact-methods a:hover {
    border-color: #fbb03b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 176, 59, 0.15);
    text-decoration: none;
    background: #ffffff;
}

/* Círculo con icono de usuario */
.contact-buttons a .user-circle, .contact-methods a .user-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbb03b 0%, #ff8c00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.3);
    transition: all 0.3s ease;
}

.contact-buttons a:hover .user-circle, .contact-methods a:hover .user-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(251, 176, 59, 0.4);
}

.contact-buttons a .user-circle i, .contact-methods a .user-circle i {
    font-size: 24px;
    color: white;
}

/* Información del usuario */
.contact-buttons a .user-info, .contact-methods a .user-info {
    flex: 1;
}

.contact-buttons a .user-info h6, .contact-methods a .user-info h6 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.contact-buttons a .user-info p, .contact-methods a .user-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-buttons a .user-info small, .contact-methods a .user-info small {
    display: block;
    font-size: 12px;
    color: #fbb03b;
    font-weight: 500;
    margin-top: 3px;
}

/* Icono de WhatsApp específico */
.contact-buttons a .whatsapp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.contact-buttons a:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.contact-buttons a .whatsapp-icon i {
    font-size: 20px;
    color: white;
}

/* Icono de teléfono específico */
.contact-methods a .phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-methods a:hover .phone-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}


.contact-methods a .phone-icon i {
    font-size: 20px;
    color: white;
}

/* Icono de whatsapp específico */
.contact-methods a .whatsapp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.contact-methods a:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.contact-methods a .whatsapp-icon i {
    font-size: 20px;
    color: white;
}

/* Shop Links - Diseño más elegante y compacto */
.shop-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: flex-start;
}

.shop-links a {
    background: #ffffff;
    color: #333;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.shop-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #fbb03b;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.shop-links a:hover::before {
    transform: scaleY(1);
}

.shop-links a:hover {
    background: #f8f9fa;
    color: #fbb03b;
    border-color: #fbb03b;
    text-decoration: none;
    transform: translateX(2px);
    box-shadow: 0 2px 4px rgba(251, 176, 59, 0.1);
}

.shop-links a i {
    font-size: 14px;
    margin-right: 6px;
    color: #fbb03b;
    flex-shrink: 0;
}

.shop-links a:hover i {
    color: #fbb03b;
}

.shop-links a small {
    display: none; /* Ocultamos la descripción para hacer más compacto */
}

/* Shop Logos - Diseño con logos de tiendas */
.shop-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.shop-logo {
    background: #ffffff;
    border: 2px solid #e9e9e9;
    border-radius: 8px;
    padding: 20px 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.shop-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbb03b 0%, #ff8c00 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.shop-logo:hover::before {
    transform: scaleX(1);
}

.shop-logo:hover {
    border-color: #d0d0d0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    background: #ffffff;
}

.logo-img {
    width: 100%;
    max-width: 180px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.shop-logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin-top: 0;
    text-align: center;
}

.shop-logo:hover .logo-text {
    color: #333;
}

/* Work Submission Button - Botón para envío de trabajos */
.work-submission-highlight {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.work-submission-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #fbb03b;
    border-radius: 8px 8px 0 0;
}

.work-submission-highlight h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.work-submission-highlight h5 i {
    color: #fbb03b;
    margin-right: 8px;
}

.work-submission-highlight p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.work-submission-button {
    text-align: center;
}

.work-submission-button a {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.work-submission-button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.work-submission-button a:hover::before {
    left: 100%;
}

.work-submission-button a:hover {
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.work-submission-button a i {
    margin-right: 10px;
    font-size: 18px;
    color: white;
}

.work-submission-button a:hover i {
    color: white;
    transform: scale(1.1);
}

.work-submission-button a small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-top: 4px;
}

/* Amenabar Logo Section */
.amenabar-logo-section {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.amenabar-logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #fbb03b;
    border-radius: 8px 8px 0 0;
}

.amenabar-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.amenabar-logo {
    width: 400px;
    margin: 10px auto 40px auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-info h6 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.logo-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Search Results - Estilos consistentes con acordeón */
#list-holder {
    list-style: none;
    padding: 0;
    margin: 0;
}

#list-holder li {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

#list-holder li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbb03b 0%, #ff8c00 100%);
}

#list-holder li .response-body {
    padding: 35px 30px 15px 30px;
    border-left: none;
    margin-bottom: 0px;
}

#list-holder li .response-body li {
    padding: 5px 8px;
}

#list-holder li .response-body li::before {
    background: none;
}

#list-holder li .response-body h4.title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#list-holder li .response-body h4.title::before {
    content: '\f002';
    font-family: 'FontAwesome';
    color: #fbb03b;
    font-size: 16px;
}

#list-holder li .response-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

#list-holder li .response-body ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

#list-holder li .response-body ul li {
    background: #f8f9fa;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 10px;
    box-shadow: none;
    position: relative;
}

#list-holder li .response-body ul li::before {
    display: none;
}

/* Proceso Steps en resultados de búsqueda */
#list-holder li .response-body .process-steps {
    margin: 20px 0;
}

#list-holder li .response-body .step-item {
    background: #f8f9fa;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

#list-holder li .response-body .step-item:hover {
    background: #ffffff;
    border-color: #fbb03b;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.1);
}

#list-holder li .response-body .step-number {
    background: #fbb03b;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

#list-holder li .response-body .step-content {
    flex: 1;
}

#list-holder li .response-body .step-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

#list-holder li .response-body .step-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Technical Notes en resultados de búsqueda */
#list-holder li .response-body .technical-notes {
    margin: 20px 0;
}

#list-holder li .response-body .technical-notes h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

#list-holder li .response-body .technical-notes h5 i {
    color: #fbb03b;
}

#list-holder li .response-body .notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

#list-holder li .response-body .note-item {
    background: #f8f9fa;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#list-holder li .response-body .note-item:hover {
    background: #ffffff;
    border-color: #fbb03b;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.1);
}

#list-holder li .response-body .note-item i {
    font-size: 24px;
    color: #fbb03b;
    margin-bottom: 10px;
    display: block;
}

#list-holder li .response-body .note-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

#list-holder li .response-body .note-item code {
    display: block;
    margin-top: 8px;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
    background: #f8f9fa;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

#list-holder li .response-body .note-item code:hover {
    background: #fbb03b;
    color: white;
    border-color: #fbb03b;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(251, 176, 59, 0.2);
}

/* Código con información técnica en resultados */
#list-holder li .response-body code[data-type="temperature"] {
    background: #fff5f5;
    color: #d63031;
    border-color: #ff7675;
    border-left: 3px solid #d63031;
}

#list-holder li .response-body code[data-type="temperature"]:hover {
    background: #d63031;
    color: white;
    border-color: #d63031;
}

#list-holder li .response-body code[data-type="pressure"] {
    background: #f0f8ff;
    color: #0984e3;
    border-color: #74b9ff;
    border-left: 3px solid #0984e3;
}

#list-holder li .response-body code[data-type="pressure"]:hover {
    background: #0984e3;
    color: white;
    border-color: #0984e3;
}

#list-holder li .response-body code[data-type="time"] {
    background: #fff8e1;
    color: #f57c00;
    border-color: #ffb74d;
    border-left: 3px solid #f57c00;
}

#list-holder li .response-body code[data-type="time"]:hover {
    background: #f57c00;
    color: white;
    border-color: #f57c00;
}

#list-holder li .response-body ul li a {
    color: #fbb03b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#list-holder li .response-body ul li a:hover {
    color: #ff8c00;
    text-decoration: none;
}

/* Botones en resultados de búsqueda - Estilo del acordeón */
#list-holder li .response-body .video-link {
    text-align: center;
    margin-top: 20px;
}

#list-holder li .response-body .video-link a {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
}

#list-holder li .response-body .video-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#list-holder li .response-body .video-link a:hover::before {
    left: 100%;
}

#list-holder li .response-body .video-link a:hover {
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

#list-holder li .response-body .video-link a i {
    margin-right: 10px;
    font-size: 18px;
    color: white;
}

#list-holder li .response-body .video-link a:hover i {
    color: white;
    transform: scale(1.1);
}

/* Enlaces de tienda en resultados de búsqueda */
#list-holder li .response-body .shop-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    justify-content: flex-start;
}

#list-holder li .response-body .shop-links a {
    background: #ffffff;
    color: #333;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

#list-holder li .response-body .shop-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #fbb03b;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

#list-holder li .response-body .shop-links a:hover::before {
    transform: scaleY(1);
}

#list-holder li .response-body .shop-links a:hover {
    background: #f8f9fa;
    color: #fbb03b;
    border-color: #fbb03b;
    text-decoration: none;
    transform: translateX(2px);
    box-shadow: 0 2px 4px rgba(251, 176, 59, 0.1);
}

#list-holder li .response-body .shop-links a i {
    font-size: 14px;
    margin-right: 6px;
    color: #fbb03b;
    flex-shrink: 0;
}

#list-holder li .response-body .shop-links a:hover i {
    color: #fbb03b;
}

/* Phone Number - Diseño más sutil */
.phone-number {
    text-align: center;
    margin-top: 15px;
}

.phone-number a {
    background: #f8f9fa;
    color: #333;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.phone-number a:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

/* Services Grid - Diseño más sutil */
.services-grid, .features-grid, .accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.service-item, .feature-item, .accessory-item {
    background: #f8f9fa;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-item:hover, .feature-item:hover, .accessory-item:hover {
    background: #ffffff;
    border-color: #fbb03b;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.1);
}

.service-item i, .feature-item i, .accessory-item i {
    font-size: 18px;
    color: #fbb03b;
    margin-bottom: 8px;
    display: block;
}

.service-item h6, .feature-item h6, .accessory-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.service-item p, .feature-item p, .accessory-item p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Imágenes de accesorios */
.accessory-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.accessory-item:hover .accessory-image {
    transform: scale(1.05);
}

/* Video Link - Diseño mejorado y más prominente */
.video-link {
    text-align: center;
    margin-top: 20px;
}

.video-link a {
    background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.video-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.video-link a:hover::before {
    left: 100%;
}

.video-link a:hover {
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.video-link a i {
    margin-right: 10px;
    font-size: 18px;
    color: white;
}

.video-link a:hover i {
    color: white;
    transform: scale(1.1);
}

.video-link a small {
    display: block;
    opacity: 0.8;
    font-size: 11px;
    margin-top: 4px;
}

/* Process Steps - Diseño más sutil */
.process-steps {
    margin: 15px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background: #f8f9fa;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #ffffff;
    border-color: #fbb03b;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.1);
}

.step-number {
    background: #fbb03b;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Technical Notes - Diseño más sutil y flexible */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.note-item {
    background: #f8f9fa;
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.note-item:hover {
    background: #ffffff;
    border-color: #fbb03b;
    box-shadow: 0 2px 8px rgba(251, 176, 59, 0.1);
}

.note-item i {
    font-size: 18px;
    color: #fbb03b;
    margin-bottom: 8px;
    display: block;
}

.note-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.note-item code {
    display: block;
    margin-top: 8px;
    text-align: center;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
}
