#cvo-search{
width:100%;
padding:14px;
margin-bottom:10px;
border-radius:8px;
border:1px solid #ddd;
box-sizing:border-box;
font-size:16px;
}

#cvo-cat{
width:100%;
padding:10px;
margin-bottom:20px;
border-radius:8px;
box-sizing:border-box;
font-size:16px;
}

#cvo-listado{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
gap:20px;
}

.cvo-card{
background:#fff;
padding:15px;
border-radius:14px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
border:1px solid #eef2f6;
}

.cvo-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.cvo-card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
margin-bottom:10px;
}

.cvo-card h3{
margin:10px 0;
font-size:18px;
color:#1e293b;
font-weight:700;
}

/* Estilos para Ver más */
.cvo-content {
    margin-bottom: 10px;
}

.cvo-text-short {
    margin: 0 0 5px 0;
    line-height: 1.5;
    color:#475569;
}

.cvo-text-full {
    margin: 0 0 10px 0;
    line-height: 1.6;
    color:#475569;
    background:#f9fafc;
    padding:12px;
    border-radius:8px;
    border-left:3px solid #0061ff;
}

.cvo-read-more {
    display: inline-block;
    background: none;
    border: none;
    color: #0061ff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    padding: 5px 0;
    text-decoration: none;
}

.cvo-read-more:hover {
    text-decoration: underline;
    background: none;
}

/* Botones de contacto */
.cvo-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cvo-btn {
    display: inline-block;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    flex: 1;
}

.cvo-btn-wa {
    background: #25D366;
    color: #fff;
}

.cvo-btn-wa:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.cvo-btn-email {
    background: #3b82f6;
    color: #fff;
}

.cvo-btn-email:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.cvo-btn-disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

/* Estilos para el formulario */
#cvo-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    border: 1px solid #eef2f6;
    margin-bottom: 30px;
}

#cvo-form input, 
#cvo-form textarea, 
#cvo-form select {
    width:100%;
    padding:12px 15px;
    margin-bottom:15px;
    border:1px solid #e2e8f0;
    border-radius:10px;
    box-sizing:border-box;
    font-family:inherit;
    font-size:15px;
    transition:0.3s;
}

#cvo-form input:focus, 
#cvo-form textarea:focus, 
#cvo-form select:focus {
    border-color:#0061ff;
    outline:none;
    box-shadow:0 0 0 3px rgba(0,97,255,0.1);
}

#cvo-form textarea {
    resize:vertical;
    min-height:120px;
}

#cvo-form button {
    background:#0061ff;
    color:#fff;
    padding:14px 25px;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    width:100%;
    transition:.3s;
}

#cvo-form button:hover {
    background:#004ecc;
    transform:translateY(-2px);
}

#msg {
    margin-top:20px;
}

/* Responsive */
@media (max-width: 768px) {
    #cvo-listado {
        grid-template-columns:1fr;
    }
    
    #cvo-form {
        padding: 20px;
    }
    
    .cvo-buttons {
        flex-direction: column;
        gap: 8px;
    }
}