/** Shopify CDN: Minification failed

Line 6:0 Unexpected "="

**/
===== VARIABLES CSS =====
:root {
    /* Colores principales */
    --color-primary: #29A875;
    --color-primary-hover: #228f63;
    --color-primary-light: #3bbd8a;
    
    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== SECCIÓN DE ACORDEONES ===== */
.acordeones-section {
    /* padding: 2rem 0; */
    background: #ffffff;
    min-height: auto;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== HEADER DE LA SECCIÓN ===== */
.acordeones-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.acordeones-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.2;
}

.acordeones-titulo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    border-radius: 2px;
}

.acordeones-subtitulo {
    font-size: 1rem;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ===== CONTENEDOR DE ACORDEONES ===== */
.acordeones-container {
    /* max-width: 900px; */
    margin: 0 auto;
}

/* ===== ITEM DE ACORDEÓN ===== */
.acordeon-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid rgba(41, 168, 117, 0.12);
    position: relative;
}

.acordeon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(41, 168, 117, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.acordeon-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    border-color: rgba(41, 168, 117, 0.2);
}

.acordeon-item:hover::before {
    opacity: 1;
}

.acordeon-item:last-child {
    margin-bottom: 0;
}

/* ===== TRIGGER DEL ACORDEÓN ===== */
.acordeon-trigger {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.acordeon-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: var(--transition-base);
}

.acordeon-trigger:hover {
    background: linear-gradient(90deg, rgba(41, 168, 117, 0.06) 0%, rgba(41, 168, 117, 0.03) 100%);
}

.acordeon-trigger:hover::before {
    transform: scaleY(1);
}

.acordeon-trigger[aria-expanded="true"] {
    background: linear-gradient(90deg, rgba(41, 168, 117, 0.1) 0%, rgba(41, 168, 117, 0.05) 100%);
    box-shadow: inset 0 1px 0 rgba(41, 168, 117, 0.1);
}

.acordeon-trigger[aria-expanded="true"]::before {
    transform: scaleY(1);
}

.acordeon-titulo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: var(--transition-base);
    line-height: 1.3;
    flex: 1;
    margin-right: 1rem;
}

.acordeon-trigger:hover .acordeon-titulo {
    color: var(--color-primary);
}

.acordeon-trigger[aria-expanded="true"] .acordeon-titulo {
    color: var(--color-primary);
}

/* ===== ICONO DEL ACORDEÓN ===== */
.acordeon-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: var(--transition-base);
    transform: rotate(0deg);
}

.acordeon-trigger[aria-expanded="true"] .acordeon-icon {
    transform: rotate(180deg);
}

/* ===== CONTENIDO DEL ACORDEÓN ===== */
.acordeon-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-slow);
    background: #ffffff;
    border-top: 1px solid transparent;
    will-change: max-height;
}

.acordeon-content.active {
    max-height: 2000px;
    border-top-color: rgba(41, 168, 117, 0.08);
}

.acordeon-body {
    padding: 0 1.5rem 1.5rem !important;
    color: #495057;
    line-height: 1.6;
}

/* ===== TIPOGRAFÍA DEL CONTENIDO ===== */
.acordeon-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1.5rem 0 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(41, 168, 117, 0.08);
    line-height: 1.3;
}

.acordeon-body h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.acordeon-body p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.acordeon-body p:last-child {
    margin-bottom: 0;
}

/* ===== LISTAS ===== */
.acordeon-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.acordeon-body li {
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.5;
}

.acordeon-body li::before {
    content: '•';
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: -18px;
}

.acordeon-body li:last-child {
    margin-bottom: 0;
}

/* ===== LISTA ESPECIAL DE PRODUCTOS ===== */
.productos-lista {
    background: rgba(41, 168, 117, 0.06);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.25rem 0;
    border-left: 3px solid var(--color-primary);
    box-shadow: inset 0 1px 0 rgba(41, 168, 117, 0.1);
}

.productos-lista li {
    background: #ffffff;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    border: 1px solid rgba(41, 168, 117, 0.08);
}

.productos-lista li:hover {
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: rgba(41, 168, 117, 0.15);
}

.productos-lista li:last-child {
    margin-bottom: 0;
}

.productos-lista strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* ===== ESTADOS DE FOCUS PARA ACCESIBILIDAD ===== */
.acordeon-trigger:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}

.acordeon-trigger:focus:not(:focus-visible) {
    outline: none;
}

/* ===== ANIMACIONES ===== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.acordeon-content.active .acordeon-body {
    animation: slideDown 0.3s ease-out;
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */
@media (max-width: 768px) {
    .acordeones-section {
        padding: 1.5rem 0;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .acordeones-header {
        margin-bottom: 2rem;
    }
    
    .acordeones-titulo {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .acordeones-titulo::after {
        width: 50px;
        height: 2px;
        bottom: -6px;
    }
    
    .acordeones-subtitulo {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .acordeon-item {
        margin-bottom: 0.75rem;
        border-radius: 10px;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
    }
    
    .acordeon-item:hover {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    }
    
    .acordeon-trigger {
        padding: 1rem 1.25rem;
        min-height: 56px;
    }
    
    .acordeon-titulo {
        font-size: 1rem;
        margin-right: 0.75rem;
    }
    
    .acordeon-icon {
        width: 18px;
        height: 18px;
    }
    
    .acordeon-body {
        padding: 0 1.25rem 1.25rem;
    }
    
    .acordeon-body h3 {
        font-size: 1rem;
        margin: 1.25rem 0 0.5rem;
        padding-top: 1rem;
    }
    
    .acordeon-body p {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .acordeon-body ul {
        margin: 0.875rem 0;
        padding-left: 1.25rem;
    }
    
    .acordeon-body li {
        margin-bottom: 0.625rem;
        font-size: 0.9rem;
    }
    
    .productos-lista {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .productos-lista li {
        padding: 0.75rem;
        margin-bottom: 0.625rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .acordeones-section {
        padding: 1rem 0;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .acordeones-header {
        margin-bottom: 1.5rem;
    }
    
    .acordeones-titulo {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }
    
    .acordeones-titulo::after {
        width: 40px;
        height: 2px;
        bottom: -5px;
    }
    
    .acordeones-subtitulo {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .acordeon-item {
        margin-bottom: 0.625rem;
        border-radius: 8px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    }
    
    .acordeon-item:hover {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.03);
    }
    
    .acordeon-trigger {
        padding: 0.875rem 1rem;
        min-height: 52px;
    }
    
    .acordeon-titulo {
        font-size: 0.95rem;
        margin-right: 0.5rem;
        line-height: 1.2;
    }
    
    .acordeon-icon {
        width: 16px;
        height: 16px;
    }
    
    .acordeon-body {
        padding: 0 1rem 1rem;
    }
    
    .acordeon-body h3 {
        font-size: 0.95rem;
        margin: 1rem 0 0.5rem;
        padding-top: 0.875rem;
    }
    
    .acordeon-body p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .acordeon-body ul {
        margin: 0.75rem 0;
        padding-left: 1rem;
    }
    
    .acordeon-body li {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .acordeon-body li::before {
        left: -15px;
    }
    
    .productos-lista {
        padding: 0.875rem;
        margin: 0.875rem 0;
        border-radius: 6px;
    }
    
    .productos-lista li {
        padding: 0.625rem;
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        border-radius: 4px;
    }
    
    .productos-lista li:hover {
        transform: translateX(2px);
    }
}

/* ===== MEJORAS ESPECÍFICAS PARA MÓVIL ===== */
@media (max-width: 480px) {
    /* Mejorar área de toque en móviles */
    .acordeon-trigger {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Optimizar para pantallas pequeñas */
    .acordeones-container {
        max-width: 100%;
    }
    
    /* Mejorar legibilidad en móviles */
    .acordeon-body {
        font-size: 0.85rem;
    }
    
    /* Ajustar espaciado para mejor lectura */
    .acordeon-body p + p {
        margin-top: 0.75rem;
    }
    
    /* Optimizar listas en móviles */
    .acordeon-body ul {
        margin: 0.75rem 0;
    }
    
    .acordeon-body li {
        padding-left: 0.25rem;
    }
}

/* ===== MEJORAS DE ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {
    .acordeon-content,
    .acordeon-trigger,
    .acordeon-icon,
    .acordeon-item {
        transition: none;
    }
    
    .acordeon-content.active .acordeon-body {
        animation: none;
    }
}

.padding-fix {
    padding:0 !important;
    margin:0 !important
}

.acordeon-body {
  padding-top: 10px !important;
}